UNPKG

@myria/airdrop-js

Version:

Airdrop in L1 with claim based approach

25 lines (24 loc) 789 B
/** * @module Type/ConstType */ export { ZERO_ADDRESS } from 'thirdweb'; /** * Default extra gas percentage on gasLimit * */ export declare const DEFAULT_EXTRA_GAS_PERCENTAGE = 10; /** * Default extra gas percentage on maxPriorityFeePerGas * */ export declare const DEFAULT_EXTRA_PRIORITY_TIP_PERCENTAGE = 20; /** * Default extra percentage when retry on top of gasLimit and maxPriorityFeePerGas * */ export declare const DEFAULT_EXTRA_ON_RETRY_PERCENTAGE = 1; /** * Default maximum of blocks need to wait before considering a transaction in final status * */ export declare const DEFAULT_MAX_BLOCKS_WAIT_TIME = 30; /** * The error message return in case of user try to claim again * */ export declare const TRANSACTION_ERROR_AIRDROP_ALREADY_CLAIMED = "AirdropAlreadyClaimed";