UNPKG

raiden-ts

Version:

Raiden Light Client Typescript/Javascript SDK

56 lines 1.41 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, utils } from "ethers"; const _abi = [ { inputs: [ { internalType: "address", name: "udc_address", type: "address", }, ], stateMutability: "nonpayable", type: "constructor", }, { inputs: [ { internalType: "address", name: "sender", type: "address", }, { internalType: "address", name: "receiver", type: "address", }, { internalType: "uint256", name: "amount", type: "uint256", }, ], name: "transfer", outputs: [ { internalType: "bool", name: "success", type: "bool", }, ], stateMutability: "nonpayable", type: "function", }, ]; export class UDCTransfer__factory { static createInterface() { return new utils.Interface(_abi); } static connect(address, signerOrProvider) { return new Contract(address, _abi, signerOrProvider); } } UDCTransfer__factory.abi = _abi; //# sourceMappingURL=UDCTransfer__factory.js.map