@super-protocol/sdk-js 1.0.1-beta.17 → 1.0.1-beta.19
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/build/contracts/abi.d.ts +14 -0
- package/build/contracts/abi.js +12769 -2
- package/build/models/Order.d.ts +4 -0
- package/build/models/Order.js +15 -1
- package/build/utils/NonceTracker.d.ts +1 -1
- package/build/utils/NonceTracker.js +3 -2
- package/build/utils/TxManager.js +2 -2
- package/package.json +1 -1
package/build/contracts/abi.d.ts
CHANGED
|
@@ -3945,6 +3945,20 @@ export declare const abi: readonly [{
|
|
|
3945
3945
|
}];
|
|
3946
3946
|
readonly stateMutability: "view";
|
|
3947
3947
|
readonly type: "function";
|
|
3948
|
+
}, {
|
|
3949
|
+
readonly inputs: readonly [{
|
|
3950
|
+
readonly internalType: "uint256";
|
|
3951
|
+
readonly name: "orderId";
|
|
3952
|
+
readonly type: "uint256";
|
|
3953
|
+
}];
|
|
3954
|
+
readonly name: "calculateOrderTime";
|
|
3955
|
+
readonly outputs: readonly [{
|
|
3956
|
+
readonly internalType: "uint256";
|
|
3957
|
+
readonly name: "";
|
|
3958
|
+
readonly type: "uint256";
|
|
3959
|
+
}];
|
|
3960
|
+
readonly stateMutability: "view";
|
|
3961
|
+
readonly type: "function";
|
|
3948
3962
|
}, {
|
|
3949
3963
|
readonly inputs: readonly [{
|
|
3950
3964
|
readonly internalType: "uint256";
|