UNPKG

@biconomy-devx/ethers-lib

Version:

Ethers library adapter to be used by Biconomy SDK

27 lines 761 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class FallbackGasTankEthersContract { constructor(contract) { this.contract = contract; } getAddress() { return this.contract.address; } getContract() { return this.contract; } async getBalance(_dappIdentifier) { return this.contract.getBalance(_dappIdentifier); } async getNonce(_sender) { return this.contract.getNonce(_sender); } async getHash(fallbackUserOp) { return this.contract.getHash(fallbackUserOp); } getInterface() { return this.contract.interface; } } exports.default = FallbackGasTankEthersContract; //# sourceMappingURL=FallbackGasTankEthersContract.js.map