@cgentai/cgent-contracts 1.0.0

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 (35) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +312 -0
  3. package/dist/src/browser.d.ts +36 -0
  4. package/dist/src/browser.d.ts.map +1 -0
  5. package/dist/src/browser.js +36 -0
  6. package/dist/src/browser.js.map +1 -0
  7. package/dist/src/constants.d.ts +5 -0
  8. package/dist/src/constants.d.ts.map +1 -0
  9. package/dist/src/constants.js +8 -0
  10. package/dist/src/constants.js.map +1 -0
  11. package/dist/src/contracts/p2pEscrowClient.d.ts +70 -0
  12. package/dist/src/contracts/p2pEscrowClient.d.ts.map +1 -0
  13. package/dist/src/contracts/p2pEscrowClient.js +160 -0
  14. package/dist/src/contracts/p2pEscrowClient.js.map +1 -0
  15. package/dist/src/index.d.ts +5 -0
  16. package/dist/src/index.d.ts.map +1 -0
  17. package/dist/src/index.js +21 -0
  18. package/dist/src/index.js.map +1 -0
  19. package/dist/src/types.d.ts +70 -0
  20. package/dist/src/types.d.ts.map +1 -0
  21. package/dist/src/types.js +16 -0
  22. package/dist/src/types.js.map +1 -0
  23. package/dist/typechain-types/common.d.ts +51 -0
  24. package/dist/typechain-types/common.d.ts.map +1 -0
  25. package/dist/typechain-types/common.js +3 -0
  26. package/dist/typechain-types/common.js.map +1 -0
  27. package/dist/typechain-types/contracts/P2PEscrow.d.ts +555 -0
  28. package/dist/typechain-types/contracts/P2PEscrow.d.ts.map +1 -0
  29. package/dist/typechain-types/contracts/P2PEscrow.js +3 -0
  30. package/dist/typechain-types/contracts/P2PEscrow.js.map +1 -0
  31. package/dist/typechain-types/factories/contracts/P2PEscrow__factory.d.ts +671 -0
  32. package/dist/typechain-types/factories/contracts/P2PEscrow__factory.d.ts.map +1 -0
  33. package/dist/typechain-types/factories/contracts/P2PEscrow__factory.js +874 -0
  34. package/dist/typechain-types/factories/contracts/P2PEscrow__factory.js.map +1 -0
  35. package/package.json +66 -0
@@ -0,0 +1,555 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common";
3
+ export declare namespace P2PEscrow {
4
+ type OrderStruct = {
5
+ buyer: AddressLike;
6
+ seller: AddressLike;
7
+ amount: BigNumberish;
8
+ lockedUntil: BigNumberish;
9
+ token: AddressLike;
10
+ status: BigNumberish;
11
+ previousStatus: BigNumberish;
12
+ };
13
+ type OrderStructOutput = [
14
+ buyer: string,
15
+ seller: string,
16
+ amount: bigint,
17
+ lockedUntil: bigint,
18
+ token: string,
19
+ status: bigint,
20
+ previousStatus: bigint
21
+ ] & {
22
+ buyer: string;
23
+ seller: string;
24
+ amount: bigint;
25
+ lockedUntil: bigint;
26
+ token: string;
27
+ status: bigint;
28
+ previousStatus: bigint;
29
+ };
30
+ }
31
+ export interface P2PEscrowInterface extends Interface {
32
+ getFunction(nameOrSignature: "addSupportedToken" | "arbitrate" | "arbitrator" | "buyerConfirmReceipt" | "buyerWithdraw" | "cancelArbitration" | "createOrder" | "feeRecipient" | "getOrder" | "getOrderId" | "lockOrder" | "orders" | "owner" | "removeSupportedToken" | "renounceOwnership" | "sellerRefund" | "sellerRelease" | "setArbitrationPending" | "setArbitrator" | "setFeeRecipient" | "supportedTokens" | "transferOwnership"): FunctionFragment;
33
+ getEvent(nameOrSignatureOrTopic: "ArbitrationCancelled" | "ArbitrationPendingSet" | "ArbitrationResolved" | "ArbitratorUpdated" | "BuyerWithdrawn" | "FeeRecipientUpdated" | "OrderCreated" | "OrderLocked" | "OwnershipTransferred" | "SellerRefunded" | "SellerReleased" | "SupportedTokenAdded" | "SupportedTokenRemoved"): EventFragment;
34
+ encodeFunctionData(functionFragment: "addSupportedToken", values: [AddressLike]): string;
35
+ encodeFunctionData(functionFragment: "arbitrate", values: [AddressLike, AddressLike, BigNumberish, boolean]): string;
36
+ encodeFunctionData(functionFragment: "arbitrator", values?: undefined): string;
37
+ encodeFunctionData(functionFragment: "buyerConfirmReceipt", values: [AddressLike, BigNumberish]): string;
38
+ encodeFunctionData(functionFragment: "buyerWithdraw", values: [AddressLike, BigNumberish]): string;
39
+ encodeFunctionData(functionFragment: "cancelArbitration", values: [AddressLike, AddressLike, BigNumberish]): string;
40
+ encodeFunctionData(functionFragment: "createOrder", values: [AddressLike, AddressLike, BigNumberish, BigNumberish, AddressLike]): string;
41
+ encodeFunctionData(functionFragment: "feeRecipient", values?: undefined): string;
42
+ encodeFunctionData(functionFragment: "getOrder", values: [AddressLike, AddressLike, BigNumberish]): string;
43
+ encodeFunctionData(functionFragment: "getOrderId", values: [AddressLike, AddressLike, BigNumberish]): string;
44
+ encodeFunctionData(functionFragment: "lockOrder", values: [AddressLike, BigNumberish]): string;
45
+ encodeFunctionData(functionFragment: "orders", values: [BytesLike]): string;
46
+ encodeFunctionData(functionFragment: "owner", values?: undefined): string;
47
+ encodeFunctionData(functionFragment: "removeSupportedToken", values: [AddressLike]): string;
48
+ encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
49
+ encodeFunctionData(functionFragment: "sellerRefund", values: [AddressLike, BigNumberish]): string;
50
+ encodeFunctionData(functionFragment: "sellerRelease", values: [AddressLike, BigNumberish]): string;
51
+ encodeFunctionData(functionFragment: "setArbitrationPending", values: [AddressLike, AddressLike, BigNumberish]): string;
52
+ encodeFunctionData(functionFragment: "setArbitrator", values: [AddressLike]): string;
53
+ encodeFunctionData(functionFragment: "setFeeRecipient", values: [AddressLike]): string;
54
+ encodeFunctionData(functionFragment: "supportedTokens", values: [AddressLike]): string;
55
+ encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
56
+ decodeFunctionResult(functionFragment: "addSupportedToken", data: BytesLike): Result;
57
+ decodeFunctionResult(functionFragment: "arbitrate", data: BytesLike): Result;
58
+ decodeFunctionResult(functionFragment: "arbitrator", data: BytesLike): Result;
59
+ decodeFunctionResult(functionFragment: "buyerConfirmReceipt", data: BytesLike): Result;
60
+ decodeFunctionResult(functionFragment: "buyerWithdraw", data: BytesLike): Result;
61
+ decodeFunctionResult(functionFragment: "cancelArbitration", data: BytesLike): Result;
62
+ decodeFunctionResult(functionFragment: "createOrder", data: BytesLike): Result;
63
+ decodeFunctionResult(functionFragment: "feeRecipient", data: BytesLike): Result;
64
+ decodeFunctionResult(functionFragment: "getOrder", data: BytesLike): Result;
65
+ decodeFunctionResult(functionFragment: "getOrderId", data: BytesLike): Result;
66
+ decodeFunctionResult(functionFragment: "lockOrder", data: BytesLike): Result;
67
+ decodeFunctionResult(functionFragment: "orders", data: BytesLike): Result;
68
+ decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
69
+ decodeFunctionResult(functionFragment: "removeSupportedToken", data: BytesLike): Result;
70
+ decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
71
+ decodeFunctionResult(functionFragment: "sellerRefund", data: BytesLike): Result;
72
+ decodeFunctionResult(functionFragment: "sellerRelease", data: BytesLike): Result;
73
+ decodeFunctionResult(functionFragment: "setArbitrationPending", data: BytesLike): Result;
74
+ decodeFunctionResult(functionFragment: "setArbitrator", data: BytesLike): Result;
75
+ decodeFunctionResult(functionFragment: "setFeeRecipient", data: BytesLike): Result;
76
+ decodeFunctionResult(functionFragment: "supportedTokens", data: BytesLike): Result;
77
+ decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
78
+ }
79
+ export declare namespace ArbitrationCancelledEvent {
80
+ type InputTuple = [orderKey: BytesLike, restoredStatus: BigNumberish];
81
+ type OutputTuple = [orderKey: string, restoredStatus: bigint];
82
+ interface OutputObject {
83
+ orderKey: string;
84
+ restoredStatus: bigint;
85
+ }
86
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
87
+ type Filter = TypedDeferredTopicFilter<Event>;
88
+ type Log = TypedEventLog<Event>;
89
+ type LogDescription = TypedLogDescription<Event>;
90
+ }
91
+ export declare namespace ArbitrationPendingSetEvent {
92
+ type InputTuple = [orderKey: BytesLike];
93
+ type OutputTuple = [orderKey: string];
94
+ interface OutputObject {
95
+ orderKey: string;
96
+ }
97
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
98
+ type Filter = TypedDeferredTopicFilter<Event>;
99
+ type Log = TypedEventLog<Event>;
100
+ type LogDescription = TypedLogDescription<Event>;
101
+ }
102
+ export declare namespace ArbitrationResolvedEvent {
103
+ type InputTuple = [
104
+ orderKey: BytesLike,
105
+ releasedToSeller: boolean,
106
+ amount: BigNumberish,
107
+ feeAmount: BigNumberish
108
+ ];
109
+ type OutputTuple = [
110
+ orderKey: string,
111
+ releasedToSeller: boolean,
112
+ amount: bigint,
113
+ feeAmount: bigint
114
+ ];
115
+ interface OutputObject {
116
+ orderKey: string;
117
+ releasedToSeller: boolean;
118
+ amount: bigint;
119
+ feeAmount: bigint;
120
+ }
121
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
122
+ type Filter = TypedDeferredTopicFilter<Event>;
123
+ type Log = TypedEventLog<Event>;
124
+ type LogDescription = TypedLogDescription<Event>;
125
+ }
126
+ export declare namespace ArbitratorUpdatedEvent {
127
+ type InputTuple = [newArbitrator: AddressLike];
128
+ type OutputTuple = [newArbitrator: string];
129
+ interface OutputObject {
130
+ newArbitrator: string;
131
+ }
132
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
133
+ type Filter = TypedDeferredTopicFilter<Event>;
134
+ type Log = TypedEventLog<Event>;
135
+ type LogDescription = TypedLogDescription<Event>;
136
+ }
137
+ export declare namespace BuyerWithdrawnEvent {
138
+ type InputTuple = [orderKey: BytesLike];
139
+ type OutputTuple = [orderKey: string];
140
+ interface OutputObject {
141
+ orderKey: string;
142
+ }
143
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
144
+ type Filter = TypedDeferredTopicFilter<Event>;
145
+ type Log = TypedEventLog<Event>;
146
+ type LogDescription = TypedLogDescription<Event>;
147
+ }
148
+ export declare namespace FeeRecipientUpdatedEvent {
149
+ type InputTuple = [newRecipient: AddressLike];
150
+ type OutputTuple = [newRecipient: string];
151
+ interface OutputObject {
152
+ newRecipient: string;
153
+ }
154
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
155
+ type Filter = TypedDeferredTopicFilter<Event>;
156
+ type Log = TypedEventLog<Event>;
157
+ type LogDescription = TypedLogDescription<Event>;
158
+ }
159
+ export declare namespace OrderCreatedEvent {
160
+ type InputTuple = [
161
+ orderKey: BytesLike,
162
+ buyer: AddressLike,
163
+ seller: AddressLike,
164
+ orderId: BigNumberish,
165
+ token: AddressLike,
166
+ amount: BigNumberish
167
+ ];
168
+ type OutputTuple = [
169
+ orderKey: string,
170
+ buyer: string,
171
+ seller: string,
172
+ orderId: bigint,
173
+ token: string,
174
+ amount: bigint
175
+ ];
176
+ interface OutputObject {
177
+ orderKey: string;
178
+ buyer: string;
179
+ seller: string;
180
+ orderId: bigint;
181
+ token: string;
182
+ amount: bigint;
183
+ }
184
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
185
+ type Filter = TypedDeferredTopicFilter<Event>;
186
+ type Log = TypedEventLog<Event>;
187
+ type LogDescription = TypedLogDescription<Event>;
188
+ }
189
+ export declare namespace OrderLockedEvent {
190
+ type InputTuple = [orderKey: BytesLike, lockedUntil: BigNumberish];
191
+ type OutputTuple = [orderKey: string, lockedUntil: bigint];
192
+ interface OutputObject {
193
+ orderKey: string;
194
+ lockedUntil: bigint;
195
+ }
196
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
197
+ type Filter = TypedDeferredTopicFilter<Event>;
198
+ type Log = TypedEventLog<Event>;
199
+ type LogDescription = TypedLogDescription<Event>;
200
+ }
201
+ export declare namespace OwnershipTransferredEvent {
202
+ type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
203
+ type OutputTuple = [previousOwner: string, newOwner: string];
204
+ interface OutputObject {
205
+ previousOwner: string;
206
+ newOwner: string;
207
+ }
208
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
209
+ type Filter = TypedDeferredTopicFilter<Event>;
210
+ type Log = TypedEventLog<Event>;
211
+ type LogDescription = TypedLogDescription<Event>;
212
+ }
213
+ export declare namespace SellerRefundedEvent {
214
+ type InputTuple = [orderKey: BytesLike];
215
+ type OutputTuple = [orderKey: string];
216
+ interface OutputObject {
217
+ orderKey: string;
218
+ }
219
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
220
+ type Filter = TypedDeferredTopicFilter<Event>;
221
+ type Log = TypedEventLog<Event>;
222
+ type LogDescription = TypedLogDescription<Event>;
223
+ }
224
+ export declare namespace SellerReleasedEvent {
225
+ type InputTuple = [
226
+ orderKey: BytesLike,
227
+ sellerAmount: BigNumberish,
228
+ feeAmount: BigNumberish
229
+ ];
230
+ type OutputTuple = [
231
+ orderKey: string,
232
+ sellerAmount: bigint,
233
+ feeAmount: bigint
234
+ ];
235
+ interface OutputObject {
236
+ orderKey: string;
237
+ sellerAmount: bigint;
238
+ feeAmount: bigint;
239
+ }
240
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
241
+ type Filter = TypedDeferredTopicFilter<Event>;
242
+ type Log = TypedEventLog<Event>;
243
+ type LogDescription = TypedLogDescription<Event>;
244
+ }
245
+ export declare namespace SupportedTokenAddedEvent {
246
+ type InputTuple = [token: AddressLike];
247
+ type OutputTuple = [token: string];
248
+ interface OutputObject {
249
+ token: string;
250
+ }
251
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
252
+ type Filter = TypedDeferredTopicFilter<Event>;
253
+ type Log = TypedEventLog<Event>;
254
+ type LogDescription = TypedLogDescription<Event>;
255
+ }
256
+ export declare namespace SupportedTokenRemovedEvent {
257
+ type InputTuple = [token: AddressLike];
258
+ type OutputTuple = [token: string];
259
+ interface OutputObject {
260
+ token: string;
261
+ }
262
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
263
+ type Filter = TypedDeferredTopicFilter<Event>;
264
+ type Log = TypedEventLog<Event>;
265
+ type LogDescription = TypedLogDescription<Event>;
266
+ }
267
+ export interface P2PEscrow extends BaseContract {
268
+ connect(runner?: ContractRunner | null): P2PEscrow;
269
+ waitForDeployment(): Promise<this>;
270
+ interface: P2PEscrowInterface;
271
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
272
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
273
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
274
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
275
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
276
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
277
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
278
+ listeners(eventName?: string): Promise<Array<Listener>>;
279
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
280
+ addSupportedToken: TypedContractMethod<[
281
+ token: AddressLike
282
+ ], [
283
+ void
284
+ ], "nonpayable">;
285
+ arbitrate: TypedContractMethod<[
286
+ buyer: AddressLike,
287
+ seller: AddressLike,
288
+ orderId: BigNumberish,
289
+ releaseToSeller: boolean
290
+ ], [
291
+ void
292
+ ], "nonpayable">;
293
+ arbitrator: TypedContractMethod<[], [string], "view">;
294
+ buyerConfirmReceipt: TypedContractMethod<[
295
+ seller: AddressLike,
296
+ orderId: BigNumberish
297
+ ], [
298
+ void
299
+ ], "nonpayable">;
300
+ buyerWithdraw: TypedContractMethod<[
301
+ seller: AddressLike,
302
+ orderId: BigNumberish
303
+ ], [
304
+ void
305
+ ], "nonpayable">;
306
+ cancelArbitration: TypedContractMethod<[
307
+ buyer: AddressLike,
308
+ seller: AddressLike,
309
+ orderId: BigNumberish
310
+ ], [
311
+ void
312
+ ], "nonpayable">;
313
+ createOrder: TypedContractMethod<[
314
+ buyer: AddressLike,
315
+ seller: AddressLike,
316
+ orderId: BigNumberish,
317
+ amount: BigNumberish,
318
+ token: AddressLike
319
+ ], [
320
+ void
321
+ ], "nonpayable">;
322
+ feeRecipient: TypedContractMethod<[], [string], "view">;
323
+ getOrder: TypedContractMethod<[
324
+ buyer: AddressLike,
325
+ seller: AddressLike,
326
+ orderId: BigNumberish
327
+ ], [
328
+ P2PEscrow.OrderStructOutput
329
+ ], "view">;
330
+ getOrderId: TypedContractMethod<[
331
+ buyer: AddressLike,
332
+ seller: AddressLike,
333
+ orderId: BigNumberish
334
+ ], [
335
+ string
336
+ ], "view">;
337
+ lockOrder: TypedContractMethod<[
338
+ buyer: AddressLike,
339
+ orderId: BigNumberish
340
+ ], [
341
+ void
342
+ ], "nonpayable">;
343
+ orders: TypedContractMethod<[
344
+ arg0: BytesLike
345
+ ], [
346
+ [
347
+ string,
348
+ string,
349
+ bigint,
350
+ bigint,
351
+ string,
352
+ bigint,
353
+ bigint
354
+ ] & {
355
+ buyer: string;
356
+ seller: string;
357
+ amount: bigint;
358
+ lockedUntil: bigint;
359
+ token: string;
360
+ status: bigint;
361
+ previousStatus: bigint;
362
+ }
363
+ ], "view">;
364
+ owner: TypedContractMethod<[], [string], "view">;
365
+ removeSupportedToken: TypedContractMethod<[
366
+ token: AddressLike
367
+ ], [
368
+ void
369
+ ], "nonpayable">;
370
+ renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
371
+ sellerRefund: TypedContractMethod<[
372
+ buyer: AddressLike,
373
+ orderId: BigNumberish
374
+ ], [
375
+ void
376
+ ], "nonpayable">;
377
+ sellerRelease: TypedContractMethod<[
378
+ buyer: AddressLike,
379
+ orderId: BigNumberish
380
+ ], [
381
+ void
382
+ ], "nonpayable">;
383
+ setArbitrationPending: TypedContractMethod<[
384
+ buyer: AddressLike,
385
+ seller: AddressLike,
386
+ orderId: BigNumberish
387
+ ], [
388
+ void
389
+ ], "nonpayable">;
390
+ setArbitrator: TypedContractMethod<[
391
+ newArbitrator: AddressLike
392
+ ], [
393
+ void
394
+ ], "nonpayable">;
395
+ setFeeRecipient: TypedContractMethod<[
396
+ newRecipient: AddressLike
397
+ ], [
398
+ void
399
+ ], "nonpayable">;
400
+ supportedTokens: TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
401
+ transferOwnership: TypedContractMethod<[
402
+ newOwner: AddressLike
403
+ ], [
404
+ void
405
+ ], "nonpayable">;
406
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
407
+ getFunction(nameOrSignature: "addSupportedToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
408
+ getFunction(nameOrSignature: "arbitrate"): TypedContractMethod<[
409
+ buyer: AddressLike,
410
+ seller: AddressLike,
411
+ orderId: BigNumberish,
412
+ releaseToSeller: boolean
413
+ ], [
414
+ void
415
+ ], "nonpayable">;
416
+ getFunction(nameOrSignature: "arbitrator"): TypedContractMethod<[], [string], "view">;
417
+ getFunction(nameOrSignature: "buyerConfirmReceipt"): TypedContractMethod<[
418
+ seller: AddressLike,
419
+ orderId: BigNumberish
420
+ ], [
421
+ void
422
+ ], "nonpayable">;
423
+ getFunction(nameOrSignature: "buyerWithdraw"): TypedContractMethod<[
424
+ seller: AddressLike,
425
+ orderId: BigNumberish
426
+ ], [
427
+ void
428
+ ], "nonpayable">;
429
+ getFunction(nameOrSignature: "cancelArbitration"): TypedContractMethod<[
430
+ buyer: AddressLike,
431
+ seller: AddressLike,
432
+ orderId: BigNumberish
433
+ ], [
434
+ void
435
+ ], "nonpayable">;
436
+ getFunction(nameOrSignature: "createOrder"): TypedContractMethod<[
437
+ buyer: AddressLike,
438
+ seller: AddressLike,
439
+ orderId: BigNumberish,
440
+ amount: BigNumberish,
441
+ token: AddressLike
442
+ ], [
443
+ void
444
+ ], "nonpayable">;
445
+ getFunction(nameOrSignature: "feeRecipient"): TypedContractMethod<[], [string], "view">;
446
+ getFunction(nameOrSignature: "getOrder"): TypedContractMethod<[
447
+ buyer: AddressLike,
448
+ seller: AddressLike,
449
+ orderId: BigNumberish
450
+ ], [
451
+ P2PEscrow.OrderStructOutput
452
+ ], "view">;
453
+ getFunction(nameOrSignature: "getOrderId"): TypedContractMethod<[
454
+ buyer: AddressLike,
455
+ seller: AddressLike,
456
+ orderId: BigNumberish
457
+ ], [
458
+ string
459
+ ], "view">;
460
+ getFunction(nameOrSignature: "lockOrder"): TypedContractMethod<[
461
+ buyer: AddressLike,
462
+ orderId: BigNumberish
463
+ ], [
464
+ void
465
+ ], "nonpayable">;
466
+ getFunction(nameOrSignature: "orders"): TypedContractMethod<[
467
+ arg0: BytesLike
468
+ ], [
469
+ [
470
+ string,
471
+ string,
472
+ bigint,
473
+ bigint,
474
+ string,
475
+ bigint,
476
+ bigint
477
+ ] & {
478
+ buyer: string;
479
+ seller: string;
480
+ amount: bigint;
481
+ lockedUntil: bigint;
482
+ token: string;
483
+ status: bigint;
484
+ previousStatus: bigint;
485
+ }
486
+ ], "view">;
487
+ getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
488
+ getFunction(nameOrSignature: "removeSupportedToken"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
489
+ getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
490
+ getFunction(nameOrSignature: "sellerRefund"): TypedContractMethod<[
491
+ buyer: AddressLike,
492
+ orderId: BigNumberish
493
+ ], [
494
+ void
495
+ ], "nonpayable">;
496
+ getFunction(nameOrSignature: "sellerRelease"): TypedContractMethod<[
497
+ buyer: AddressLike,
498
+ orderId: BigNumberish
499
+ ], [
500
+ void
501
+ ], "nonpayable">;
502
+ getFunction(nameOrSignature: "setArbitrationPending"): TypedContractMethod<[
503
+ buyer: AddressLike,
504
+ seller: AddressLike,
505
+ orderId: BigNumberish
506
+ ], [
507
+ void
508
+ ], "nonpayable">;
509
+ getFunction(nameOrSignature: "setArbitrator"): TypedContractMethod<[newArbitrator: AddressLike], [void], "nonpayable">;
510
+ getFunction(nameOrSignature: "setFeeRecipient"): TypedContractMethod<[newRecipient: AddressLike], [void], "nonpayable">;
511
+ getFunction(nameOrSignature: "supportedTokens"): TypedContractMethod<[arg0: AddressLike], [boolean], "view">;
512
+ getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
513
+ getEvent(key: "ArbitrationCancelled"): TypedContractEvent<ArbitrationCancelledEvent.InputTuple, ArbitrationCancelledEvent.OutputTuple, ArbitrationCancelledEvent.OutputObject>;
514
+ getEvent(key: "ArbitrationPendingSet"): TypedContractEvent<ArbitrationPendingSetEvent.InputTuple, ArbitrationPendingSetEvent.OutputTuple, ArbitrationPendingSetEvent.OutputObject>;
515
+ getEvent(key: "ArbitrationResolved"): TypedContractEvent<ArbitrationResolvedEvent.InputTuple, ArbitrationResolvedEvent.OutputTuple, ArbitrationResolvedEvent.OutputObject>;
516
+ getEvent(key: "ArbitratorUpdated"): TypedContractEvent<ArbitratorUpdatedEvent.InputTuple, ArbitratorUpdatedEvent.OutputTuple, ArbitratorUpdatedEvent.OutputObject>;
517
+ getEvent(key: "BuyerWithdrawn"): TypedContractEvent<BuyerWithdrawnEvent.InputTuple, BuyerWithdrawnEvent.OutputTuple, BuyerWithdrawnEvent.OutputObject>;
518
+ getEvent(key: "FeeRecipientUpdated"): TypedContractEvent<FeeRecipientUpdatedEvent.InputTuple, FeeRecipientUpdatedEvent.OutputTuple, FeeRecipientUpdatedEvent.OutputObject>;
519
+ getEvent(key: "OrderCreated"): TypedContractEvent<OrderCreatedEvent.InputTuple, OrderCreatedEvent.OutputTuple, OrderCreatedEvent.OutputObject>;
520
+ getEvent(key: "OrderLocked"): TypedContractEvent<OrderLockedEvent.InputTuple, OrderLockedEvent.OutputTuple, OrderLockedEvent.OutputObject>;
521
+ getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
522
+ getEvent(key: "SellerRefunded"): TypedContractEvent<SellerRefundedEvent.InputTuple, SellerRefundedEvent.OutputTuple, SellerRefundedEvent.OutputObject>;
523
+ getEvent(key: "SellerReleased"): TypedContractEvent<SellerReleasedEvent.InputTuple, SellerReleasedEvent.OutputTuple, SellerReleasedEvent.OutputObject>;
524
+ getEvent(key: "SupportedTokenAdded"): TypedContractEvent<SupportedTokenAddedEvent.InputTuple, SupportedTokenAddedEvent.OutputTuple, SupportedTokenAddedEvent.OutputObject>;
525
+ getEvent(key: "SupportedTokenRemoved"): TypedContractEvent<SupportedTokenRemovedEvent.InputTuple, SupportedTokenRemovedEvent.OutputTuple, SupportedTokenRemovedEvent.OutputObject>;
526
+ filters: {
527
+ "ArbitrationCancelled(bytes32,uint8)": TypedContractEvent<ArbitrationCancelledEvent.InputTuple, ArbitrationCancelledEvent.OutputTuple, ArbitrationCancelledEvent.OutputObject>;
528
+ ArbitrationCancelled: TypedContractEvent<ArbitrationCancelledEvent.InputTuple, ArbitrationCancelledEvent.OutputTuple, ArbitrationCancelledEvent.OutputObject>;
529
+ "ArbitrationPendingSet(bytes32)": TypedContractEvent<ArbitrationPendingSetEvent.InputTuple, ArbitrationPendingSetEvent.OutputTuple, ArbitrationPendingSetEvent.OutputObject>;
530
+ ArbitrationPendingSet: TypedContractEvent<ArbitrationPendingSetEvent.InputTuple, ArbitrationPendingSetEvent.OutputTuple, ArbitrationPendingSetEvent.OutputObject>;
531
+ "ArbitrationResolved(bytes32,bool,uint256,uint256)": TypedContractEvent<ArbitrationResolvedEvent.InputTuple, ArbitrationResolvedEvent.OutputTuple, ArbitrationResolvedEvent.OutputObject>;
532
+ ArbitrationResolved: TypedContractEvent<ArbitrationResolvedEvent.InputTuple, ArbitrationResolvedEvent.OutputTuple, ArbitrationResolvedEvent.OutputObject>;
533
+ "ArbitratorUpdated(address)": TypedContractEvent<ArbitratorUpdatedEvent.InputTuple, ArbitratorUpdatedEvent.OutputTuple, ArbitratorUpdatedEvent.OutputObject>;
534
+ ArbitratorUpdated: TypedContractEvent<ArbitratorUpdatedEvent.InputTuple, ArbitratorUpdatedEvent.OutputTuple, ArbitratorUpdatedEvent.OutputObject>;
535
+ "BuyerWithdrawn(bytes32)": TypedContractEvent<BuyerWithdrawnEvent.InputTuple, BuyerWithdrawnEvent.OutputTuple, BuyerWithdrawnEvent.OutputObject>;
536
+ BuyerWithdrawn: TypedContractEvent<BuyerWithdrawnEvent.InputTuple, BuyerWithdrawnEvent.OutputTuple, BuyerWithdrawnEvent.OutputObject>;
537
+ "FeeRecipientUpdated(address)": TypedContractEvent<FeeRecipientUpdatedEvent.InputTuple, FeeRecipientUpdatedEvent.OutputTuple, FeeRecipientUpdatedEvent.OutputObject>;
538
+ FeeRecipientUpdated: TypedContractEvent<FeeRecipientUpdatedEvent.InputTuple, FeeRecipientUpdatedEvent.OutputTuple, FeeRecipientUpdatedEvent.OutputObject>;
539
+ "OrderCreated(bytes32,address,address,uint256,address,uint256)": TypedContractEvent<OrderCreatedEvent.InputTuple, OrderCreatedEvent.OutputTuple, OrderCreatedEvent.OutputObject>;
540
+ OrderCreated: TypedContractEvent<OrderCreatedEvent.InputTuple, OrderCreatedEvent.OutputTuple, OrderCreatedEvent.OutputObject>;
541
+ "OrderLocked(bytes32,uint256)": TypedContractEvent<OrderLockedEvent.InputTuple, OrderLockedEvent.OutputTuple, OrderLockedEvent.OutputObject>;
542
+ OrderLocked: TypedContractEvent<OrderLockedEvent.InputTuple, OrderLockedEvent.OutputTuple, OrderLockedEvent.OutputObject>;
543
+ "OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
544
+ OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
545
+ "SellerRefunded(bytes32)": TypedContractEvent<SellerRefundedEvent.InputTuple, SellerRefundedEvent.OutputTuple, SellerRefundedEvent.OutputObject>;
546
+ SellerRefunded: TypedContractEvent<SellerRefundedEvent.InputTuple, SellerRefundedEvent.OutputTuple, SellerRefundedEvent.OutputObject>;
547
+ "SellerReleased(bytes32,uint256,uint256)": TypedContractEvent<SellerReleasedEvent.InputTuple, SellerReleasedEvent.OutputTuple, SellerReleasedEvent.OutputObject>;
548
+ SellerReleased: TypedContractEvent<SellerReleasedEvent.InputTuple, SellerReleasedEvent.OutputTuple, SellerReleasedEvent.OutputObject>;
549
+ "SupportedTokenAdded(address)": TypedContractEvent<SupportedTokenAddedEvent.InputTuple, SupportedTokenAddedEvent.OutputTuple, SupportedTokenAddedEvent.OutputObject>;
550
+ SupportedTokenAdded: TypedContractEvent<SupportedTokenAddedEvent.InputTuple, SupportedTokenAddedEvent.OutputTuple, SupportedTokenAddedEvent.OutputObject>;
551
+ "SupportedTokenRemoved(address)": TypedContractEvent<SupportedTokenRemovedEvent.InputTuple, SupportedTokenRemovedEvent.OutputTuple, SupportedTokenRemovedEvent.OutputObject>;
552
+ SupportedTokenRemoved: TypedContractEvent<SupportedTokenRemovedEvent.InputTuple, SupportedTokenRemovedEvent.OutputTuple, SupportedTokenRemovedEvent.OutputObject>;
553
+ };
554
+ }
555
+ //# sourceMappingURL=P2PEscrow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"P2PEscrow.d.ts","sourceRoot":"","sources":["../../../typechain-types/contracts/P2PEscrow.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=P2PEscrow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"P2PEscrow.js","sourceRoot":"","sources":["../../../typechain-types/contracts/P2PEscrow.ts"],"names":[],"mappings":""}