19 lines
322 B
TypeScript
19 lines
322 B
TypeScript
import { AbiItem } from "web3-utils";
|
|
|
|
export let abiEvolveFactory: AbiItem[] = [
|
|
{
|
|
inputs: [],
|
|
name: "feeToAddress",
|
|
outputs: [
|
|
{
|
|
internalType: "address",
|
|
name: "",
|
|
type: "address",
|
|
},
|
|
],
|
|
stateMutability: "view",
|
|
type: "function",
|
|
constant: true,
|
|
},
|
|
];
|