raiden-ts
Version:
Raiden Light Client Typescript/Javascript SDK
39 lines (38 loc) • 1.05 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Deposit, DepositInterface } from "../Deposit";
export declare class Deposit__factory {
static readonly abi: ({
inputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
name?: undefined;
outputs?: undefined;
} | {
inputs: never[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: never[];
stateMutability: string;
type: string;
})[];
static createInterface(): DepositInterface;
static connect(address: string, signerOrProvider: Signer | Provider): Deposit;
}