jcc-ethereum-utils
Version:
Toolkit of crossing chain from Ethereum to SWTC chain
43 lines (42 loc) • 831 B
TypeScript
declare const erc20ABI: ({
constant: boolean;
inputs: {
name: string;
type: string;
}[];
name: string;
outputs: {
name: string;
type: string;
}[];
payable: boolean;
stateMutability: string;
type: string;
anonymous?: undefined;
} | {
constant: boolean;
inputs: any[];
name: string;
outputs: {
name: string;
type: string;
}[];
type: string;
stateMutability: string;
payable?: undefined;
anonymous?: undefined;
} | {
anonymous: boolean;
inputs: {
indexed: boolean;
name: string;
type: string;
}[];
name: string;
type: string;
constant?: undefined;
outputs?: undefined;
payable?: undefined;
stateMutability?: undefined;
})[];
export default erc20ABI;