simple-sushiswap-sdk
Version:
Simple easy to understand SDK for sushiswap
12 lines (11 loc) • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrentUnixTime = void 0;
const get_unix_time_1 = require("./get-unix-time");
/**
* Get the current unit time
*/
function getCurrentUnixTime() {
return get_unix_time_1.getUnixTime(new Date());
}
exports.getCurrentUnixTime = getCurrentUnixTime;