@biconomy-devx/ethers-lib
Version:
Ethers library adapter to be used by Biconomy SDK
14 lines (13 loc) • 714 B
TypeScript
import { MultiSendContract } from '@biconomy-devx/core-types';
import { MultiSendContract_v1_0_0 as MultiSend_TypeChain, MultiSendContract_v1_0_0Interface as MultiSendContractV100Interface } from '../../../../typechain/src/ethers-v5/v1.0.0/MultiSendContract_v1_0_0';
import { Contract } from '@ethersproject/contracts';
import { Interface } from '@ethersproject/abi';
declare class MultiSendEthersContract implements MultiSendContract {
contract: MultiSend_TypeChain;
constructor(contract: MultiSend_TypeChain);
getAddress(): string;
getContract(): Contract;
getInterface(): Interface;
encode: MultiSendContractV100Interface['encodeFunctionData'];
}
export default MultiSendEthersContract;