@imtbl/x-client 2.1.16 → 2.1.17-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.js +84 -8
- package/dist/node/index.cjs +27 -25
- package/dist/node/index.js +6 -4
- package/dist/types/contracts/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +127 -114
- package/dist/types/contracts/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +201 -180
- package/dist/types/contracts/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +36 -23
- package/dist/types/contracts/common.d.ts +12 -40
- package/dist/types/contracts/contracts/v3/Core.d.ts +1194 -991
- package/dist/types/contracts/contracts/v3/Registration.d.ts +165 -151
- package/dist/types/contracts/contracts/v4/CoreV4.d.ts +1569 -1497
- package/dist/types/contracts/contracts/v4/RegistrationV4.d.ts +129 -97
- package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +31 -143
- package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +31 -223
- package/dist/types/contracts/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +18 -17
- package/dist/types/contracts/factories/contracts/v3/Core__factory.d.ts +31 -1250
- package/dist/types/contracts/factories/contracts/v3/Registration__factory.d.ts +37 -206
- package/dist/types/contracts/factories/contracts/v4/CoreV4__factory.d.ts +38 -1886
- package/dist/types/contracts/factories/contracts/v4/RegistrationV4__factory.d.ts +47 -160
- package/dist/types/types/api.d.ts +3 -1
- package/dist/types/types/signers.d.ts +1 -1
- package/dist/types/utils/crypto/crypto.d.ts +1 -1
- package/dist/types/utils/stark/legacy/crypto/crypto.d.ts +2 -0
- package/dist/types/utils/stark/starkCurve.d.ts +1 -1
- package/dist/types/workflows/minting.d.ts +1 -1
- package/dist/types/workflows/workflows.d.ts +1 -1
- package/package.json +14 -5
package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts
CHANGED
|
@@ -1,227 +1,35 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Signer } from "ethers-v5";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
2
3
|
import type { IERC721, IERC721Interface } from "../../../../../@openzeppelin/contracts/token/ERC721/IERC721";
|
|
3
4
|
export declare class IERC721__factory {
|
|
4
|
-
static readonly abi:
|
|
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
|
-
readonly indexed: true;
|
|
33
|
-
readonly internalType: "address";
|
|
34
|
-
readonly name: "operator";
|
|
35
|
-
readonly type: "address";
|
|
36
|
-
}, {
|
|
37
|
-
readonly indexed: false;
|
|
38
|
-
readonly internalType: "bool";
|
|
39
|
-
readonly name: "approved";
|
|
40
|
-
readonly type: "bool";
|
|
41
|
-
}];
|
|
42
|
-
readonly name: "ApprovalForAll";
|
|
43
|
-
readonly type: "event";
|
|
44
|
-
}, {
|
|
45
|
-
readonly anonymous: false;
|
|
46
|
-
readonly inputs: readonly [{
|
|
47
|
-
readonly indexed: true;
|
|
48
|
-
readonly internalType: "address";
|
|
49
|
-
readonly name: "from";
|
|
50
|
-
readonly type: "address";
|
|
51
|
-
}, {
|
|
52
|
-
readonly indexed: true;
|
|
53
|
-
readonly internalType: "address";
|
|
54
|
-
readonly name: "to";
|
|
55
|
-
readonly type: "address";
|
|
56
|
-
}, {
|
|
57
|
-
readonly indexed: true;
|
|
58
|
-
readonly internalType: "uint256";
|
|
59
|
-
readonly name: "tokenId";
|
|
60
|
-
readonly type: "uint256";
|
|
61
|
-
}];
|
|
62
|
-
readonly name: "Transfer";
|
|
63
|
-
readonly type: "event";
|
|
64
|
-
}, {
|
|
65
|
-
readonly inputs: readonly [{
|
|
66
|
-
readonly internalType: "address";
|
|
67
|
-
readonly name: "to";
|
|
68
|
-
readonly type: "address";
|
|
69
|
-
}, {
|
|
70
|
-
readonly internalType: "uint256";
|
|
71
|
-
readonly name: "tokenId";
|
|
72
|
-
readonly type: "uint256";
|
|
73
|
-
}];
|
|
74
|
-
readonly name: "approve";
|
|
75
|
-
readonly outputs: readonly [];
|
|
76
|
-
readonly stateMutability: "nonpayable";
|
|
77
|
-
readonly type: "function";
|
|
78
|
-
}, {
|
|
79
|
-
readonly inputs: readonly [{
|
|
80
|
-
readonly internalType: "address";
|
|
81
|
-
readonly name: "owner";
|
|
82
|
-
readonly type: "address";
|
|
83
|
-
}];
|
|
84
|
-
readonly name: "balanceOf";
|
|
85
|
-
readonly outputs: readonly [{
|
|
86
|
-
readonly internalType: "uint256";
|
|
87
|
-
readonly name: "balance";
|
|
88
|
-
readonly type: "uint256";
|
|
89
|
-
}];
|
|
90
|
-
readonly stateMutability: "view";
|
|
91
|
-
readonly type: "function";
|
|
92
|
-
}, {
|
|
93
|
-
readonly inputs: readonly [{
|
|
94
|
-
readonly internalType: "uint256";
|
|
95
|
-
readonly name: "tokenId";
|
|
96
|
-
readonly type: "uint256";
|
|
97
|
-
}];
|
|
98
|
-
readonly name: "getApproved";
|
|
99
|
-
readonly outputs: readonly [{
|
|
100
|
-
readonly internalType: "address";
|
|
101
|
-
readonly name: "operator";
|
|
102
|
-
readonly type: "address";
|
|
103
|
-
}];
|
|
104
|
-
readonly stateMutability: "view";
|
|
105
|
-
readonly type: "function";
|
|
106
|
-
}, {
|
|
107
|
-
readonly inputs: readonly [{
|
|
108
|
-
readonly internalType: "address";
|
|
109
|
-
readonly name: "owner";
|
|
110
|
-
readonly type: "address";
|
|
111
|
-
}, {
|
|
112
|
-
readonly internalType: "address";
|
|
113
|
-
readonly name: "operator";
|
|
114
|
-
readonly type: "address";
|
|
115
|
-
}];
|
|
116
|
-
readonly name: "isApprovedForAll";
|
|
117
|
-
readonly outputs: readonly [{
|
|
118
|
-
readonly internalType: "bool";
|
|
119
|
-
readonly name: "";
|
|
120
|
-
readonly type: "bool";
|
|
121
|
-
}];
|
|
122
|
-
readonly stateMutability: "view";
|
|
123
|
-
readonly type: "function";
|
|
124
|
-
}, {
|
|
125
|
-
readonly inputs: readonly [{
|
|
126
|
-
readonly internalType: "uint256";
|
|
127
|
-
readonly name: "tokenId";
|
|
128
|
-
readonly type: "uint256";
|
|
129
|
-
}];
|
|
130
|
-
readonly name: "ownerOf";
|
|
131
|
-
readonly outputs: readonly [{
|
|
132
|
-
readonly internalType: "address";
|
|
133
|
-
readonly name: "owner";
|
|
134
|
-
readonly type: "address";
|
|
135
|
-
}];
|
|
136
|
-
readonly stateMutability: "view";
|
|
137
|
-
readonly type: "function";
|
|
138
|
-
}, {
|
|
139
|
-
readonly inputs: readonly [{
|
|
140
|
-
readonly internalType: "address";
|
|
141
|
-
readonly name: "from";
|
|
142
|
-
readonly type: "address";
|
|
143
|
-
}, {
|
|
144
|
-
readonly internalType: "address";
|
|
145
|
-
readonly name: "to";
|
|
146
|
-
readonly type: "address";
|
|
147
|
-
}, {
|
|
148
|
-
readonly internalType: "uint256";
|
|
149
|
-
readonly name: "tokenId";
|
|
150
|
-
readonly type: "uint256";
|
|
151
|
-
}];
|
|
152
|
-
readonly name: "safeTransferFrom";
|
|
153
|
-
readonly outputs: readonly [];
|
|
154
|
-
readonly stateMutability: "nonpayable";
|
|
155
|
-
readonly type: "function";
|
|
156
|
-
}, {
|
|
157
|
-
readonly inputs: readonly [{
|
|
158
|
-
readonly internalType: "address";
|
|
159
|
-
readonly name: "from";
|
|
160
|
-
readonly type: "address";
|
|
161
|
-
}, {
|
|
162
|
-
readonly internalType: "address";
|
|
163
|
-
readonly name: "to";
|
|
164
|
-
readonly type: "address";
|
|
165
|
-
}, {
|
|
166
|
-
readonly internalType: "uint256";
|
|
167
|
-
readonly name: "tokenId";
|
|
168
|
-
readonly type: "uint256";
|
|
169
|
-
}, {
|
|
170
|
-
readonly internalType: "bytes";
|
|
171
|
-
readonly name: "data";
|
|
172
|
-
readonly type: "bytes";
|
|
173
|
-
}];
|
|
174
|
-
readonly name: "safeTransferFrom";
|
|
175
|
-
readonly outputs: readonly [];
|
|
176
|
-
readonly stateMutability: "nonpayable";
|
|
177
|
-
readonly type: "function";
|
|
178
|
-
}, {
|
|
179
|
-
readonly inputs: readonly [{
|
|
180
|
-
readonly internalType: "address";
|
|
181
|
-
readonly name: "operator";
|
|
182
|
-
readonly type: "address";
|
|
183
|
-
}, {
|
|
184
|
-
readonly internalType: "bool";
|
|
185
|
-
readonly name: "_approved";
|
|
186
|
-
readonly type: "bool";
|
|
187
|
-
}];
|
|
188
|
-
readonly name: "setApprovalForAll";
|
|
189
|
-
readonly outputs: readonly [];
|
|
190
|
-
readonly stateMutability: "nonpayable";
|
|
191
|
-
readonly type: "function";
|
|
192
|
-
}, {
|
|
193
|
-
readonly inputs: readonly [{
|
|
194
|
-
readonly internalType: "bytes4";
|
|
195
|
-
readonly name: "interfaceId";
|
|
196
|
-
readonly type: "bytes4";
|
|
197
|
-
}];
|
|
198
|
-
readonly name: "supportsInterface";
|
|
199
|
-
readonly outputs: readonly [{
|
|
200
|
-
readonly internalType: "bool";
|
|
201
|
-
readonly name: "";
|
|
202
|
-
readonly type: "bool";
|
|
203
|
-
}];
|
|
204
|
-
readonly stateMutability: "view";
|
|
205
|
-
readonly type: "function";
|
|
206
|
-
}, {
|
|
207
|
-
readonly inputs: readonly [{
|
|
208
|
-
readonly internalType: "address";
|
|
209
|
-
readonly name: "from";
|
|
210
|
-
readonly type: "address";
|
|
211
|
-
}, {
|
|
212
|
-
readonly internalType: "address";
|
|
213
|
-
readonly name: "to";
|
|
214
|
-
readonly type: "address";
|
|
215
|
-
}, {
|
|
216
|
-
readonly internalType: "uint256";
|
|
217
|
-
readonly name: "tokenId";
|
|
218
|
-
readonly type: "uint256";
|
|
219
|
-
}];
|
|
220
|
-
readonly name: "transferFrom";
|
|
221
|
-
readonly outputs: readonly [];
|
|
222
|
-
readonly stateMutability: "nonpayable";
|
|
223
|
-
readonly type: "function";
|
|
224
|
-
}];
|
|
5
|
+
static readonly abi: ({
|
|
6
|
+
anonymous: boolean;
|
|
7
|
+
inputs: {
|
|
8
|
+
indexed: boolean;
|
|
9
|
+
internalType: string;
|
|
10
|
+
name: string;
|
|
11
|
+
type: string;
|
|
12
|
+
}[];
|
|
13
|
+
name: string;
|
|
14
|
+
type: string;
|
|
15
|
+
outputs?: undefined;
|
|
16
|
+
stateMutability?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
inputs: {
|
|
19
|
+
internalType: string;
|
|
20
|
+
name: string;
|
|
21
|
+
type: string;
|
|
22
|
+
}[];
|
|
23
|
+
name: string;
|
|
24
|
+
outputs: {
|
|
25
|
+
internalType: string;
|
|
26
|
+
name: string;
|
|
27
|
+
type: string;
|
|
28
|
+
}[];
|
|
29
|
+
stateMutability: string;
|
|
30
|
+
type: string;
|
|
31
|
+
anonymous?: undefined;
|
|
32
|
+
})[];
|
|
225
33
|
static createInterface(): IERC721Interface;
|
|
226
|
-
static connect(address: string,
|
|
34
|
+
static connect(address: string, signerOrProvider: Signer | Provider): IERC721;
|
|
227
35
|
}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Signer } from "ethers-v5";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
2
3
|
import type { IERC165, IERC165Interface } from "../../../../../@openzeppelin/contracts/utils/introspection/IERC165";
|
|
3
4
|
export declare class IERC165__factory {
|
|
4
|
-
static readonly abi:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}];
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}];
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}];
|
|
5
|
+
static readonly abi: {
|
|
6
|
+
inputs: {
|
|
7
|
+
internalType: string;
|
|
8
|
+
name: string;
|
|
9
|
+
type: string;
|
|
10
|
+
}[];
|
|
11
|
+
name: string;
|
|
12
|
+
outputs: {
|
|
13
|
+
internalType: string;
|
|
14
|
+
name: string;
|
|
15
|
+
type: string;
|
|
16
|
+
}[];
|
|
17
|
+
stateMutability: string;
|
|
18
|
+
type: string;
|
|
19
|
+
}[];
|
|
19
20
|
static createInterface(): IERC165Interface;
|
|
20
|
-
static connect(address: string,
|
|
21
|
+
static connect(address: string, signerOrProvider: Signer | Provider): IERC165;
|
|
21
22
|
}
|