raiden-ts
Version:
Raiden Light Client Typescript/Javascript SDK
33 lines (32 loc) • 936 B
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { UDCTransfer, UDCTransferInterface } from "../UDCTransfer";
export declare class UDCTransfer__factory {
static readonly abi: ({
inputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
name?: undefined;
outputs?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
})[];
static createInterface(): UDCTransferInterface;
static connect(address: string, signerOrProvider: Signer | Provider): UDCTransfer;
}