UNPKG

@biconomy-devx/ethers-lib

Version:

Ethers library adapter to be used by Biconomy SDK

22 lines 666 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class MultiSendEthersContract { constructor(contract) { this.contract = contract; /* eslint-disable @typescript-eslint/no-explicit-any */ this.encode = (methodName, params) => { return this.contract.interface.encodeFunctionData(methodName, params); }; } getAddress() { return this.contract.address; } getContract() { return this.contract; } getInterface() { return this.contract.interface; } } exports.default = MultiSendEthersContract; //# sourceMappingURL=MultiSendEthersContract.js.map