@coti-io/coti-contracts 1.0.9 → 1.1.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.
- package/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract.sol +260 -0
- package/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract.sol +264 -0
- package/contracts/mocks/utils/mpc/Bitwise128BitTestsContract.sol +91 -0
- package/contracts/mocks/utils/mpc/Bitwise256BitTestsContract.sol +91 -0
- package/contracts/mocks/utils/mpc/Comparison128BitTestsContract.sol +158 -0
- package/contracts/mocks/utils/mpc/Comparison256BitTestsContract.sol +158 -0
- package/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract.sol +185 -0
- package/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract.sol +190 -0
- package/contracts/utils/mpc/MpcCore.sol +2804 -180
- package/package.json +1 -1
- package/test/token/PrivateERC20/PrivateERC20.test.ts +3 -3
- package/test/utils/mpc/Unsigned128BitIntegers.test.ts +945 -0
- package/test/utils/mpc/Unsigned256BitIntegers.test.ts +1124 -0
- package/test/utils/mpc/helpers.ts +77 -0
- package/typechain-types/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract.ts +341 -0
- package/typechain-types/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract.ts +347 -0
- package/typechain-types/contracts/mocks/utils/mpc/Bitwise128BitTestsContract.ts +186 -0
- package/typechain-types/contracts/mocks/utils/mpc/Bitwise256BitTestsContract.ts +186 -0
- package/typechain-types/contracts/mocks/utils/mpc/Comparison128BitTestsContract.ts +260 -0
- package/typechain-types/contracts/mocks/utils/mpc/Comparison256BitTestsContract.ts +260 -0
- package/typechain-types/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract.ts +302 -0
- package/typechain-types/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract.ts +322 -0
- package/typechain-types/contracts/mocks/utils/mpc/index.ts +8 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract__factory.ts +349 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract__factory.ts +364 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise128BitTestsContract__factory.ts +182 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Bitwise256BitTestsContract__factory.ts +182 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison128BitTestsContract__factory.ts +255 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Comparison256BitTestsContract__factory.ts +255 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract__factory.ts +332 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract__factory.ts +380 -0
- package/typechain-types/factories/contracts/mocks/utils/mpc/index.ts +8 -0
- package/typechain-types/hardhat.d.ts +144 -0
- package/typechain-types/index.ts +16 -0
- package/contracts/package.json +0 -11
|
@@ -53,10 +53,26 @@ declare module "hardhat/types/runtime" {
|
|
|
53
53
|
name: "PrivateERC721URIStorageMock",
|
|
54
54
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
55
55
|
): Promise<Contracts.PrivateERC721URIStorageMock__factory>;
|
|
56
|
+
getContractFactory(
|
|
57
|
+
name: "Arithmetic128BitTestsContract",
|
|
58
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
59
|
+
): Promise<Contracts.Arithmetic128BitTestsContract__factory>;
|
|
60
|
+
getContractFactory(
|
|
61
|
+
name: "Arithmetic256BitTestsContract",
|
|
62
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
63
|
+
): Promise<Contracts.Arithmetic256BitTestsContract__factory>;
|
|
56
64
|
getContractFactory(
|
|
57
65
|
name: "ArithmeticTestsContract",
|
|
58
66
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
59
67
|
): Promise<Contracts.ArithmeticTestsContract__factory>;
|
|
68
|
+
getContractFactory(
|
|
69
|
+
name: "Bitwise128BitTestsContract",
|
|
70
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
71
|
+
): Promise<Contracts.Bitwise128BitTestsContract__factory>;
|
|
72
|
+
getContractFactory(
|
|
73
|
+
name: "Bitwise256BitTestsContract",
|
|
74
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
75
|
+
): Promise<Contracts.Bitwise256BitTestsContract__factory>;
|
|
60
76
|
getContractFactory(
|
|
61
77
|
name: "BitwiseTestsContract",
|
|
62
78
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -65,10 +81,18 @@ declare module "hardhat/types/runtime" {
|
|
|
65
81
|
name: "CheckedArithmeticWithOverflowBitTestsContract",
|
|
66
82
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
67
83
|
): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract__factory>;
|
|
84
|
+
getContractFactory(
|
|
85
|
+
name: "Comparison128BitTestsContract",
|
|
86
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
87
|
+
): Promise<Contracts.Comparison128BitTestsContract__factory>;
|
|
68
88
|
getContractFactory(
|
|
69
89
|
name: "Comparison1TestsContract",
|
|
70
90
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
71
91
|
): Promise<Contracts.Comparison1TestsContract__factory>;
|
|
92
|
+
getContractFactory(
|
|
93
|
+
name: "Comparison256BitTestsContract",
|
|
94
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
95
|
+
): Promise<Contracts.Comparison256BitTestsContract__factory>;
|
|
72
96
|
getContractFactory(
|
|
73
97
|
name: "Comparison2TestsContract",
|
|
74
98
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -77,10 +101,18 @@ declare module "hardhat/types/runtime" {
|
|
|
77
101
|
name: "MinMaxTestsContract",
|
|
78
102
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
79
103
|
): Promise<Contracts.MinMaxTestsContract__factory>;
|
|
104
|
+
getContractFactory(
|
|
105
|
+
name: "Miscellaneous128BitTestsContract",
|
|
106
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
107
|
+
): Promise<Contracts.Miscellaneous128BitTestsContract__factory>;
|
|
80
108
|
getContractFactory(
|
|
81
109
|
name: "Miscellaneous1TestsContract",
|
|
82
110
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
83
111
|
): Promise<Contracts.Miscellaneous1TestsContract__factory>;
|
|
112
|
+
getContractFactory(
|
|
113
|
+
name: "Miscellaneous256BitTestsContract",
|
|
114
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
115
|
+
): Promise<Contracts.Miscellaneous256BitTestsContract__factory>;
|
|
84
116
|
getContractFactory(
|
|
85
117
|
name: "MiscellaneousTestsContract",
|
|
86
118
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -220,11 +252,31 @@ declare module "hardhat/types/runtime" {
|
|
|
220
252
|
address: string | ethers.Addressable,
|
|
221
253
|
signer?: ethers.Signer
|
|
222
254
|
): Promise<Contracts.PrivateERC721URIStorageMock>;
|
|
255
|
+
getContractAt(
|
|
256
|
+
name: "Arithmetic128BitTestsContract",
|
|
257
|
+
address: string | ethers.Addressable,
|
|
258
|
+
signer?: ethers.Signer
|
|
259
|
+
): Promise<Contracts.Arithmetic128BitTestsContract>;
|
|
260
|
+
getContractAt(
|
|
261
|
+
name: "Arithmetic256BitTestsContract",
|
|
262
|
+
address: string | ethers.Addressable,
|
|
263
|
+
signer?: ethers.Signer
|
|
264
|
+
): Promise<Contracts.Arithmetic256BitTestsContract>;
|
|
223
265
|
getContractAt(
|
|
224
266
|
name: "ArithmeticTestsContract",
|
|
225
267
|
address: string | ethers.Addressable,
|
|
226
268
|
signer?: ethers.Signer
|
|
227
269
|
): Promise<Contracts.ArithmeticTestsContract>;
|
|
270
|
+
getContractAt(
|
|
271
|
+
name: "Bitwise128BitTestsContract",
|
|
272
|
+
address: string | ethers.Addressable,
|
|
273
|
+
signer?: ethers.Signer
|
|
274
|
+
): Promise<Contracts.Bitwise128BitTestsContract>;
|
|
275
|
+
getContractAt(
|
|
276
|
+
name: "Bitwise256BitTestsContract",
|
|
277
|
+
address: string | ethers.Addressable,
|
|
278
|
+
signer?: ethers.Signer
|
|
279
|
+
): Promise<Contracts.Bitwise256BitTestsContract>;
|
|
228
280
|
getContractAt(
|
|
229
281
|
name: "BitwiseTestsContract",
|
|
230
282
|
address: string | ethers.Addressable,
|
|
@@ -235,11 +287,21 @@ declare module "hardhat/types/runtime" {
|
|
|
235
287
|
address: string | ethers.Addressable,
|
|
236
288
|
signer?: ethers.Signer
|
|
237
289
|
): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
|
|
290
|
+
getContractAt(
|
|
291
|
+
name: "Comparison128BitTestsContract",
|
|
292
|
+
address: string | ethers.Addressable,
|
|
293
|
+
signer?: ethers.Signer
|
|
294
|
+
): Promise<Contracts.Comparison128BitTestsContract>;
|
|
238
295
|
getContractAt(
|
|
239
296
|
name: "Comparison1TestsContract",
|
|
240
297
|
address: string | ethers.Addressable,
|
|
241
298
|
signer?: ethers.Signer
|
|
242
299
|
): Promise<Contracts.Comparison1TestsContract>;
|
|
300
|
+
getContractAt(
|
|
301
|
+
name: "Comparison256BitTestsContract",
|
|
302
|
+
address: string | ethers.Addressable,
|
|
303
|
+
signer?: ethers.Signer
|
|
304
|
+
): Promise<Contracts.Comparison256BitTestsContract>;
|
|
243
305
|
getContractAt(
|
|
244
306
|
name: "Comparison2TestsContract",
|
|
245
307
|
address: string | ethers.Addressable,
|
|
@@ -250,11 +312,21 @@ declare module "hardhat/types/runtime" {
|
|
|
250
312
|
address: string | ethers.Addressable,
|
|
251
313
|
signer?: ethers.Signer
|
|
252
314
|
): Promise<Contracts.MinMaxTestsContract>;
|
|
315
|
+
getContractAt(
|
|
316
|
+
name: "Miscellaneous128BitTestsContract",
|
|
317
|
+
address: string | ethers.Addressable,
|
|
318
|
+
signer?: ethers.Signer
|
|
319
|
+
): Promise<Contracts.Miscellaneous128BitTestsContract>;
|
|
253
320
|
getContractAt(
|
|
254
321
|
name: "Miscellaneous1TestsContract",
|
|
255
322
|
address: string | ethers.Addressable,
|
|
256
323
|
signer?: ethers.Signer
|
|
257
324
|
): Promise<Contracts.Miscellaneous1TestsContract>;
|
|
325
|
+
getContractAt(
|
|
326
|
+
name: "Miscellaneous256BitTestsContract",
|
|
327
|
+
address: string | ethers.Addressable,
|
|
328
|
+
signer?: ethers.Signer
|
|
329
|
+
): Promise<Contracts.Miscellaneous256BitTestsContract>;
|
|
258
330
|
getContractAt(
|
|
259
331
|
name: "MiscellaneousTestsContract",
|
|
260
332
|
address: string | ethers.Addressable,
|
|
@@ -406,10 +478,26 @@ declare module "hardhat/types/runtime" {
|
|
|
406
478
|
name: "PrivateERC721URIStorageMock",
|
|
407
479
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
408
480
|
): Promise<Contracts.PrivateERC721URIStorageMock>;
|
|
481
|
+
deployContract(
|
|
482
|
+
name: "Arithmetic128BitTestsContract",
|
|
483
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
484
|
+
): Promise<Contracts.Arithmetic128BitTestsContract>;
|
|
485
|
+
deployContract(
|
|
486
|
+
name: "Arithmetic256BitTestsContract",
|
|
487
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
488
|
+
): Promise<Contracts.Arithmetic256BitTestsContract>;
|
|
409
489
|
deployContract(
|
|
410
490
|
name: "ArithmeticTestsContract",
|
|
411
491
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
412
492
|
): Promise<Contracts.ArithmeticTestsContract>;
|
|
493
|
+
deployContract(
|
|
494
|
+
name: "Bitwise128BitTestsContract",
|
|
495
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
496
|
+
): Promise<Contracts.Bitwise128BitTestsContract>;
|
|
497
|
+
deployContract(
|
|
498
|
+
name: "Bitwise256BitTestsContract",
|
|
499
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
500
|
+
): Promise<Contracts.Bitwise256BitTestsContract>;
|
|
413
501
|
deployContract(
|
|
414
502
|
name: "BitwiseTestsContract",
|
|
415
503
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
@@ -418,10 +506,18 @@ declare module "hardhat/types/runtime" {
|
|
|
418
506
|
name: "CheckedArithmeticWithOverflowBitTestsContract",
|
|
419
507
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
420
508
|
): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
|
|
509
|
+
deployContract(
|
|
510
|
+
name: "Comparison128BitTestsContract",
|
|
511
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
512
|
+
): Promise<Contracts.Comparison128BitTestsContract>;
|
|
421
513
|
deployContract(
|
|
422
514
|
name: "Comparison1TestsContract",
|
|
423
515
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
424
516
|
): Promise<Contracts.Comparison1TestsContract>;
|
|
517
|
+
deployContract(
|
|
518
|
+
name: "Comparison256BitTestsContract",
|
|
519
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
520
|
+
): Promise<Contracts.Comparison256BitTestsContract>;
|
|
425
521
|
deployContract(
|
|
426
522
|
name: "Comparison2TestsContract",
|
|
427
523
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
@@ -430,10 +526,18 @@ declare module "hardhat/types/runtime" {
|
|
|
430
526
|
name: "MinMaxTestsContract",
|
|
431
527
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
432
528
|
): Promise<Contracts.MinMaxTestsContract>;
|
|
529
|
+
deployContract(
|
|
530
|
+
name: "Miscellaneous128BitTestsContract",
|
|
531
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
532
|
+
): Promise<Contracts.Miscellaneous128BitTestsContract>;
|
|
433
533
|
deployContract(
|
|
434
534
|
name: "Miscellaneous1TestsContract",
|
|
435
535
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
436
536
|
): Promise<Contracts.Miscellaneous1TestsContract>;
|
|
537
|
+
deployContract(
|
|
538
|
+
name: "Miscellaneous256BitTestsContract",
|
|
539
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
540
|
+
): Promise<Contracts.Miscellaneous256BitTestsContract>;
|
|
437
541
|
deployContract(
|
|
438
542
|
name: "MiscellaneousTestsContract",
|
|
439
543
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
@@ -573,11 +677,31 @@ declare module "hardhat/types/runtime" {
|
|
|
573
677
|
args: any[],
|
|
574
678
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
575
679
|
): Promise<Contracts.PrivateERC721URIStorageMock>;
|
|
680
|
+
deployContract(
|
|
681
|
+
name: "Arithmetic128BitTestsContract",
|
|
682
|
+
args: any[],
|
|
683
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
684
|
+
): Promise<Contracts.Arithmetic128BitTestsContract>;
|
|
685
|
+
deployContract(
|
|
686
|
+
name: "Arithmetic256BitTestsContract",
|
|
687
|
+
args: any[],
|
|
688
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
689
|
+
): Promise<Contracts.Arithmetic256BitTestsContract>;
|
|
576
690
|
deployContract(
|
|
577
691
|
name: "ArithmeticTestsContract",
|
|
578
692
|
args: any[],
|
|
579
693
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
580
694
|
): Promise<Contracts.ArithmeticTestsContract>;
|
|
695
|
+
deployContract(
|
|
696
|
+
name: "Bitwise128BitTestsContract",
|
|
697
|
+
args: any[],
|
|
698
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
699
|
+
): Promise<Contracts.Bitwise128BitTestsContract>;
|
|
700
|
+
deployContract(
|
|
701
|
+
name: "Bitwise256BitTestsContract",
|
|
702
|
+
args: any[],
|
|
703
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
704
|
+
): Promise<Contracts.Bitwise256BitTestsContract>;
|
|
581
705
|
deployContract(
|
|
582
706
|
name: "BitwiseTestsContract",
|
|
583
707
|
args: any[],
|
|
@@ -588,11 +712,21 @@ declare module "hardhat/types/runtime" {
|
|
|
588
712
|
args: any[],
|
|
589
713
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
590
714
|
): Promise<Contracts.CheckedArithmeticWithOverflowBitTestsContract>;
|
|
715
|
+
deployContract(
|
|
716
|
+
name: "Comparison128BitTestsContract",
|
|
717
|
+
args: any[],
|
|
718
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
719
|
+
): Promise<Contracts.Comparison128BitTestsContract>;
|
|
591
720
|
deployContract(
|
|
592
721
|
name: "Comparison1TestsContract",
|
|
593
722
|
args: any[],
|
|
594
723
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
595
724
|
): Promise<Contracts.Comparison1TestsContract>;
|
|
725
|
+
deployContract(
|
|
726
|
+
name: "Comparison256BitTestsContract",
|
|
727
|
+
args: any[],
|
|
728
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
729
|
+
): Promise<Contracts.Comparison256BitTestsContract>;
|
|
596
730
|
deployContract(
|
|
597
731
|
name: "Comparison2TestsContract",
|
|
598
732
|
args: any[],
|
|
@@ -603,11 +737,21 @@ declare module "hardhat/types/runtime" {
|
|
|
603
737
|
args: any[],
|
|
604
738
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
605
739
|
): Promise<Contracts.MinMaxTestsContract>;
|
|
740
|
+
deployContract(
|
|
741
|
+
name: "Miscellaneous128BitTestsContract",
|
|
742
|
+
args: any[],
|
|
743
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
744
|
+
): Promise<Contracts.Miscellaneous128BitTestsContract>;
|
|
606
745
|
deployContract(
|
|
607
746
|
name: "Miscellaneous1TestsContract",
|
|
608
747
|
args: any[],
|
|
609
748
|
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
610
749
|
): Promise<Contracts.Miscellaneous1TestsContract>;
|
|
750
|
+
deployContract(
|
|
751
|
+
name: "Miscellaneous256BitTestsContract",
|
|
752
|
+
args: any[],
|
|
753
|
+
signerOrOptions?: ethers.Signer | DeployContractOptions
|
|
754
|
+
): Promise<Contracts.Miscellaneous256BitTestsContract>;
|
|
611
755
|
deployContract(
|
|
612
756
|
name: "MiscellaneousTestsContract",
|
|
613
757
|
args: any[],
|
package/typechain-types/index.ts
CHANGED
|
@@ -26,20 +26,36 @@ export type { PrivateERC20Mock } from "./contracts/mocks/token/PrivateERC20/Priv
|
|
|
26
26
|
export { PrivateERC20Mock__factory } from "./factories/contracts/mocks/token/PrivateERC20/PrivateERC20Mock__factory";
|
|
27
27
|
export type { PrivateERC721URIStorageMock } from "./contracts/mocks/token/PrivateERC721/PrivateERC721URIStorageMock";
|
|
28
28
|
export { PrivateERC721URIStorageMock__factory } from "./factories/contracts/mocks/token/PrivateERC721/PrivateERC721URIStorageMock__factory";
|
|
29
|
+
export type { Arithmetic128BitTestsContract } from "./contracts/mocks/utils/mpc/Arithmetic128BitTestsContract";
|
|
30
|
+
export { Arithmetic128BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Arithmetic128BitTestsContract__factory";
|
|
31
|
+
export type { Arithmetic256BitTestsContract } from "./contracts/mocks/utils/mpc/Arithmetic256BitTestsContract";
|
|
32
|
+
export { Arithmetic256BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Arithmetic256BitTestsContract__factory";
|
|
29
33
|
export type { ArithmeticTestsContract } from "./contracts/mocks/utils/mpc/ArithmeticTestsContract";
|
|
30
34
|
export { ArithmeticTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/ArithmeticTestsContract__factory";
|
|
35
|
+
export type { Bitwise128BitTestsContract } from "./contracts/mocks/utils/mpc/Bitwise128BitTestsContract";
|
|
36
|
+
export { Bitwise128BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Bitwise128BitTestsContract__factory";
|
|
37
|
+
export type { Bitwise256BitTestsContract } from "./contracts/mocks/utils/mpc/Bitwise256BitTestsContract";
|
|
38
|
+
export { Bitwise256BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Bitwise256BitTestsContract__factory";
|
|
31
39
|
export type { BitwiseTestsContract } from "./contracts/mocks/utils/mpc/BitwiseTestsContract";
|
|
32
40
|
export { BitwiseTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/BitwiseTestsContract__factory";
|
|
33
41
|
export type { CheckedArithmeticWithOverflowBitTestsContract } from "./contracts/mocks/utils/mpc/CheckedArithmeticWIthOverflowBitTestsContract.sol/CheckedArithmeticWithOverflowBitTestsContract";
|
|
34
42
|
export { CheckedArithmeticWithOverflowBitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/CheckedArithmeticWIthOverflowBitTestsContract.sol/CheckedArithmeticWithOverflowBitTestsContract__factory";
|
|
43
|
+
export type { Comparison128BitTestsContract } from "./contracts/mocks/utils/mpc/Comparison128BitTestsContract";
|
|
44
|
+
export { Comparison128BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Comparison128BitTestsContract__factory";
|
|
35
45
|
export type { Comparison1TestsContract } from "./contracts/mocks/utils/mpc/Comparison1TestsContract";
|
|
36
46
|
export { Comparison1TestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Comparison1TestsContract__factory";
|
|
47
|
+
export type { Comparison256BitTestsContract } from "./contracts/mocks/utils/mpc/Comparison256BitTestsContract";
|
|
48
|
+
export { Comparison256BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Comparison256BitTestsContract__factory";
|
|
37
49
|
export type { Comparison2TestsContract } from "./contracts/mocks/utils/mpc/Comparison2TestsContract";
|
|
38
50
|
export { Comparison2TestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Comparison2TestsContract__factory";
|
|
39
51
|
export type { MinMaxTestsContract } from "./contracts/mocks/utils/mpc/MinMaxTestsContract";
|
|
40
52
|
export { MinMaxTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/MinMaxTestsContract__factory";
|
|
53
|
+
export type { Miscellaneous128BitTestsContract } from "./contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract";
|
|
54
|
+
export { Miscellaneous128BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Miscellaneous128BitTestsContract__factory";
|
|
41
55
|
export type { Miscellaneous1TestsContract } from "./contracts/mocks/utils/mpc/Miscellaneous1TestsContract";
|
|
42
56
|
export { Miscellaneous1TestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Miscellaneous1TestsContract__factory";
|
|
57
|
+
export type { Miscellaneous256BitTestsContract } from "./contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract";
|
|
58
|
+
export { Miscellaneous256BitTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/Miscellaneous256BitTestsContract__factory";
|
|
43
59
|
export type { MiscellaneousTestsContract } from "./contracts/mocks/utils/mpc/MiscellaneousTestsContract";
|
|
44
60
|
export { MiscellaneousTestsContract__factory } from "./factories/contracts/mocks/utils/mpc/MiscellaneousTestsContract__factory";
|
|
45
61
|
export type { OffboardToUserKeyTestContract } from "./contracts/mocks/utils/mpc/OffboardToUserKeyTestContract";
|