@opensea/seaport-js 1.0.1-beta.0 → 1.0.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.
Files changed (79) hide show
  1. package/lib/abi/ERC1155.d.ts +29 -29
  2. package/lib/abi/ERC1155.js +319 -0
  3. package/lib/abi/ERC1155.js.map +1 -0
  4. package/lib/abi/ERC20.d.ts +29 -29
  5. package/lib/abi/ERC20.js +317 -0
  6. package/lib/abi/ERC20.js.map +1 -0
  7. package/lib/abi/ERC721.d.ts +29 -29
  8. package/lib/abi/ERC721.js +337 -0
  9. package/lib/abi/ERC721.js.map +1 -0
  10. package/lib/abi/Seaport.d.ts +112 -112
  11. package/lib/abi/Seaport.js +2585 -0
  12. package/lib/abi/Seaport.js.map +1 -0
  13. package/lib/constants.d.ts +49 -49
  14. package/lib/constants.js +73 -0
  15. package/lib/constants.js.map +1 -0
  16. package/lib/index.d.ts +2 -2
  17. package/lib/index.js +6 -2
  18. package/lib/index.js.map +1 -1
  19. package/lib/seaport.d.ts +181 -181
  20. package/lib/seaport.js +720 -0
  21. package/lib/seaport.js.map +1 -0
  22. package/lib/typechain/ERC1155.d.ts +189 -0
  23. package/lib/typechain/ERC1155.js +3 -0
  24. package/lib/typechain/ERC1155.js.map +1 -0
  25. package/lib/typechain/ERC20.d.ts +209 -0
  26. package/lib/typechain/ERC20.js +3 -0
  27. package/lib/typechain/ERC20.js.map +1 -0
  28. package/lib/typechain/ERC721.d.ts +220 -0
  29. package/lib/typechain/ERC721.js +3 -0
  30. package/lib/typechain/ERC721.js.map +1 -0
  31. package/lib/typechain/Seaport.d.ts +686 -0
  32. package/lib/typechain/Seaport.js +3 -0
  33. package/lib/typechain/Seaport.js.map +1 -0
  34. package/lib/typechain/common.d.ts +21 -0
  35. package/lib/typechain/common.js +3 -0
  36. package/lib/typechain/common.js.map +1 -0
  37. package/lib/types.d.ts +207 -207
  38. package/lib/types.js +3 -0
  39. package/lib/types.js.map +1 -0
  40. package/lib/utils/approval.d.ts +9 -9
  41. package/lib/utils/approval.js +108 -0
  42. package/lib/utils/approval.js.map +1 -0
  43. package/lib/utils/balance.d.ts +4 -4
  44. package/lib/utils/balance.js +86 -0
  45. package/lib/utils/balance.js.map +1 -0
  46. package/lib/utils/balanceAndApprovalCheck.d.ts +108 -108
  47. package/lib/utils/balanceAndApprovalCheck.js +322 -0
  48. package/lib/utils/balanceAndApprovalCheck.js.map +1 -0
  49. package/lib/utils/criteria.d.ts +14 -13
  50. package/lib/utils/criteria.js +91 -0
  51. package/lib/utils/criteria.js.map +1 -0
  52. package/lib/utils/fulfill.d.ts +84 -84
  53. package/lib/utils/fulfill.js +573 -0
  54. package/lib/utils/fulfill.js.map +1 -0
  55. package/lib/utils/gcd.d.ts +3 -3
  56. package/lib/utils/gcd.js +25 -0
  57. package/lib/utils/gcd.js.map +1 -0
  58. package/lib/utils/item.d.ts +29 -30
  59. package/lib/utils/item.js +136 -0
  60. package/lib/utils/item.js.map +1 -0
  61. package/lib/utils/match.d.ts +49 -49
  62. package/lib/utils/match.js +56 -0
  63. package/lib/utils/match.js.map +1 -0
  64. package/lib/utils/merkletree.d.ts +11 -11
  65. package/lib/utils/merkletree.js +32 -0
  66. package/lib/utils/merkletree.js.map +1 -0
  67. package/lib/utils/order.d.ts +37 -37
  68. package/lib/utils/order.js +224 -0
  69. package/lib/utils/order.js.map +1 -0
  70. package/lib/utils/usecase.d.ts +4 -4
  71. package/lib/utils/usecase.js +158 -0
  72. package/lib/utils/usecase.js.map +1 -0
  73. package/package.json +3 -5
  74. package/lib/index.esm.mjs +0 -2
  75. package/lib/index.esm.mjs.map +0 -1
  76. package/lib/index.modern.mjs +0 -2
  77. package/lib/index.modern.mjs.map +0 -1
  78. package/lib/index.umd.js +0 -2
  79. package/lib/index.umd.js.map +0 -1
@@ -0,0 +1,337 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ERC721ABI = void 0;
4
+ var ERC721ABI = [
5
+ {
6
+ anonymous: false,
7
+ inputs: [
8
+ {
9
+ indexed: true,
10
+ internalType: "address",
11
+ name: "owner",
12
+ type: "address",
13
+ },
14
+ {
15
+ indexed: true,
16
+ internalType: "address",
17
+ name: "spender",
18
+ type: "address",
19
+ },
20
+ {
21
+ indexed: true,
22
+ internalType: "uint256",
23
+ name: "id",
24
+ type: "uint256",
25
+ },
26
+ ],
27
+ name: "Approval",
28
+ type: "event",
29
+ },
30
+ {
31
+ anonymous: false,
32
+ inputs: [
33
+ {
34
+ indexed: true,
35
+ internalType: "address",
36
+ name: "owner",
37
+ type: "address",
38
+ },
39
+ {
40
+ indexed: true,
41
+ internalType: "address",
42
+ name: "operator",
43
+ type: "address",
44
+ },
45
+ {
46
+ indexed: false,
47
+ internalType: "bool",
48
+ name: "approved",
49
+ type: "bool",
50
+ },
51
+ ],
52
+ name: "ApprovalForAll",
53
+ type: "event",
54
+ },
55
+ {
56
+ anonymous: false,
57
+ inputs: [
58
+ {
59
+ indexed: true,
60
+ internalType: "address",
61
+ name: "from",
62
+ type: "address",
63
+ },
64
+ {
65
+ indexed: true,
66
+ internalType: "address",
67
+ name: "to",
68
+ type: "address",
69
+ },
70
+ {
71
+ indexed: true,
72
+ internalType: "uint256",
73
+ name: "id",
74
+ type: "uint256",
75
+ },
76
+ ],
77
+ name: "Transfer",
78
+ type: "event",
79
+ },
80
+ {
81
+ inputs: [
82
+ {
83
+ internalType: "address",
84
+ name: "spender",
85
+ type: "address",
86
+ },
87
+ {
88
+ internalType: "uint256",
89
+ name: "id",
90
+ type: "uint256",
91
+ },
92
+ ],
93
+ name: "approve",
94
+ outputs: [],
95
+ stateMutability: "nonpayable",
96
+ type: "function",
97
+ },
98
+ {
99
+ inputs: [
100
+ {
101
+ internalType: "address",
102
+ name: "",
103
+ type: "address",
104
+ },
105
+ ],
106
+ name: "balanceOf",
107
+ outputs: [
108
+ {
109
+ internalType: "uint256",
110
+ name: "",
111
+ type: "uint256",
112
+ },
113
+ ],
114
+ stateMutability: "view",
115
+ type: "function",
116
+ },
117
+ {
118
+ inputs: [
119
+ {
120
+ internalType: "uint256",
121
+ name: "",
122
+ type: "uint256",
123
+ },
124
+ ],
125
+ name: "getApproved",
126
+ outputs: [
127
+ {
128
+ internalType: "address",
129
+ name: "",
130
+ type: "address",
131
+ },
132
+ ],
133
+ stateMutability: "view",
134
+ type: "function",
135
+ },
136
+ {
137
+ inputs: [
138
+ {
139
+ internalType: "address",
140
+ name: "",
141
+ type: "address",
142
+ },
143
+ {
144
+ internalType: "address",
145
+ name: "",
146
+ type: "address",
147
+ },
148
+ ],
149
+ name: "isApprovedForAll",
150
+ outputs: [
151
+ {
152
+ internalType: "bool",
153
+ name: "",
154
+ type: "bool",
155
+ },
156
+ ],
157
+ stateMutability: "view",
158
+ type: "function",
159
+ },
160
+ {
161
+ inputs: [],
162
+ name: "name",
163
+ outputs: [
164
+ {
165
+ internalType: "string",
166
+ name: "",
167
+ type: "string",
168
+ },
169
+ ],
170
+ stateMutability: "view",
171
+ type: "function",
172
+ },
173
+ {
174
+ inputs: [
175
+ {
176
+ internalType: "uint256",
177
+ name: "",
178
+ type: "uint256",
179
+ },
180
+ ],
181
+ name: "ownerOf",
182
+ outputs: [
183
+ {
184
+ internalType: "address",
185
+ name: "",
186
+ type: "address",
187
+ },
188
+ ],
189
+ stateMutability: "view",
190
+ type: "function",
191
+ },
192
+ {
193
+ inputs: [
194
+ {
195
+ internalType: "address",
196
+ name: "from",
197
+ type: "address",
198
+ },
199
+ {
200
+ internalType: "address",
201
+ name: "to",
202
+ type: "address",
203
+ },
204
+ {
205
+ internalType: "uint256",
206
+ name: "id",
207
+ type: "uint256",
208
+ },
209
+ ],
210
+ name: "safeTransferFrom",
211
+ outputs: [],
212
+ stateMutability: "nonpayable",
213
+ type: "function",
214
+ },
215
+ {
216
+ inputs: [
217
+ {
218
+ internalType: "address",
219
+ name: "from",
220
+ type: "address",
221
+ },
222
+ {
223
+ internalType: "address",
224
+ name: "to",
225
+ type: "address",
226
+ },
227
+ {
228
+ internalType: "uint256",
229
+ name: "id",
230
+ type: "uint256",
231
+ },
232
+ {
233
+ internalType: "bytes",
234
+ name: "data",
235
+ type: "bytes",
236
+ },
237
+ ],
238
+ name: "safeTransferFrom",
239
+ outputs: [],
240
+ stateMutability: "nonpayable",
241
+ type: "function",
242
+ },
243
+ {
244
+ inputs: [
245
+ {
246
+ internalType: "address",
247
+ name: "operator",
248
+ type: "address",
249
+ },
250
+ {
251
+ internalType: "bool",
252
+ name: "approved",
253
+ type: "bool",
254
+ },
255
+ ],
256
+ name: "setApprovalForAll",
257
+ outputs: [],
258
+ stateMutability: "nonpayable",
259
+ type: "function",
260
+ },
261
+ {
262
+ inputs: [
263
+ {
264
+ internalType: "bytes4",
265
+ name: "interfaceId",
266
+ type: "bytes4",
267
+ },
268
+ ],
269
+ name: "supportsInterface",
270
+ outputs: [
271
+ {
272
+ internalType: "bool",
273
+ name: "",
274
+ type: "bool",
275
+ },
276
+ ],
277
+ stateMutability: "pure",
278
+ type: "function",
279
+ },
280
+ {
281
+ inputs: [],
282
+ name: "symbol",
283
+ outputs: [
284
+ {
285
+ internalType: "string",
286
+ name: "",
287
+ type: "string",
288
+ },
289
+ ],
290
+ stateMutability: "view",
291
+ type: "function",
292
+ },
293
+ {
294
+ inputs: [
295
+ {
296
+ internalType: "uint256",
297
+ name: "id",
298
+ type: "uint256",
299
+ },
300
+ ],
301
+ name: "tokenURI",
302
+ outputs: [
303
+ {
304
+ internalType: "string",
305
+ name: "",
306
+ type: "string",
307
+ },
308
+ ],
309
+ stateMutability: "view",
310
+ type: "function",
311
+ },
312
+ {
313
+ inputs: [
314
+ {
315
+ internalType: "address",
316
+ name: "from",
317
+ type: "address",
318
+ },
319
+ {
320
+ internalType: "address",
321
+ name: "to",
322
+ type: "address",
323
+ },
324
+ {
325
+ internalType: "uint256",
326
+ name: "id",
327
+ type: "uint256",
328
+ },
329
+ ],
330
+ name: "transferFrom",
331
+ outputs: [],
332
+ stateMutability: "nonpayable",
333
+ type: "function",
334
+ },
335
+ ];
336
+ exports.ERC721ABI = ERC721ABI;
337
+ //# sourceMappingURL=ERC721.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ERC721.js","sourceRoot":"","sources":["../../src/abi/ERC721.ts"],"names":[],"mappings":"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"}
@@ -1,112 +1,112 @@
1
- declare const SeaportABI: ({
2
- inputs: {
3
- internalType: string;
4
- name: string;
5
- type: string;
6
- }[];
7
- stateMutability: string;
8
- type: string;
9
- name?: undefined;
10
- anonymous?: undefined;
11
- outputs?: undefined;
12
- } | {
13
- inputs: {
14
- internalType: string;
15
- name: string;
16
- type: string;
17
- }[];
18
- name: string;
19
- type: string;
20
- stateMutability?: undefined;
21
- anonymous?: undefined;
22
- outputs?: undefined;
23
- } | {
24
- anonymous: boolean;
25
- inputs: ({
26
- indexed: boolean;
27
- internalType: string;
28
- name: string;
29
- type: string;
30
- components?: undefined;
31
- } | {
32
- components: {
33
- internalType: string;
34
- name: string;
35
- type: string;
36
- }[];
37
- indexed: boolean;
38
- internalType: string;
39
- name: string;
40
- type: string;
41
- })[];
42
- name: string;
43
- type: string;
44
- stateMutability?: undefined;
45
- outputs?: undefined;
46
- } | {
47
- inputs: ({
48
- components: ({
49
- components: ({
50
- internalType: string;
51
- name: string;
52
- type: string;
53
- components?: undefined;
54
- } | {
55
- components: {
56
- internalType: string;
57
- name: string;
58
- type: string;
59
- }[];
60
- internalType: string;
61
- name: string;
62
- type: string;
63
- })[];
64
- internalType: string;
65
- name: string;
66
- type: string;
67
- } | {
68
- internalType: string;
69
- name: string;
70
- type: string;
71
- components?: undefined;
72
- })[];
73
- internalType: string;
74
- name: string;
75
- type: string;
76
- } | {
77
- internalType: string;
78
- name: string;
79
- type: string;
80
- components?: undefined;
81
- })[];
82
- name: string;
83
- outputs: ({
84
- internalType: string;
85
- name: string;
86
- type: string;
87
- components?: undefined;
88
- } | {
89
- components: ({
90
- components: {
91
- internalType: string;
92
- name: string;
93
- type: string;
94
- }[];
95
- internalType: string;
96
- name: string;
97
- type: string;
98
- } | {
99
- internalType: string;
100
- name: string;
101
- type: string;
102
- components?: undefined;
103
- })[];
104
- internalType: string;
105
- name: string;
106
- type: string;
107
- })[];
108
- stateMutability: string;
109
- type: string;
110
- anonymous?: undefined;
111
- })[];
112
- export { SeaportABI };
1
+ declare const SeaportABI: ({
2
+ inputs: {
3
+ internalType: string;
4
+ name: string;
5
+ type: string;
6
+ }[];
7
+ stateMutability: string;
8
+ type: string;
9
+ name?: undefined;
10
+ anonymous?: undefined;
11
+ outputs?: undefined;
12
+ } | {
13
+ inputs: {
14
+ internalType: string;
15
+ name: string;
16
+ type: string;
17
+ }[];
18
+ name: string;
19
+ type: string;
20
+ stateMutability?: undefined;
21
+ anonymous?: undefined;
22
+ outputs?: undefined;
23
+ } | {
24
+ anonymous: boolean;
25
+ inputs: ({
26
+ indexed: boolean;
27
+ internalType: string;
28
+ name: string;
29
+ type: string;
30
+ components?: undefined;
31
+ } | {
32
+ components: {
33
+ internalType: string;
34
+ name: string;
35
+ type: string;
36
+ }[];
37
+ indexed: boolean;
38
+ internalType: string;
39
+ name: string;
40
+ type: string;
41
+ })[];
42
+ name: string;
43
+ type: string;
44
+ stateMutability?: undefined;
45
+ outputs?: undefined;
46
+ } | {
47
+ inputs: ({
48
+ components: ({
49
+ components: ({
50
+ internalType: string;
51
+ name: string;
52
+ type: string;
53
+ components?: undefined;
54
+ } | {
55
+ components: {
56
+ internalType: string;
57
+ name: string;
58
+ type: string;
59
+ }[];
60
+ internalType: string;
61
+ name: string;
62
+ type: string;
63
+ })[];
64
+ internalType: string;
65
+ name: string;
66
+ type: string;
67
+ } | {
68
+ internalType: string;
69
+ name: string;
70
+ type: string;
71
+ components?: undefined;
72
+ })[];
73
+ internalType: string;
74
+ name: string;
75
+ type: string;
76
+ } | {
77
+ internalType: string;
78
+ name: string;
79
+ type: string;
80
+ components?: undefined;
81
+ })[];
82
+ name: string;
83
+ outputs: ({
84
+ internalType: string;
85
+ name: string;
86
+ type: string;
87
+ components?: undefined;
88
+ } | {
89
+ components: ({
90
+ components: {
91
+ internalType: string;
92
+ name: string;
93
+ type: string;
94
+ }[];
95
+ internalType: string;
96
+ name: string;
97
+ type: string;
98
+ } | {
99
+ internalType: string;
100
+ name: string;
101
+ type: string;
102
+ components?: undefined;
103
+ })[];
104
+ internalType: string;
105
+ name: string;
106
+ type: string;
107
+ })[];
108
+ stateMutability: string;
109
+ type: string;
110
+ anonymous?: undefined;
111
+ })[];
112
+ export { SeaportABI };