UNPKG

@arbitrum/sdk

Version:

Typescript library client-side interactions with Arbitrum

40 lines (39 loc) 996 B
"use strict"; /* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ Object.defineProperty(exports, "__esModule", { value: true }); exports.IWETH9__factory = void 0; const ethers_1 = require("ethers"); const _abi = [ { inputs: [], name: "deposit", outputs: [], stateMutability: "payable", type: "function", }, { inputs: [ { internalType: "uint256", name: "_amount", type: "uint256", }, ], name: "withdraw", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; class IWETH9__factory { static createInterface() { return new ethers_1.utils.Interface(_abi); } static connect(address, signerOrProvider) { return new ethers_1.Contract(address, _abi, signerOrProvider); } } exports.IWETH9__factory = IWETH9__factory; IWETH9__factory.abi = _abi;