UNPKG

blub-sdk

Version:

A modular SDK for interacting with the BLUB ecosystem on the Sui blockchain.

16 lines (15 loc) 564 B
/** * Returns the current circulating supply of the BLUB token based on a fixed release schedule. * * - 75% of the total supply was released immediately at launch. * - The remaining 25% is released linearly over 3 years (1095 days), starting from June 26, 2024. * * @returns The current estimated circulating supply as a bigint. */ export declare function getBlubCirculatingSupply(): bigint; /** * Returns the total fixed supply of the BLUB token. * * @returns The total BLUB supply as a bigint. */ export declare function getBlubTotalSupply(): bigint;