UNPKG

hapi-ton-sdk

Version:

SDK for managing HAPI attestations on TON network

15 lines 397 B
// src/utils/index.ts import { toNano } from "@ton/core"; var delay = async (time = 1e3) => { return new Promise((res) => setTimeout(res, time)); }; var TON_DEFAULT_GAS = toNano("0.05"); var TON_MIN_COMMISSION = toNano("0.01"); var TON_MIN_JETTON_STORAGE = toNano("0.001"); export { TON_DEFAULT_GAS, TON_MIN_COMMISSION, TON_MIN_JETTON_STORAGE, delay }; //# sourceMappingURL=index.mjs.map