@fruitsjs/util
Version:
Useful utilities and tools for building Fruits Eco-Blockchain applications
30 lines (23 loc) • 555 B
text/typescript
/**
* Symbol/Character for currency unit
* @module util
* */
export const CurrencySymbol = 'FRTS';
export const ETHSymbol = 'ETH';
export const BTCSymbol = 'BTC';
export const gTokenSymbol = 'GT';
/**
* Symbol/Character for Planck (the smallest possible unit)
* @module util
* */
export const CurrencyPlanckSymbol = 'frts';
/**
* The smallest possible fee
* @module util
*/
export const FeeQuantPlanck = 5000000;
/**
* One FRUITS expressed in Planck
* @module util
*/
export const OneFrtsPlanck = 100000000;