@super-protocol/sdk-js 2.2.0-beta.90 → 2.2.0-beta.92
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 +40 -0
- package/dist/cjs/contracts/abi.js +53 -1
- package/dist/cjs/models/TeeOffer.d.ts +11 -1
- package/dist/cjs/models/TeeOffer.js +46 -11
- package/dist/cjs/staticModels/TeeOffers.js +5 -7
- package/dist/cjs/types/Offer.d.ts +7 -0
- package/dist/cjs/types/Offer.js +10 -2
- package/dist/cjs/types/TeeOfferInfo.d.ts +2 -0
- package/dist/mjs/contracts/abi.d.ts +40 -0
- package/dist/mjs/contracts/abi.js +53 -1
- package/dist/mjs/models/TeeOffer.d.ts +11 -1
- package/dist/mjs/models/TeeOffer.js +41 -6
- package/dist/mjs/staticModels/TeeOffers.js +5 -7
- package/dist/mjs/types/Offer.d.ts +7 -0
- package/dist/mjs/types/Offer.js +9 -1
- package/dist/mjs/types/TeeOfferInfo.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1555,6 +1555,10 @@ export declare const abi: readonly [{
|
|
|
1555
1555
|
readonly internalType: "bool";
|
|
1556
1556
|
readonly name: "enabled";
|
|
1557
1557
|
readonly type: "bool";
|
|
1558
|
+
}, {
|
|
1559
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1560
|
+
readonly name: "subtype";
|
|
1561
|
+
readonly type: "uint8";
|
|
1558
1562
|
}];
|
|
1559
1563
|
readonly name: "createTeeOffer";
|
|
1560
1564
|
readonly outputs: readonly [];
|
|
@@ -1842,6 +1846,20 @@ export declare const abi: readonly [{
|
|
|
1842
1846
|
readonly outputs: readonly [];
|
|
1843
1847
|
readonly stateMutability: "nonpayable";
|
|
1844
1848
|
readonly type: "function";
|
|
1849
|
+
}, {
|
|
1850
|
+
readonly inputs: readonly [{
|
|
1851
|
+
readonly internalType: "uint256";
|
|
1852
|
+
readonly name: "offerId";
|
|
1853
|
+
readonly type: "uint256";
|
|
1854
|
+
}, {
|
|
1855
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
1856
|
+
readonly name: "newSubtype";
|
|
1857
|
+
readonly type: "uint8";
|
|
1858
|
+
}];
|
|
1859
|
+
readonly name: "setTeeOfferSubtype";
|
|
1860
|
+
readonly outputs: readonly [];
|
|
1861
|
+
readonly stateMutability: "nonpayable";
|
|
1862
|
+
readonly type: "function";
|
|
1845
1863
|
}, {
|
|
1846
1864
|
readonly inputs: readonly [{
|
|
1847
1865
|
readonly internalType: "uint256";
|
|
@@ -1993,6 +2011,10 @@ export declare const abi: readonly [{
|
|
|
1993
2011
|
readonly internalType: "bool";
|
|
1994
2012
|
readonly name: "enabled";
|
|
1995
2013
|
readonly type: "bool";
|
|
2014
|
+
}, {
|
|
2015
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2016
|
+
readonly name: "subtype";
|
|
2017
|
+
readonly type: "uint8";
|
|
1996
2018
|
}];
|
|
1997
2019
|
readonly internalType: "struct TeeOfferData[]";
|
|
1998
2020
|
readonly name: "";
|
|
@@ -2367,6 +2389,10 @@ export declare const abi: readonly [{
|
|
|
2367
2389
|
readonly internalType: "bool";
|
|
2368
2390
|
readonly name: "enabled";
|
|
2369
2391
|
readonly type: "bool";
|
|
2392
|
+
}, {
|
|
2393
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2394
|
+
readonly name: "subtype";
|
|
2395
|
+
readonly type: "uint8";
|
|
2370
2396
|
}];
|
|
2371
2397
|
readonly internalType: "struct TeeOfferData";
|
|
2372
2398
|
readonly name: "ret";
|
|
@@ -2418,6 +2444,20 @@ export declare const abi: readonly [{
|
|
|
2418
2444
|
}];
|
|
2419
2445
|
readonly stateMutability: "view";
|
|
2420
2446
|
readonly type: "function";
|
|
2447
|
+
}, {
|
|
2448
|
+
readonly inputs: readonly [{
|
|
2449
|
+
readonly internalType: "uint256";
|
|
2450
|
+
readonly name: "offerId";
|
|
2451
|
+
readonly type: "uint256";
|
|
2452
|
+
}];
|
|
2453
|
+
readonly name: "getTeeOfferSubtype";
|
|
2454
|
+
readonly outputs: readonly [{
|
|
2455
|
+
readonly internalType: "enum TeeOfferSubtype";
|
|
2456
|
+
readonly name: "";
|
|
2457
|
+
readonly type: "uint8";
|
|
2458
|
+
}];
|
|
2459
|
+
readonly stateMutability: "view";
|
|
2460
|
+
readonly type: "function";
|
|
2421
2461
|
}, {
|
|
2422
2462
|
readonly inputs: readonly [{
|
|
2423
2463
|
readonly internalType: "uint256";
|