-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.d.ts
40 lines (40 loc) · 1.01 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { Provider, Signer } from "ethers";
import type { DATAv2 } from "./typechain/contracts/DATAv2";
export declare const abi: ({
inputs: never[];
stateMutability: string;
type: string;
anonymous?: undefined;
name?: undefined;
outputs?: undefined;
} | {
anonymous: boolean;
inputs: {
indexed: boolean;
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
stateMutability?: undefined;
outputs?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[], bytecode: string;
export type { DATAv2 };
export declare function getTokenAt(address: string, signerOrProvider: Provider | Signer): DATAv2;
export declare function deployToken(signer: Signer): Promise<DATAv2>;