/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type ChainBurnCeloErc20 = { /** * Chain to work with. */ chain: 'CELO'; /** * Amount of tokens to be destroyed. */ amount: string; /** * Address of ERC20 token */ contractAddress: string; /** * Private key of sender address. Private key, or signature Id must be present. */ fromPrivateKey: string; /** * Custom defined fee. If not present, it will be calculated automatically. */ fee?: { /** * Gas limit for transaction in gas price. */ gasLimit: string; /** * Gas price in Gwei. */ gasPrice: string; }; /** * Nonce to be set to Celo transaction. If not present, last known nonce will be used. */ nonce?: number; /** * Currency to pay for transaction gas */ feeCurrency: 'CELO' | 'CUSD' | 'CEUR'; }