/** * Module errors. * * @module */ /** Address of account which is used to initialize a coin `CoinType` doesn't match the deployer of module */ export declare const ECOIN_INFO_ADDRESS_MISMATCH: { readonly code: 1; readonly name: "ECOIN_INFO_ADDRESS_MISMATCH"; readonly doc: "Address of account which is used to initialize a coin `CoinType` doesn't match the deployer of module"; }; /** `CoinType` is already initialized as a coin */ export declare const ECOIN_INFO_ALREADY_PUBLISHED: { readonly code: 2; readonly name: "ECOIN_INFO_ALREADY_PUBLISHED"; readonly doc: "`CoinType` is already initialized as a coin"; }; /** `CoinType` hasn't been initialized as a coin */ export declare const ECOIN_INFO_NOT_PUBLISHED: { readonly code: 3; readonly name: "ECOIN_INFO_NOT_PUBLISHED"; readonly doc: "`CoinType` hasn't been initialized as a coin"; }; /** Account already has `CoinStore` registered for `CoinType` */ export declare const ECOIN_STORE_ALREADY_PUBLISHED: { readonly code: 4; readonly name: "ECOIN_STORE_ALREADY_PUBLISHED"; readonly doc: "Account already has `CoinStore` registered for `CoinType`"; }; /** Account hasn't registered `CoinStore` for `CoinType` */ export declare const ECOIN_STORE_NOT_PUBLISHED: { readonly code: 5; readonly name: "ECOIN_STORE_NOT_PUBLISHED"; readonly doc: "Account hasn't registered `CoinStore` for `CoinType`"; }; /** Not enough coins to complete transaction */ export declare const EINSUFFICIENT_BALANCE: { readonly code: 6; readonly name: "EINSUFFICIENT_BALANCE"; readonly doc: "Not enough coins to complete transaction"; }; /** Cannot destroy non-zero coins */ export declare const EDESTRUCTION_OF_NONZERO_TOKEN: { readonly code: 7; readonly name: "EDESTRUCTION_OF_NONZERO_TOKEN"; readonly doc: "Cannot destroy non-zero coins"; }; /** Total supply of the coin has overflown. No additional coins can be minted */ export declare const ETOTAL_SUPPLY_OVERFLOW: { readonly code: 8; readonly name: "ETOTAL_SUPPLY_OVERFLOW"; readonly doc: "Total supply of the coin has overflown. No additional coins can be minted"; }; /** Coin amount cannot be zero */ export declare const EZERO_COIN_AMOUNT: { readonly code: 9; readonly name: "EZERO_COIN_AMOUNT"; readonly doc: "Coin amount cannot be zero"; }; /** CoinStore is frozen. Coins cannot be deposited or withdrawn */ export declare const EFROZEN: { readonly code: 10; readonly name: "EFROZEN"; readonly doc: "CoinStore is frozen. Coins cannot be deposited or withdrawn"; }; //# sourceMappingURL=errors.d.ts.map