@super-protocol/sdk-js 2.2.0-beta.79 → 2.2.0-beta.80
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/cjs/contracts/abi.d.ts +76 -0
- package/dist/cjs/contracts/abi.js +98 -1
- package/dist/cjs/staticModels/OfferResources.d.ts +1 -0
- package/dist/cjs/staticModels/OfferResources.js +11 -1
- package/dist/cjs/utils/helpers/OrderArgsHelper.d.ts +12 -1
- package/dist/cjs/utils/helpers/OrderArgsHelper.js +55 -1
- package/dist/mjs/contracts/abi.d.ts +76 -0
- package/dist/mjs/contracts/abi.js +98 -1
- package/dist/mjs/staticModels/OfferResources.d.ts +1 -0
- package/dist/mjs/staticModels/OfferResources.js +11 -1
- package/dist/mjs/utils/helpers/OrderArgsHelper.d.ts +12 -1
- package/dist/mjs/utils/helpers/OrderArgsHelper.js +55 -1
- package/package.json +2 -2
|
@@ -7517,6 +7517,82 @@ export declare const abi: readonly [{
|
|
|
7517
7517
|
readonly internalType: "struct OfferResource";
|
|
7518
7518
|
readonly name: "resource";
|
|
7519
7519
|
readonly type: "tuple";
|
|
7520
|
+
}, {
|
|
7521
|
+
readonly internalType: "uint32";
|
|
7522
|
+
readonly name: "n";
|
|
7523
|
+
readonly type: "uint32";
|
|
7524
|
+
}];
|
|
7525
|
+
readonly name: "incrementReplicationFactor";
|
|
7526
|
+
readonly outputs: readonly [];
|
|
7527
|
+
readonly stateMutability: "nonpayable";
|
|
7528
|
+
readonly type: "function";
|
|
7529
|
+
}, {
|
|
7530
|
+
readonly inputs: readonly [{
|
|
7531
|
+
readonly components: readonly [{
|
|
7532
|
+
readonly internalType: "uint256";
|
|
7533
|
+
readonly name: "offerId";
|
|
7534
|
+
readonly type: "uint256";
|
|
7535
|
+
}, {
|
|
7536
|
+
readonly internalType: "uint256";
|
|
7537
|
+
readonly name: "teeOfferIssuerId";
|
|
7538
|
+
readonly type: "uint256";
|
|
7539
|
+
}, {
|
|
7540
|
+
readonly internalType: "uint256";
|
|
7541
|
+
readonly name: "teeOfferKeeperId";
|
|
7542
|
+
readonly type: "uint256";
|
|
7543
|
+
}, {
|
|
7544
|
+
readonly internalType: "uint256";
|
|
7545
|
+
readonly name: "storageOrderId";
|
|
7546
|
+
readonly type: "uint256";
|
|
7547
|
+
}, {
|
|
7548
|
+
readonly internalType: "uint64";
|
|
7549
|
+
readonly name: "offerVersion";
|
|
7550
|
+
readonly type: "uint64";
|
|
7551
|
+
}, {
|
|
7552
|
+
readonly internalType: "uint32";
|
|
7553
|
+
readonly name: "timestamp";
|
|
7554
|
+
readonly type: "uint32";
|
|
7555
|
+
}, {
|
|
7556
|
+
readonly internalType: "uint32";
|
|
7557
|
+
readonly name: "signedTime";
|
|
7558
|
+
readonly type: "uint32";
|
|
7559
|
+
}, {
|
|
7560
|
+
readonly components: readonly [{
|
|
7561
|
+
readonly internalType: "string";
|
|
7562
|
+
readonly name: "der";
|
|
7563
|
+
readonly type: "string";
|
|
7564
|
+
}, {
|
|
7565
|
+
readonly internalType: "bytes32";
|
|
7566
|
+
readonly name: "r";
|
|
7567
|
+
readonly type: "bytes32";
|
|
7568
|
+
}, {
|
|
7569
|
+
readonly internalType: "bytes32";
|
|
7570
|
+
readonly name: "s";
|
|
7571
|
+
readonly type: "bytes32";
|
|
7572
|
+
}, {
|
|
7573
|
+
readonly internalType: "uint8";
|
|
7574
|
+
readonly name: "v";
|
|
7575
|
+
readonly type: "uint8";
|
|
7576
|
+
}];
|
|
7577
|
+
readonly internalType: "struct Signature";
|
|
7578
|
+
readonly name: "signature";
|
|
7579
|
+
readonly type: "tuple";
|
|
7580
|
+
}, {
|
|
7581
|
+
readonly internalType: "string";
|
|
7582
|
+
readonly name: "signedEncryptedData";
|
|
7583
|
+
readonly type: "string";
|
|
7584
|
+
}, {
|
|
7585
|
+
readonly internalType: "enum OfferType";
|
|
7586
|
+
readonly name: "offerType";
|
|
7587
|
+
readonly type: "uint8";
|
|
7588
|
+
}, {
|
|
7589
|
+
readonly internalType: "string";
|
|
7590
|
+
readonly name: "solutionHash";
|
|
7591
|
+
readonly type: "string";
|
|
7592
|
+
}];
|
|
7593
|
+
readonly internalType: "struct OfferResource";
|
|
7594
|
+
readonly name: "resource";
|
|
7595
|
+
readonly type: "tuple";
|
|
7520
7596
|
}];
|
|
7521
7597
|
readonly name: "setOfferResource";
|
|
7522
7598
|
readonly outputs: readonly [];
|