/** * @prettier */ import { BitGoBase, CoinConstructor, NamedCoinConstructor } from '@bitgo-beta/sdk-core'; import { EosTokenConfig } from '@bitgo-beta/statics'; import { Eos } from './eos'; export { EosTokenConfig }; export declare class EosToken extends Eos { readonly tokenConfig: EosTokenConfig; constructor(bitgo: BitGoBase, tokenConfig: EosTokenConfig); static createTokenConstructor(config: EosTokenConfig): CoinConstructor; static createTokenConstructors(): NamedCoinConstructor[]; get type(): string; get name(): string; get coin(): string; get network(): string; get tokenContractAddress(): string; get decimalPlaces(): number; getChain(): string; getBaseChain(): string; getFullName(): string; getBaseFactor(): number; /** * Flag for sending value of 0 * @returns {boolean} True if okay to send 0 value, false otherwise */ valuelessTransferAllowed(): boolean; /** * Flag for sending data along with transactions * @returns {boolean} True if okay to send tx data (CELO), false otherwise */ transactionDataAllowed(): boolean; } //# sourceMappingURL=eosToken.d.ts.map