@typus/typus-perp-sdk 1.0.31 → 1.0.33
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/src/api/sentio.js +13 -4
- package/dist/src/index.js +17 -17
- package/dist/src/typus_perp/admin/structs.d.ts +5 -5
- package/dist/src/typus_perp/escrow/structs.d.ts +1 -1
- package/dist/src/typus_perp/lp-pool/structs.d.ts +28 -28
- package/dist/src/typus_perp/position/structs.d.ts +6 -6
- package/dist/src/typus_perp/symbol/structs.d.ts +1 -1
- package/dist/src/typus_perp/tlp/structs.d.ts +2 -2
- package/dist/src/typus_perp/trading/structs.d.ts +30 -30
- package/dist/src/typus_perp/treasury-caps/structs.d.ts +1 -1
- package/dist/src/typus_stake_pool/admin/structs.d.ts +4 -4
- package/dist/src/typus_stake_pool/stake-pool/structs.d.ts +22 -22
- package/package.json +2 -2
package/dist/src/api/sentio.js
CHANGED
|
@@ -39,6 +39,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39
39
|
exports.getFromSentio = getFromSentio;
|
|
40
40
|
exports.getTlpAPRFromSentio = getTlpAPRFromSentio;
|
|
41
41
|
exports.getVolumeFromSentio = getVolumeFromSentio;
|
|
42
|
+
var src_1 = require("../../src");
|
|
42
43
|
var headers = {
|
|
43
44
|
"api-key": "vQCQ6ZvvFesph3Q8usDLKfc7Wx2D8AX5M",
|
|
44
45
|
"Content-Type": "application/json",
|
|
@@ -49,7 +50,9 @@ function getFromSentio(event, userAddress, startTimestamp) {
|
|
|
49
50
|
return __generator(this, function (_a) {
|
|
50
51
|
switch (_a.label) {
|
|
51
52
|
case 0:
|
|
52
|
-
apiUrl =
|
|
53
|
+
apiUrl = src_1.NETWORK == "MAINNET"
|
|
54
|
+
? "https://app.sentio.xyz/api/v1/analytics/typus/typus_perp_mainnet/sql/execute"
|
|
55
|
+
: "https://app.sentio.xyz/api/v1/analytics/typus/typus_perp/sql/execute";
|
|
53
56
|
requestData = {
|
|
54
57
|
sqlQuery: {
|
|
55
58
|
sql: "\n SELECT *\n FROM ".concat(event, "\n WHERE distinct_id = '").concat(userAddress, "' AND timestamp >= ").concat(startTimestamp, "\n ORDER BY timestamp DESC;\n "),
|
|
@@ -79,7 +82,9 @@ function getTlpAPRFromSentio() {
|
|
|
79
82
|
return __generator(this, function (_a) {
|
|
80
83
|
switch (_a.label) {
|
|
81
84
|
case 0:
|
|
82
|
-
apiUrl =
|
|
85
|
+
apiUrl = src_1.NETWORK == "MAINNET"
|
|
86
|
+
? "https://app.sentio.xyz/api/v1/insights/typus/typus_perp_mainnet/query"
|
|
87
|
+
: "https://app.sentio.xyz/api/v1/insights/typus/typus_perp/query";
|
|
83
88
|
requestData = {
|
|
84
89
|
timeRange: {
|
|
85
90
|
start: "now-7d",
|
|
@@ -115,11 +120,12 @@ function getTlpAPRFromSentio() {
|
|
|
115
120
|
return [4 /*yield*/, response.json()];
|
|
116
121
|
case 2:
|
|
117
122
|
data = _a.sent();
|
|
123
|
+
console.log(data);
|
|
118
124
|
first = data.results[0].matrix.samples[0].values[0];
|
|
119
125
|
last = data.results[0].matrix.samples[0].values.at(-1);
|
|
120
126
|
r = last.value / first.value - 1;
|
|
121
127
|
apr = (365 / 7) * r;
|
|
122
|
-
|
|
128
|
+
console.log(apr);
|
|
123
129
|
return [2 /*return*/, apr];
|
|
124
130
|
}
|
|
125
131
|
});
|
|
@@ -131,7 +137,9 @@ function getVolumeFromSentio() {
|
|
|
131
137
|
return __generator(this, function (_a) {
|
|
132
138
|
switch (_a.label) {
|
|
133
139
|
case 0:
|
|
134
|
-
apiUrl =
|
|
140
|
+
apiUrl = src_1.NETWORK == "MAINNET"
|
|
141
|
+
? "https://app.sentio.xyz/api/v1/insights/typus/typus_perp_mainnet/query"
|
|
142
|
+
: "https://app.sentio.xyz/api/v1/insights/typus/typus_perp/query";
|
|
135
143
|
requestData = {
|
|
136
144
|
timeRange: {
|
|
137
145
|
start: "now-3d",
|
|
@@ -183,3 +191,4 @@ function getVolumeFromSentio() {
|
|
|
183
191
|
});
|
|
184
192
|
});
|
|
185
193
|
}
|
|
194
|
+
getTlpAPRFromSentio();
|
package/dist/src/index.js
CHANGED
|
@@ -27,57 +27,57 @@ exports.NETWORK = process.env.NEXT_PUBLIC_CLUSTER == "mainnet" ? "MAINNET" : "TE
|
|
|
27
27
|
console.log("Load .env NEXT_PUBLIC_CLUSTER: ".concat(process.env.NEXT_PUBLIC_CLUSTER));
|
|
28
28
|
console.log("Initializing Typus Perp SDK for ".concat(exports.NETWORK));
|
|
29
29
|
exports.PERP_PACKAGE_ID = exports.NETWORK == "MAINNET"
|
|
30
|
-
? "
|
|
30
|
+
? "0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5"
|
|
31
31
|
: "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600";
|
|
32
32
|
exports.PERP_PUBLISHED_AT = exports.NETWORK == "MAINNET"
|
|
33
|
-
? "
|
|
33
|
+
? "0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5"
|
|
34
34
|
: "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600";
|
|
35
35
|
exports.PERP_PKG_V1 = exports.NETWORK == "MAINNET"
|
|
36
|
-
? "
|
|
36
|
+
? "0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5"
|
|
37
37
|
: "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600";
|
|
38
38
|
exports.STAKE_PACKAGE_ID = exports.NETWORK == "MAINNET"
|
|
39
|
-
? "
|
|
39
|
+
? "0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966"
|
|
40
40
|
: "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2";
|
|
41
41
|
exports.STAKE_PUBLISHED_AT = exports.NETWORK == "MAINNET"
|
|
42
|
-
? "
|
|
42
|
+
? "0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966"
|
|
43
43
|
: "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2";
|
|
44
44
|
exports.STAKE_PKG_V1 = exports.NETWORK == "MAINNET"
|
|
45
|
-
? "
|
|
45
|
+
? "0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966"
|
|
46
46
|
: "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2";
|
|
47
47
|
// Registry
|
|
48
48
|
exports.LP_POOL = exports.NETWORK == "MAINNET"
|
|
49
|
-
? "
|
|
49
|
+
? "0xfee68e535bf24702be28fa38ea2d5946e617e0035027d5ca29dbed99efd82aaa"
|
|
50
50
|
: "0xdfd138d539ecfd3b57286e20e5b9fff6c3fcd7986651567591245ba4c87ca6b5";
|
|
51
51
|
exports.LIQUIDITY_POOL = exports.NETWORK == "MAINNET"
|
|
52
|
-
? "
|
|
52
|
+
? "0x9973b7dd68ab8ba18702d913191a4c62c597847d9cd9f0b5bd97f1b938fc9a0a"
|
|
53
53
|
: "0x8e4ad806781a50b0bed6011e97d48cc07ef23f2f6d95fd021e8625ffc1ee44f8";
|
|
54
54
|
exports.LIQUIDITY_POOL_0 = exports.NETWORK == "MAINNET"
|
|
55
|
-
? "
|
|
55
|
+
? "0x98110aae0ffaf294259066380a2d35aba74e42860f1e87ee9c201f471eb3ba03"
|
|
56
56
|
: "0x952fadd71b6ada8fc2e9aacc2e9de2dd3dade9813427af6a3c42a5926e371f04";
|
|
57
57
|
// MarketRegistry
|
|
58
58
|
exports.MARKET = exports.NETWORK == "MAINNET"
|
|
59
|
-
? "
|
|
59
|
+
? "0xc969d946a2b6b917a83b5fb71765793c4a52149e50d2c8cf5c01d7421fc7cd73"
|
|
60
60
|
: "0x819ad73d991f69640e553048a343b3ddade3c1f807581166c40bb49fa5ae1ded";
|
|
61
61
|
exports.PERP_VERSION = exports.NETWORK == "MAINNET"
|
|
62
|
-
? "
|
|
62
|
+
? "0xa12c282a068328833ec4a9109fc77803ec1f523f8da1bb0f82bac8450335f0c9"
|
|
63
63
|
: "0x26acf84bc93db806e435da1223e9e6add249724495c4103a08296d1b67d1edfc";
|
|
64
64
|
// LpRegistry
|
|
65
65
|
exports.TLP = exports.NETWORK == "MAINNET"
|
|
66
|
-
? "
|
|
66
|
+
? "0xc0a8cc0201d202321cd40b3f19fcf4cc88d6b63ceac0de55b08a2ab16f8a721e"
|
|
67
67
|
: "0x42096762e1dd5721621c4104c167569e6afb0586ba92a7f92d834062dd38d7e7";
|
|
68
68
|
exports.TLP_TOKEN = exports.NETWORK == "MAINNET"
|
|
69
|
-
? "
|
|
69
|
+
? "0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::tlp::TLP"
|
|
70
70
|
: "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::tlp::TLP";
|
|
71
71
|
exports.TLP_TREASURY_CAP = exports.NETWORK == "MAINNET"
|
|
72
|
-
? "
|
|
72
|
+
? "0x77c75fb1d78cca25b5e2d69decfe2837abf95c4ef44b809868e6ca20f42b63bc"
|
|
73
73
|
: "0xb180a31c9335d0fb9b7f59b5aa9f0fef7e09292bb0edab9af587f9aa0f411b04";
|
|
74
74
|
// StakePoolRegistry
|
|
75
75
|
exports.STAKE_POOL = exports.NETWORK == "MAINNET"
|
|
76
|
-
? "
|
|
76
|
+
? "0x2cdf93717f87a8a7aeb98b27777b3b643f0ae2b277f44e6bcda0fc655a47d3e0"
|
|
77
77
|
: "0xcd9b35eca5209f8abe8bd9f57b5a6cdda033cc21c3e6663418d40b38681f1d34";
|
|
78
78
|
exports.STAKE_POOL_0 = exports.NETWORK == "MAINNET"
|
|
79
|
-
? "
|
|
79
|
+
? "0x5c984987380805fbaaf78f41d8ff1973807b6c85176aa87cf5a58518e0a87418"
|
|
80
80
|
: "0x29f3c845641a256d13a68c8613836b13aab5bd6ed6c5542e97d8098bec40e09f";
|
|
81
81
|
exports.STAKE_POOL_VERSION = exports.NETWORK == "MAINNET"
|
|
82
|
-
? "
|
|
82
|
+
? "0xdf3ed1599218b2415b2cd7fa06296f7f647676019b2873ec18e55a626c584f1b"
|
|
83
83
|
: "0xf9c29dd67d8e6a145671a8cf34681d7445b85cbf79b2f204d80af230fc7e8b50";
|
|
@@ -28,7 +28,7 @@ export declare class FeeInfo implements StructClass {
|
|
|
28
28
|
static reified(): FeeInfoReified;
|
|
29
29
|
static get r(): reified.StructClassReified<FeeInfo, FeeInfoFields>;
|
|
30
30
|
static phantom(): PhantomReified<ToTypeStr<FeeInfo>>;
|
|
31
|
-
static get p(): reified.PhantomReified<"
|
|
31
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::admin::FeeInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::admin::FeeInfo">;
|
|
32
32
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
33
33
|
token: {
|
|
34
34
|
name: {
|
|
@@ -90,7 +90,7 @@ export declare class FeePool implements StructClass {
|
|
|
90
90
|
static reified(): FeePoolReified;
|
|
91
91
|
static get r(): reified.StructClassReified<FeePool, FeePoolFields>;
|
|
92
92
|
static phantom(): PhantomReified<ToTypeStr<FeePool>>;
|
|
93
|
-
static get p(): reified.PhantomReified<"
|
|
93
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::admin::FeePool" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::admin::FeePool">;
|
|
94
94
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
95
95
|
id: {
|
|
96
96
|
id: {
|
|
@@ -174,7 +174,7 @@ export declare class ProtocolFeeEvent implements StructClass {
|
|
|
174
174
|
static reified(): ProtocolFeeEventReified;
|
|
175
175
|
static get r(): reified.StructClassReified<ProtocolFeeEvent, ProtocolFeeEventFields>;
|
|
176
176
|
static phantom(): PhantomReified<ToTypeStr<ProtocolFeeEvent>>;
|
|
177
|
-
static get p(): reified.PhantomReified<"
|
|
177
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::admin::ProtocolFeeEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::admin::ProtocolFeeEvent">;
|
|
178
178
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
179
179
|
token: {
|
|
180
180
|
name: {
|
|
@@ -236,7 +236,7 @@ export declare class SendFeeEvent implements StructClass {
|
|
|
236
236
|
static reified(): SendFeeEventReified;
|
|
237
237
|
static get r(): reified.StructClassReified<SendFeeEvent, SendFeeEventFields>;
|
|
238
238
|
static phantom(): PhantomReified<ToTypeStr<SendFeeEvent>>;
|
|
239
|
-
static get p(): reified.PhantomReified<"
|
|
239
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::admin::SendFeeEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::admin::SendFeeEvent">;
|
|
240
240
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
241
241
|
token: {
|
|
242
242
|
name: {
|
|
@@ -306,7 +306,7 @@ export declare class Version implements StructClass {
|
|
|
306
306
|
static reified(): VersionReified;
|
|
307
307
|
static get r(): reified.StructClassReified<Version, VersionFields>;
|
|
308
308
|
static phantom(): PhantomReified<ToTypeStr<Version>>;
|
|
309
|
-
static get p(): reified.PhantomReified<"
|
|
309
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::admin::Version" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::admin::Version">;
|
|
310
310
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
311
311
|
id: {
|
|
312
312
|
id: {
|
|
@@ -45,7 +45,7 @@ export declare class UnsettledBidReceipt implements StructClass {
|
|
|
45
45
|
static reified(): UnsettledBidReceiptReified;
|
|
46
46
|
static get r(): reified.StructClassReified<UnsettledBidReceipt, UnsettledBidReceiptFields>;
|
|
47
47
|
static phantom(): PhantomReified<ToTypeStr<UnsettledBidReceipt>>;
|
|
48
|
-
static get p(): reified.PhantomReified<"
|
|
48
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::escrow::UnsettledBidReceipt" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::escrow::UnsettledBidReceipt">;
|
|
49
49
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
50
50
|
receipt: {
|
|
51
51
|
id: {
|
|
@@ -36,7 +36,7 @@ export declare class AddLiquidityTokenEvent implements StructClass {
|
|
|
36
36
|
static reified(): AddLiquidityTokenEventReified;
|
|
37
37
|
static get r(): reified.StructClassReified<AddLiquidityTokenEvent, AddLiquidityTokenEventFields>;
|
|
38
38
|
static phantom(): PhantomReified<ToTypeStr<AddLiquidityTokenEvent>>;
|
|
39
|
-
static get p(): reified.PhantomReified<"
|
|
39
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::AddLiquidityTokenEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::AddLiquidityTokenEvent">;
|
|
40
40
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
41
41
|
sender: string;
|
|
42
42
|
index: string;
|
|
@@ -296,7 +296,7 @@ export declare class BurnLpEvent implements StructClass {
|
|
|
296
296
|
static reified(): BurnLpEventReified;
|
|
297
297
|
static get r(): reified.StructClassReified<BurnLpEvent, BurnLpEventFields>;
|
|
298
298
|
static phantom(): PhantomReified<ToTypeStr<BurnLpEvent>>;
|
|
299
|
-
static get p(): reified.PhantomReified<"
|
|
299
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::BurnLpEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::BurnLpEvent">;
|
|
300
300
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
301
301
|
sender: string;
|
|
302
302
|
index: string;
|
|
@@ -408,7 +408,7 @@ export declare class CompleteRemoveLiquidityTokenProcessEvent implements StructC
|
|
|
408
408
|
static reified(): CompleteRemoveLiquidityTokenProcessEventReified;
|
|
409
409
|
static get r(): reified.StructClassReified<CompleteRemoveLiquidityTokenProcessEvent, CompleteRemoveLiquidityTokenProcessEventFields>;
|
|
410
410
|
static phantom(): PhantomReified<ToTypeStr<CompleteRemoveLiquidityTokenProcessEvent>>;
|
|
411
|
-
static get p(): reified.PhantomReified<"
|
|
411
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::CompleteRemoveLiquidityTokenProcessEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::CompleteRemoveLiquidityTokenProcessEvent">;
|
|
412
412
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
413
413
|
index: string;
|
|
414
414
|
liquidity_token: {
|
|
@@ -490,7 +490,7 @@ export declare class Config implements StructClass {
|
|
|
490
490
|
static reified(): ConfigReified;
|
|
491
491
|
static get r(): reified.StructClassReified<Config, ConfigFields>;
|
|
492
492
|
static phantom(): PhantomReified<ToTypeStr<Config>>;
|
|
493
|
-
static get p(): reified.PhantomReified<"
|
|
493
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::Config" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::Config">;
|
|
494
494
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
495
495
|
oracle_id: string;
|
|
496
496
|
liquidity_token_decimal: string;
|
|
@@ -656,7 +656,7 @@ export declare class DepositLendingEvent implements StructClass {
|
|
|
656
656
|
static reified(): DepositLendingEventReified;
|
|
657
657
|
static get r(): reified.StructClassReified<DepositLendingEvent, DepositLendingEventFields>;
|
|
658
658
|
static phantom(): PhantomReified<ToTypeStr<DepositLendingEvent>>;
|
|
659
|
-
static get p(): reified.PhantomReified<"
|
|
659
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::DepositLendingEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::DepositLendingEvent">;
|
|
660
660
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
661
661
|
index: string;
|
|
662
662
|
lending_index: string;
|
|
@@ -766,7 +766,7 @@ export declare class LiquidityPool implements StructClass {
|
|
|
766
766
|
static reified(): LiquidityPoolReified;
|
|
767
767
|
static get r(): reified.StructClassReified<LiquidityPool, LiquidityPoolFields>;
|
|
768
768
|
static phantom(): PhantomReified<ToTypeStr<LiquidityPool>>;
|
|
769
|
-
static get p(): reified.PhantomReified<"
|
|
769
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::LiquidityPool" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::LiquidityPool">;
|
|
770
770
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
771
771
|
id: {
|
|
772
772
|
id: {
|
|
@@ -1218,7 +1218,7 @@ export declare class LiquidityPoolInfo implements StructClass {
|
|
|
1218
1218
|
static reified(): LiquidityPoolInfoReified;
|
|
1219
1219
|
static get r(): reified.StructClassReified<LiquidityPoolInfo, LiquidityPoolInfoFields>;
|
|
1220
1220
|
static phantom(): PhantomReified<ToTypeStr<LiquidityPoolInfo>>;
|
|
1221
|
-
static get p(): reified.PhantomReified<"
|
|
1221
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::LiquidityPoolInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::LiquidityPoolInfo">;
|
|
1222
1222
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1223
1223
|
lp_token_decimal: string;
|
|
1224
1224
|
total_share_supply: string;
|
|
@@ -1284,7 +1284,7 @@ export declare class ManagerFlashRemoveLiquidityEvent implements StructClass {
|
|
|
1284
1284
|
static reified(): ManagerFlashRemoveLiquidityEventReified;
|
|
1285
1285
|
static get r(): reified.StructClassReified<ManagerFlashRemoveLiquidityEvent, ManagerFlashRemoveLiquidityEventFields>;
|
|
1286
1286
|
static phantom(): PhantomReified<ToTypeStr<ManagerFlashRemoveLiquidityEvent>>;
|
|
1287
|
-
static get p(): reified.PhantomReified<"
|
|
1287
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::ManagerFlashRemoveLiquidityEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::ManagerFlashRemoveLiquidityEvent">;
|
|
1288
1288
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1289
1289
|
index: string;
|
|
1290
1290
|
liquidity_token: {
|
|
@@ -1378,7 +1378,7 @@ export declare class ManagerFlashRepayLiquidityEvent implements StructClass {
|
|
|
1378
1378
|
static reified(): ManagerFlashRepayLiquidityEventReified;
|
|
1379
1379
|
static get r(): reified.StructClassReified<ManagerFlashRepayLiquidityEvent, ManagerFlashRepayLiquidityEventFields>;
|
|
1380
1380
|
static phantom(): PhantomReified<ToTypeStr<ManagerFlashRepayLiquidityEvent>>;
|
|
1381
|
-
static get p(): reified.PhantomReified<"
|
|
1381
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::ManagerFlashRepayLiquidityEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::ManagerFlashRepayLiquidityEvent">;
|
|
1382
1382
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1383
1383
|
index: string;
|
|
1384
1384
|
liquidity_token: {
|
|
@@ -1474,7 +1474,7 @@ export declare class MarginConfig implements StructClass {
|
|
|
1474
1474
|
static reified(): MarginConfigReified;
|
|
1475
1475
|
static get r(): reified.StructClassReified<MarginConfig, MarginConfigFields>;
|
|
1476
1476
|
static phantom(): PhantomReified<ToTypeStr<MarginConfig>>;
|
|
1477
|
-
static get p(): reified.PhantomReified<"
|
|
1477
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::MarginConfig" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::MarginConfig">;
|
|
1478
1478
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1479
1479
|
basic_borrow_rate_0: string;
|
|
1480
1480
|
basic_borrow_rate_1: string;
|
|
@@ -1562,7 +1562,7 @@ export declare class MintLpEvent implements StructClass {
|
|
|
1562
1562
|
static reified(): MintLpEventReified;
|
|
1563
1563
|
static get r(): reified.StructClassReified<MintLpEvent, MintLpEventFields>;
|
|
1564
1564
|
static phantom(): PhantomReified<ToTypeStr<MintLpEvent>>;
|
|
1565
|
-
static get p(): reified.PhantomReified<"
|
|
1565
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::MintLpEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::MintLpEvent">;
|
|
1566
1566
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1567
1567
|
sender: string;
|
|
1568
1568
|
index: string;
|
|
@@ -1674,7 +1674,7 @@ export declare class NewLiquidityPoolEvent implements StructClass {
|
|
|
1674
1674
|
static reified(): NewLiquidityPoolEventReified;
|
|
1675
1675
|
static get r(): reified.StructClassReified<NewLiquidityPoolEvent, NewLiquidityPoolEventFields>;
|
|
1676
1676
|
static phantom(): PhantomReified<ToTypeStr<NewLiquidityPoolEvent>>;
|
|
1677
|
-
static get p(): reified.PhantomReified<"
|
|
1677
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::NewLiquidityPoolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::NewLiquidityPoolEvent">;
|
|
1678
1678
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1679
1679
|
sender: string;
|
|
1680
1680
|
index: string;
|
|
@@ -1752,7 +1752,7 @@ export declare class Registry implements StructClass {
|
|
|
1752
1752
|
static reified(): RegistryReified;
|
|
1753
1753
|
static get r(): reified.StructClassReified<Registry, RegistryFields>;
|
|
1754
1754
|
static phantom(): PhantomReified<ToTypeStr<Registry>>;
|
|
1755
|
-
static get p(): reified.PhantomReified<"
|
|
1755
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::Registry" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::Registry">;
|
|
1756
1756
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1757
1757
|
id: {
|
|
1758
1758
|
id: {
|
|
@@ -1830,7 +1830,7 @@ export declare class RemoveLiquidityTokenProcess implements StructClass {
|
|
|
1830
1830
|
static reified(): RemoveLiquidityTokenProcessReified;
|
|
1831
1831
|
static get r(): reified.StructClassReified<RemoveLiquidityTokenProcess, RemoveLiquidityTokenProcessFields>;
|
|
1832
1832
|
static phantom(): PhantomReified<ToTypeStr<RemoveLiquidityTokenProcess>>;
|
|
1833
|
-
static get p(): reified.PhantomReified<"
|
|
1833
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::RemoveLiquidityTokenProcess" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::RemoveLiquidityTokenProcess">;
|
|
1834
1834
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1835
1835
|
liquidity_token: {
|
|
1836
1836
|
name: {
|
|
@@ -1946,7 +1946,7 @@ export declare class ResumePoolEvent implements StructClass {
|
|
|
1946
1946
|
static reified(): ResumePoolEventReified;
|
|
1947
1947
|
static get r(): reified.StructClassReified<ResumePoolEvent, ResumePoolEventFields>;
|
|
1948
1948
|
static phantom(): PhantomReified<ToTypeStr<ResumePoolEvent>>;
|
|
1949
|
-
static get p(): reified.PhantomReified<"
|
|
1949
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::ResumePoolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::ResumePoolEvent">;
|
|
1950
1950
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1951
1951
|
sender: string;
|
|
1952
1952
|
index: string;
|
|
@@ -2004,7 +2004,7 @@ export declare class ResumeTokenPoolEvent implements StructClass {
|
|
|
2004
2004
|
static reified(): ResumeTokenPoolEventReified;
|
|
2005
2005
|
static get r(): reified.StructClassReified<ResumeTokenPoolEvent, ResumeTokenPoolEventFields>;
|
|
2006
2006
|
static phantom(): PhantomReified<ToTypeStr<ResumeTokenPoolEvent>>;
|
|
2007
|
-
static get p(): reified.PhantomReified<"
|
|
2007
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::ResumeTokenPoolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::ResumeTokenPoolEvent">;
|
|
2008
2008
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2009
2009
|
sender: string;
|
|
2010
2010
|
index: string;
|
|
@@ -2094,7 +2094,7 @@ export declare class SpotConfig implements StructClass {
|
|
|
2094
2094
|
static reified(): SpotConfigReified;
|
|
2095
2095
|
static get r(): reified.StructClassReified<SpotConfig, SpotConfigFields>;
|
|
2096
2096
|
static phantom(): PhantomReified<ToTypeStr<SpotConfig>>;
|
|
2097
|
-
static get p(): reified.PhantomReified<"
|
|
2097
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::SpotConfig" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::SpotConfig">;
|
|
2098
2098
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2099
2099
|
min_deposit: string;
|
|
2100
2100
|
max_capacity: string;
|
|
@@ -2182,7 +2182,7 @@ export declare class StartRemoveLiquidityTokenProcessEvent implements StructClas
|
|
|
2182
2182
|
static reified(): StartRemoveLiquidityTokenProcessEventReified;
|
|
2183
2183
|
static get r(): reified.StructClassReified<StartRemoveLiquidityTokenProcessEvent, StartRemoveLiquidityTokenProcessEventFields>;
|
|
2184
2184
|
static phantom(): PhantomReified<ToTypeStr<StartRemoveLiquidityTokenProcessEvent>>;
|
|
2185
|
-
static get p(): reified.PhantomReified<"
|
|
2185
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::StartRemoveLiquidityTokenProcessEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::StartRemoveLiquidityTokenProcessEvent">;
|
|
2186
2186
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2187
2187
|
index: string;
|
|
2188
2188
|
liquidity_token: {
|
|
@@ -2268,7 +2268,7 @@ export declare class State implements StructClass {
|
|
|
2268
2268
|
static reified(): StateReified;
|
|
2269
2269
|
static get r(): reified.StructClassReified<State, StateFields>;
|
|
2270
2270
|
static phantom(): PhantomReified<ToTypeStr<State>>;
|
|
2271
|
-
static get p(): reified.PhantomReified<"
|
|
2271
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::State" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::State">;
|
|
2272
2272
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2273
2273
|
liquidity_amount: string;
|
|
2274
2274
|
value_in_usd: string;
|
|
@@ -2358,7 +2358,7 @@ export declare class SuspendPoolEvent implements StructClass {
|
|
|
2358
2358
|
static reified(): SuspendPoolEventReified;
|
|
2359
2359
|
static get r(): reified.StructClassReified<SuspendPoolEvent, SuspendPoolEventFields>;
|
|
2360
2360
|
static phantom(): PhantomReified<ToTypeStr<SuspendPoolEvent>>;
|
|
2361
|
-
static get p(): reified.PhantomReified<"
|
|
2361
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::SuspendPoolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::SuspendPoolEvent">;
|
|
2362
2362
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2363
2363
|
sender: string;
|
|
2364
2364
|
index: string;
|
|
@@ -2416,7 +2416,7 @@ export declare class SuspendTokenPoolEvent implements StructClass {
|
|
|
2416
2416
|
static reified(): SuspendTokenPoolEventReified;
|
|
2417
2417
|
static get r(): reified.StructClassReified<SuspendTokenPoolEvent, SuspendTokenPoolEventFields>;
|
|
2418
2418
|
static phantom(): PhantomReified<ToTypeStr<SuspendTokenPoolEvent>>;
|
|
2419
|
-
static get p(): reified.PhantomReified<"
|
|
2419
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::SuspendTokenPoolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::SuspendTokenPoolEvent">;
|
|
2420
2420
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2421
2421
|
sender: string;
|
|
2422
2422
|
index: string;
|
|
@@ -2508,7 +2508,7 @@ export declare class SwapEvent implements StructClass {
|
|
|
2508
2508
|
static reified(): SwapEventReified;
|
|
2509
2509
|
static get r(): reified.StructClassReified<SwapEvent, SwapEventFields>;
|
|
2510
2510
|
static phantom(): PhantomReified<ToTypeStr<SwapEvent>>;
|
|
2511
|
-
static get p(): reified.PhantomReified<"
|
|
2511
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::SwapEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::SwapEvent">;
|
|
2512
2512
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2513
2513
|
sender: string;
|
|
2514
2514
|
index: string;
|
|
@@ -2628,7 +2628,7 @@ export declare class TokenPool implements StructClass {
|
|
|
2628
2628
|
static reified(): TokenPoolReified;
|
|
2629
2629
|
static get r(): reified.StructClassReified<TokenPool, TokenPoolFields>;
|
|
2630
2630
|
static phantom(): PhantomReified<ToTypeStr<TokenPool>>;
|
|
2631
|
-
static get p(): reified.PhantomReified<"
|
|
2631
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::TokenPool" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::TokenPool">;
|
|
2632
2632
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2633
2633
|
token_type: {
|
|
2634
2634
|
name: {
|
|
@@ -2872,7 +2872,7 @@ export declare class UpdateBorrowInfoEvent implements StructClass {
|
|
|
2872
2872
|
static reified(): UpdateBorrowInfoEventReified;
|
|
2873
2873
|
static get r(): reified.StructClassReified<UpdateBorrowInfoEvent, UpdateBorrowInfoEventFields>;
|
|
2874
2874
|
static phantom(): PhantomReified<ToTypeStr<UpdateBorrowInfoEvent>>;
|
|
2875
|
-
static get p(): reified.PhantomReified<"
|
|
2875
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::UpdateBorrowInfoEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::UpdateBorrowInfoEvent">;
|
|
2876
2876
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2877
2877
|
index: string;
|
|
2878
2878
|
liquidity_token_type: {
|
|
@@ -2970,7 +2970,7 @@ export declare class UpdateLiquidityValueEvent implements StructClass {
|
|
|
2970
2970
|
static reified(): UpdateLiquidityValueEventReified;
|
|
2971
2971
|
static get r(): reified.StructClassReified<UpdateLiquidityValueEvent, UpdateLiquidityValueEventFields>;
|
|
2972
2972
|
static phantom(): PhantomReified<ToTypeStr<UpdateLiquidityValueEvent>>;
|
|
2973
|
-
static get p(): reified.PhantomReified<"
|
|
2973
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::UpdateLiquidityValueEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::UpdateLiquidityValueEvent">;
|
|
2974
2974
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2975
2975
|
sender: string;
|
|
2976
2976
|
index: string;
|
|
@@ -3062,7 +3062,7 @@ export declare class UpdateMarginConfigEvent implements StructClass {
|
|
|
3062
3062
|
static reified(): UpdateMarginConfigEventReified;
|
|
3063
3063
|
static get r(): reified.StructClassReified<UpdateMarginConfigEvent, UpdateMarginConfigEventFields>;
|
|
3064
3064
|
static phantom(): PhantomReified<ToTypeStr<UpdateMarginConfigEvent>>;
|
|
3065
|
-
static get p(): reified.PhantomReified<"
|
|
3065
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::UpdateMarginConfigEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::UpdateMarginConfigEvent">;
|
|
3066
3066
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3067
3067
|
sender: string;
|
|
3068
3068
|
index: string;
|
|
@@ -3226,7 +3226,7 @@ export declare class UpdateSpotConfigEvent implements StructClass {
|
|
|
3226
3226
|
static reified(): UpdateSpotConfigEventReified;
|
|
3227
3227
|
static get r(): reified.StructClassReified<UpdateSpotConfigEvent, UpdateSpotConfigEventFields>;
|
|
3228
3228
|
static phantom(): PhantomReified<ToTypeStr<UpdateSpotConfigEvent>>;
|
|
3229
|
-
static get p(): reified.PhantomReified<"
|
|
3229
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::UpdateSpotConfigEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::UpdateSpotConfigEvent">;
|
|
3230
3230
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3231
3231
|
sender: string;
|
|
3232
3232
|
index: string;
|
|
@@ -3432,7 +3432,7 @@ export declare class WithdrawLendingEvent implements StructClass {
|
|
|
3432
3432
|
static reified(): WithdrawLendingEventReified;
|
|
3433
3433
|
static get r(): reified.StructClassReified<WithdrawLendingEvent, WithdrawLendingEventFields>;
|
|
3434
3434
|
static phantom(): PhantomReified<ToTypeStr<WithdrawLendingEvent>>;
|
|
3435
|
-
static get p(): reified.PhantomReified<"
|
|
3435
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::lp_pool::WithdrawLendingEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::lp_pool::WithdrawLendingEvent">;
|
|
3436
3436
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3437
3437
|
index: string;
|
|
3438
3438
|
lending_index: string;
|
|
@@ -31,7 +31,7 @@ export declare class OptionCollateralInfo implements StructClass {
|
|
|
31
31
|
static reified(): OptionCollateralInfoReified;
|
|
32
32
|
static get r(): reified.StructClassReified<OptionCollateralInfo, OptionCollateralInfoFields>;
|
|
33
33
|
static phantom(): PhantomReified<ToTypeStr<OptionCollateralInfo>>;
|
|
34
|
-
static get p(): reified.PhantomReified<"
|
|
34
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::OptionCollateralInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::OptionCollateralInfo">;
|
|
35
35
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
36
36
|
index: string;
|
|
37
37
|
bid_token: {
|
|
@@ -131,7 +131,7 @@ export declare class OrderFilledEvent implements StructClass {
|
|
|
131
131
|
static reified(): OrderFilledEventReified;
|
|
132
132
|
static get r(): reified.StructClassReified<OrderFilledEvent, OrderFilledEventFields>;
|
|
133
133
|
static phantom(): PhantomReified<ToTypeStr<OrderFilledEvent>>;
|
|
134
|
-
static get p(): reified.PhantomReified<"
|
|
134
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::OrderFilledEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::OrderFilledEvent">;
|
|
135
135
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
136
136
|
user: string;
|
|
137
137
|
collateral_token: {
|
|
@@ -355,7 +355,7 @@ export declare class Position implements StructClass {
|
|
|
355
355
|
static reified(): PositionReified;
|
|
356
356
|
static get r(): reified.StructClassReified<Position, PositionFields>;
|
|
357
357
|
static phantom(): PhantomReified<ToTypeStr<Position>>;
|
|
358
|
-
static get p(): reified.PhantomReified<"
|
|
358
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::Position" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::Position">;
|
|
359
359
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
360
360
|
id: {
|
|
361
361
|
id: {
|
|
@@ -597,7 +597,7 @@ export declare class RealizeFundingEvent implements StructClass {
|
|
|
597
597
|
static reified(): RealizeFundingEventReified;
|
|
598
598
|
static get r(): reified.StructClassReified<RealizeFundingEvent, RealizeFundingEventFields>;
|
|
599
599
|
static phantom(): PhantomReified<ToTypeStr<RealizeFundingEvent>>;
|
|
600
|
-
static get p(): reified.PhantomReified<"
|
|
600
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::RealizeFundingEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::RealizeFundingEvent">;
|
|
601
601
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
602
602
|
user: string;
|
|
603
603
|
collateral_token: {
|
|
@@ -739,7 +739,7 @@ export declare class RemovePositionEvent implements StructClass {
|
|
|
739
739
|
static reified(): RemovePositionEventReified;
|
|
740
740
|
static get r(): reified.StructClassReified<RemovePositionEvent, RemovePositionEventFields>;
|
|
741
741
|
static phantom(): PhantomReified<ToTypeStr<RemovePositionEvent>>;
|
|
742
|
-
static get p(): reified.PhantomReified<"
|
|
742
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::RemovePositionEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::RemovePositionEvent">;
|
|
743
743
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
744
744
|
user: string;
|
|
745
745
|
collateral_token: {
|
|
@@ -905,7 +905,7 @@ export declare class TradingOrder implements StructClass {
|
|
|
905
905
|
static reified(): TradingOrderReified;
|
|
906
906
|
static get r(): reified.StructClassReified<TradingOrder, TradingOrderFields>;
|
|
907
907
|
static phantom(): PhantomReified<ToTypeStr<TradingOrder>>;
|
|
908
|
-
static get p(): reified.PhantomReified<"
|
|
908
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::position::TradingOrder" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::position::TradingOrder">;
|
|
909
909
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
910
910
|
id: {
|
|
911
911
|
id: {
|
|
@@ -24,7 +24,7 @@ export declare class Symbol implements StructClass {
|
|
|
24
24
|
static reified(): SymbolReified;
|
|
25
25
|
static get r(): import("../../_framework/reified").StructClassReified<Symbol, SymbolFields>;
|
|
26
26
|
static phantom(): PhantomReified<ToTypeStr<Symbol>>;
|
|
27
|
-
static get p(): PhantomReified<"
|
|
27
|
+
static get p(): PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::symbol::Symbol" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::symbol::Symbol">;
|
|
28
28
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
29
29
|
base_token: {
|
|
30
30
|
name: {
|
|
@@ -22,7 +22,7 @@ export declare class LpRegistry implements StructClass {
|
|
|
22
22
|
static reified(): LpRegistryReified;
|
|
23
23
|
static get r(): import("../../_framework/reified").StructClassReified<LpRegistry, LpRegistryFields>;
|
|
24
24
|
static phantom(): PhantomReified<ToTypeStr<LpRegistry>>;
|
|
25
|
-
static get p(): PhantomReified<"
|
|
25
|
+
static get p(): PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::tlp::LpRegistry" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::tlp::LpRegistry">;
|
|
26
26
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
27
27
|
id: {
|
|
28
28
|
id: {
|
|
@@ -72,7 +72,7 @@ export declare class TLP implements StructClass {
|
|
|
72
72
|
static reified(): TLPReified;
|
|
73
73
|
static get r(): import("../../_framework/reified").StructClassReified<TLP, TLPFields>;
|
|
74
74
|
static phantom(): PhantomReified<ToTypeStr<TLP>>;
|
|
75
|
-
static get p(): PhantomReified<"
|
|
75
|
+
static get p(): PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::tlp::TLP" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::tlp::TLP">;
|
|
76
76
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
77
77
|
dummy_field: boolean;
|
|
78
78
|
}, {
|
|
@@ -37,7 +37,7 @@ export declare class AddTradingSymbolEvent implements StructClass {
|
|
|
37
37
|
static reified(): AddTradingSymbolEventReified;
|
|
38
38
|
static get r(): reified.StructClassReified<AddTradingSymbolEvent, AddTradingSymbolEventFields>;
|
|
39
39
|
static phantom(): PhantomReified<ToTypeStr<AddTradingSymbolEvent>>;
|
|
40
|
-
static get p(): reified.PhantomReified<"
|
|
40
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::AddTradingSymbolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::AddTradingSymbolEvent">;
|
|
41
41
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
42
42
|
index: string;
|
|
43
43
|
base_token_type: {
|
|
@@ -239,7 +239,7 @@ export declare class CancelTradingOrderEvent implements StructClass {
|
|
|
239
239
|
static reified(): CancelTradingOrderEventReified;
|
|
240
240
|
static get r(): reified.StructClassReified<CancelTradingOrderEvent, CancelTradingOrderEventFields>;
|
|
241
241
|
static phantom(): PhantomReified<ToTypeStr<CancelTradingOrderEvent>>;
|
|
242
|
-
static get p(): reified.PhantomReified<"
|
|
242
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::CancelTradingOrderEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::CancelTradingOrderEvent">;
|
|
243
243
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
244
244
|
user: string;
|
|
245
245
|
market_index: string;
|
|
@@ -371,7 +371,7 @@ export declare class CreateTradingOrderEvent implements StructClass {
|
|
|
371
371
|
static reified(): CreateTradingOrderEventReified;
|
|
372
372
|
static get r(): reified.StructClassReified<CreateTradingOrderEvent, CreateTradingOrderEventFields>;
|
|
373
373
|
static phantom(): PhantomReified<ToTypeStr<CreateTradingOrderEvent>>;
|
|
374
|
-
static get p(): reified.PhantomReified<"
|
|
374
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::CreateTradingOrderEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::CreateTradingOrderEvent">;
|
|
375
375
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
376
376
|
user: string;
|
|
377
377
|
market_index: string;
|
|
@@ -545,7 +545,7 @@ export declare class CreateTradingOrderWithBidReceiptsEvent implements StructCla
|
|
|
545
545
|
static reified(): CreateTradingOrderWithBidReceiptsEventReified;
|
|
546
546
|
static get r(): reified.StructClassReified<CreateTradingOrderWithBidReceiptsEvent, CreateTradingOrderWithBidReceiptsEventFields>;
|
|
547
547
|
static phantom(): PhantomReified<ToTypeStr<CreateTradingOrderWithBidReceiptsEvent>>;
|
|
548
|
-
static get p(): reified.PhantomReified<"
|
|
548
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::CreateTradingOrderWithBidReceiptsEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::CreateTradingOrderWithBidReceiptsEvent">;
|
|
549
549
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
550
550
|
user: string;
|
|
551
551
|
market_index: string;
|
|
@@ -683,7 +683,7 @@ export declare class ExpiredPositionInfo implements StructClass {
|
|
|
683
683
|
static reified(): ExpiredPositionInfoReified;
|
|
684
684
|
static get r(): reified.StructClassReified<ExpiredPositionInfo, ExpiredPositionInfoFields>;
|
|
685
685
|
static phantom(): PhantomReified<ToTypeStr<ExpiredPositionInfo>>;
|
|
686
|
-
static get p(): reified.PhantomReified<"
|
|
686
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ExpiredPositionInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ExpiredPositionInfo">;
|
|
687
687
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
688
688
|
position_id: string;
|
|
689
689
|
dov_index: string;
|
|
@@ -799,7 +799,7 @@ export declare class IncreaseCollateralEvent implements StructClass {
|
|
|
799
799
|
static reified(): IncreaseCollateralEventReified;
|
|
800
800
|
static get r(): reified.StructClassReified<IncreaseCollateralEvent, IncreaseCollateralEventFields>;
|
|
801
801
|
static phantom(): PhantomReified<ToTypeStr<IncreaseCollateralEvent>>;
|
|
802
|
-
static get p(): reified.PhantomReified<"
|
|
802
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::IncreaseCollateralEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::IncreaseCollateralEvent">;
|
|
803
803
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
804
804
|
user: string;
|
|
805
805
|
market_index: string;
|
|
@@ -919,7 +919,7 @@ export declare class LiquidateEvent implements StructClass {
|
|
|
919
919
|
static reified(): LiquidateEventReified;
|
|
920
920
|
static get r(): reified.StructClassReified<LiquidateEvent, LiquidateEventFields>;
|
|
921
921
|
static phantom(): PhantomReified<ToTypeStr<LiquidateEvent>>;
|
|
922
|
-
static get p(): reified.PhantomReified<"
|
|
922
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::LiquidateEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::LiquidateEvent">;
|
|
923
923
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
924
924
|
user: string;
|
|
925
925
|
collateral_token: {
|
|
@@ -1027,7 +1027,7 @@ export declare class LiquidationInfo implements StructClass {
|
|
|
1027
1027
|
static reified(): LiquidationInfoReified;
|
|
1028
1028
|
static get r(): reified.StructClassReified<LiquidationInfo, LiquidationInfoFields>;
|
|
1029
1029
|
static phantom(): PhantomReified<ToTypeStr<LiquidationInfo>>;
|
|
1030
|
-
static get p(): reified.PhantomReified<"
|
|
1030
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::LiquidationInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::LiquidationInfo">;
|
|
1031
1031
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1032
1032
|
position_id: string;
|
|
1033
1033
|
dov_index: {
|
|
@@ -1109,7 +1109,7 @@ export declare class ManagerCloseOptionPositionEvent implements StructClass {
|
|
|
1109
1109
|
static reified(): ManagerCloseOptionPositionEventReified;
|
|
1110
1110
|
static get r(): reified.StructClassReified<ManagerCloseOptionPositionEvent, ManagerCloseOptionPositionEventFields>;
|
|
1111
1111
|
static phantom(): PhantomReified<ToTypeStr<ManagerCloseOptionPositionEvent>>;
|
|
1112
|
-
static get p(): reified.PhantomReified<"
|
|
1112
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ManagerCloseOptionPositionEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ManagerCloseOptionPositionEvent">;
|
|
1113
1113
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1114
1114
|
user: string;
|
|
1115
1115
|
collateral_token: {
|
|
@@ -1231,7 +1231,7 @@ export declare class ManagerReducePositionEvent implements StructClass {
|
|
|
1231
1231
|
static reified(): ManagerReducePositionEventReified;
|
|
1232
1232
|
static get r(): reified.StructClassReified<ManagerReducePositionEvent, ManagerReducePositionEventFields>;
|
|
1233
1233
|
static phantom(): PhantomReified<ToTypeStr<ManagerReducePositionEvent>>;
|
|
1234
|
-
static get p(): reified.PhantomReified<"
|
|
1234
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ManagerReducePositionEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ManagerReducePositionEvent">;
|
|
1235
1235
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1236
1236
|
user: string;
|
|
1237
1237
|
collateral_token: {
|
|
@@ -1343,7 +1343,7 @@ export declare class ManagerUpdateProcessStatusAfterOrderEvent implements Struct
|
|
|
1343
1343
|
static reified(): ManagerUpdateProcessStatusAfterOrderEventReified;
|
|
1344
1344
|
static get r(): reified.StructClassReified<ManagerUpdateProcessStatusAfterOrderEvent, ManagerUpdateProcessStatusAfterOrderEventFields>;
|
|
1345
1345
|
static phantom(): PhantomReified<ToTypeStr<ManagerUpdateProcessStatusAfterOrderEvent>>;
|
|
1346
|
-
static get p(): reified.PhantomReified<"
|
|
1346
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ManagerUpdateProcessStatusAfterOrderEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ManagerUpdateProcessStatusAfterOrderEvent">;
|
|
1347
1347
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1348
1348
|
market_index: string;
|
|
1349
1349
|
pool_index: string;
|
|
@@ -1431,7 +1431,7 @@ export declare class ManagerUpdateProcessStatusAfterPositionEvent implements Str
|
|
|
1431
1431
|
static reified(): ManagerUpdateProcessStatusAfterPositionEventReified;
|
|
1432
1432
|
static get r(): reified.StructClassReified<ManagerUpdateProcessStatusAfterPositionEvent, ManagerUpdateProcessStatusAfterPositionEventFields>;
|
|
1433
1433
|
static phantom(): PhantomReified<ToTypeStr<ManagerUpdateProcessStatusAfterPositionEvent>>;
|
|
1434
|
-
static get p(): reified.PhantomReified<"
|
|
1434
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ManagerUpdateProcessStatusAfterPositionEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ManagerUpdateProcessStatusAfterPositionEvent">;
|
|
1435
1435
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1436
1436
|
market_index: string;
|
|
1437
1437
|
pool_index: string;
|
|
@@ -1531,7 +1531,7 @@ export declare class MarketConfig implements StructClass {
|
|
|
1531
1531
|
static reified(): MarketConfigReified;
|
|
1532
1532
|
static get r(): reified.StructClassReified<MarketConfig, MarketConfigFields>;
|
|
1533
1533
|
static phantom(): PhantomReified<ToTypeStr<MarketConfig>>;
|
|
1534
|
-
static get p(): reified.PhantomReified<"
|
|
1534
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::MarketConfig" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::MarketConfig">;
|
|
1535
1535
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1536
1536
|
oracle_id: string;
|
|
1537
1537
|
max_leverage_mbp: string;
|
|
@@ -1641,7 +1641,7 @@ export declare class MarketInfo implements StructClass {
|
|
|
1641
1641
|
static reified(): MarketInfoReified;
|
|
1642
1642
|
static get r(): reified.StructClassReified<MarketInfo, MarketInfoFields>;
|
|
1643
1643
|
static phantom(): PhantomReified<ToTypeStr<MarketInfo>>;
|
|
1644
|
-
static get p(): reified.PhantomReified<"
|
|
1644
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::MarketInfo" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::MarketInfo">;
|
|
1645
1645
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1646
1646
|
is_active: boolean;
|
|
1647
1647
|
size_decimal: string;
|
|
@@ -1749,7 +1749,7 @@ export declare class MarketRegistry implements StructClass {
|
|
|
1749
1749
|
static reified(): MarketRegistryReified;
|
|
1750
1750
|
static get r(): reified.StructClassReified<MarketRegistry, MarketRegistryFields>;
|
|
1751
1751
|
static phantom(): PhantomReified<ToTypeStr<MarketRegistry>>;
|
|
1752
|
-
static get p(): reified.PhantomReified<"
|
|
1752
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::MarketRegistry" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::MarketRegistry">;
|
|
1753
1753
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1754
1754
|
id: {
|
|
1755
1755
|
id: {
|
|
@@ -1893,7 +1893,7 @@ export declare class Markets implements StructClass {
|
|
|
1893
1893
|
static reified(): MarketsReified;
|
|
1894
1894
|
static get r(): reified.StructClassReified<Markets, MarketsFields>;
|
|
1895
1895
|
static phantom(): PhantomReified<ToTypeStr<Markets>>;
|
|
1896
|
-
static get p(): reified.PhantomReified<"
|
|
1896
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::Markets" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::Markets">;
|
|
1897
1897
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1898
1898
|
id: {
|
|
1899
1899
|
id: {
|
|
@@ -2047,7 +2047,7 @@ export declare class MatchTradingOrderEvent implements StructClass {
|
|
|
2047
2047
|
static reified(): MatchTradingOrderEventReified;
|
|
2048
2048
|
static get r(): reified.StructClassReified<MatchTradingOrderEvent, MatchTradingOrderEventFields>;
|
|
2049
2049
|
static phantom(): PhantomReified<ToTypeStr<MatchTradingOrderEvent>>;
|
|
2050
|
-
static get p(): reified.PhantomReified<"
|
|
2050
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::MatchTradingOrderEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::MatchTradingOrderEvent">;
|
|
2051
2051
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2052
2052
|
collateral_token: {
|
|
2053
2053
|
name: {
|
|
@@ -2141,7 +2141,7 @@ export declare class NewMarketsEvent implements StructClass {
|
|
|
2141
2141
|
static reified(): NewMarketsEventReified;
|
|
2142
2142
|
static get r(): reified.StructClassReified<NewMarketsEvent, NewMarketsEventFields>;
|
|
2143
2143
|
static phantom(): PhantomReified<ToTypeStr<NewMarketsEvent>>;
|
|
2144
|
-
static get p(): reified.PhantomReified<"
|
|
2144
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::NewMarketsEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::NewMarketsEvent">;
|
|
2145
2145
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2146
2146
|
index: string;
|
|
2147
2147
|
lp_token_type: {
|
|
@@ -2251,7 +2251,7 @@ export declare class RealizeOptionPositionEvent implements StructClass {
|
|
|
2251
2251
|
static reified(): RealizeOptionPositionEventReified;
|
|
2252
2252
|
static get r(): reified.StructClassReified<RealizeOptionPositionEvent, RealizeOptionPositionEventFields>;
|
|
2253
2253
|
static phantom(): PhantomReified<ToTypeStr<RealizeOptionPositionEvent>>;
|
|
2254
|
-
static get p(): reified.PhantomReified<"
|
|
2254
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::RealizeOptionPositionEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::RealizeOptionPositionEvent">;
|
|
2255
2255
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2256
2256
|
position_user: string;
|
|
2257
2257
|
position_id: string;
|
|
@@ -2383,7 +2383,7 @@ export declare class ReleaseCollateralEvent implements StructClass {
|
|
|
2383
2383
|
static reified(): ReleaseCollateralEventReified;
|
|
2384
2384
|
static get r(): reified.StructClassReified<ReleaseCollateralEvent, ReleaseCollateralEventFields>;
|
|
2385
2385
|
static phantom(): PhantomReified<ToTypeStr<ReleaseCollateralEvent>>;
|
|
2386
|
-
static get p(): reified.PhantomReified<"
|
|
2386
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ReleaseCollateralEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ReleaseCollateralEvent">;
|
|
2387
2387
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2388
2388
|
user: string;
|
|
2389
2389
|
market_index: string;
|
|
@@ -2489,7 +2489,7 @@ export declare class ResumeMarketEvent implements StructClass {
|
|
|
2489
2489
|
static reified(): ResumeMarketEventReified;
|
|
2490
2490
|
static get r(): reified.StructClassReified<ResumeMarketEvent, ResumeMarketEventFields>;
|
|
2491
2491
|
static phantom(): PhantomReified<ToTypeStr<ResumeMarketEvent>>;
|
|
2492
|
-
static get p(): reified.PhantomReified<"
|
|
2492
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ResumeMarketEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ResumeMarketEvent">;
|
|
2493
2493
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2494
2494
|
index: string;
|
|
2495
2495
|
u64_padding: string[];
|
|
@@ -2541,7 +2541,7 @@ export declare class ResumeTradingSymbolEvent implements StructClass {
|
|
|
2541
2541
|
static reified(): ResumeTradingSymbolEventReified;
|
|
2542
2542
|
static get r(): reified.StructClassReified<ResumeTradingSymbolEvent, ResumeTradingSymbolEventFields>;
|
|
2543
2543
|
static phantom(): PhantomReified<ToTypeStr<ResumeTradingSymbolEvent>>;
|
|
2544
|
-
static get p(): reified.PhantomReified<"
|
|
2544
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::ResumeTradingSymbolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::ResumeTradingSymbolEvent">;
|
|
2545
2545
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2546
2546
|
index: string;
|
|
2547
2547
|
resumed_base_token: {
|
|
@@ -2623,7 +2623,7 @@ export declare class SettleReceiptCollateralEvent implements StructClass {
|
|
|
2623
2623
|
static reified(): SettleReceiptCollateralEventReified;
|
|
2624
2624
|
static get r(): reified.StructClassReified<SettleReceiptCollateralEvent, SettleReceiptCollateralEventFields>;
|
|
2625
2625
|
static phantom(): PhantomReified<ToTypeStr<SettleReceiptCollateralEvent>>;
|
|
2626
|
-
static get p(): reified.PhantomReified<"
|
|
2626
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::SettleReceiptCollateralEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::SettleReceiptCollateralEvent">;
|
|
2627
2627
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2628
2628
|
user: string;
|
|
2629
2629
|
collateral_token: {
|
|
@@ -2729,7 +2729,7 @@ export declare class SuspendMarketEvent implements StructClass {
|
|
|
2729
2729
|
static reified(): SuspendMarketEventReified;
|
|
2730
2730
|
static get r(): reified.StructClassReified<SuspendMarketEvent, SuspendMarketEventFields>;
|
|
2731
2731
|
static phantom(): PhantomReified<ToTypeStr<SuspendMarketEvent>>;
|
|
2732
|
-
static get p(): reified.PhantomReified<"
|
|
2732
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::SuspendMarketEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::SuspendMarketEvent">;
|
|
2733
2733
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2734
2734
|
index: string;
|
|
2735
2735
|
u64_padding: string[];
|
|
@@ -2781,7 +2781,7 @@ export declare class SuspendTradingSymbolEvent implements StructClass {
|
|
|
2781
2781
|
static reified(): SuspendTradingSymbolEventReified;
|
|
2782
2782
|
static get r(): reified.StructClassReified<SuspendTradingSymbolEvent, SuspendTradingSymbolEventFields>;
|
|
2783
2783
|
static phantom(): PhantomReified<ToTypeStr<SuspendTradingSymbolEvent>>;
|
|
2784
|
-
static get p(): reified.PhantomReified<"
|
|
2784
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::SuspendTradingSymbolEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::SuspendTradingSymbolEvent">;
|
|
2785
2785
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2786
2786
|
index: string;
|
|
2787
2787
|
suspended_base_token: {
|
|
@@ -2857,7 +2857,7 @@ export declare class SymbolMarket implements StructClass {
|
|
|
2857
2857
|
static reified(): SymbolMarketReified;
|
|
2858
2858
|
static get r(): reified.StructClassReified<SymbolMarket, SymbolMarketFields>;
|
|
2859
2859
|
static phantom(): PhantomReified<ToTypeStr<SymbolMarket>>;
|
|
2860
|
-
static get p(): reified.PhantomReified<"
|
|
2860
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::SymbolMarket" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::SymbolMarket">;
|
|
2861
2861
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2862
2862
|
id: {
|
|
2863
2863
|
id: {
|
|
@@ -3121,7 +3121,7 @@ export declare class USD implements StructClass {
|
|
|
3121
3121
|
static reified(): USDReified;
|
|
3122
3122
|
static get r(): reified.StructClassReified<USD, USDFields>;
|
|
3123
3123
|
static phantom(): PhantomReified<ToTypeStr<USD>>;
|
|
3124
|
-
static get p(): reified.PhantomReified<"
|
|
3124
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::USD" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::USD">;
|
|
3125
3125
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3126
3126
|
dummy_field: boolean;
|
|
3127
3127
|
}, {
|
|
@@ -3177,7 +3177,7 @@ export declare class UpdateFundingRateEvent implements StructClass {
|
|
|
3177
3177
|
static reified(): UpdateFundingRateEventReified;
|
|
3178
3178
|
static get r(): reified.StructClassReified<UpdateFundingRateEvent, UpdateFundingRateEventFields>;
|
|
3179
3179
|
static phantom(): PhantomReified<ToTypeStr<UpdateFundingRateEvent>>;
|
|
3180
|
-
static get p(): reified.PhantomReified<"
|
|
3180
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::UpdateFundingRateEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::UpdateFundingRateEvent">;
|
|
3181
3181
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3182
3182
|
base_token: {
|
|
3183
3183
|
name: {
|
|
@@ -3271,7 +3271,7 @@ export declare class UpdateMarketConfigEvent implements StructClass {
|
|
|
3271
3271
|
static reified(): UpdateMarketConfigEventReified;
|
|
3272
3272
|
static get r(): reified.StructClassReified<UpdateMarketConfigEvent, UpdateMarketConfigEventFields>;
|
|
3273
3273
|
static phantom(): PhantomReified<ToTypeStr<UpdateMarketConfigEvent>>;
|
|
3274
|
-
static get p(): reified.PhantomReified<"
|
|
3274
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::UpdateMarketConfigEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::UpdateMarketConfigEvent">;
|
|
3275
3275
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3276
3276
|
index: string;
|
|
3277
3277
|
base_token_type: {
|
|
@@ -3447,7 +3447,7 @@ export declare class UpdateProtocolFeeShareBpEvent implements StructClass {
|
|
|
3447
3447
|
static reified(): UpdateProtocolFeeShareBpEventReified;
|
|
3448
3448
|
static get r(): reified.StructClassReified<UpdateProtocolFeeShareBpEvent, UpdateProtocolFeeShareBpEventFields>;
|
|
3449
3449
|
static phantom(): PhantomReified<ToTypeStr<UpdateProtocolFeeShareBpEvent>>;
|
|
3450
|
-
static get p(): reified.PhantomReified<"
|
|
3450
|
+
static get p(): reified.PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::trading::UpdateProtocolFeeShareBpEvent" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::trading::UpdateProtocolFeeShareBpEvent">;
|
|
3451
3451
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
3452
3452
|
index: string;
|
|
3453
3453
|
previous_protocol_fee_share_bp: string;
|
|
@@ -22,7 +22,7 @@ export declare class TreasuryCaps implements StructClass {
|
|
|
22
22
|
static reified(): TreasuryCapsReified;
|
|
23
23
|
static get r(): import("../../_framework/reified").StructClassReified<TreasuryCaps, TreasuryCapsFields>;
|
|
24
24
|
static phantom(): PhantomReified<ToTypeStr<TreasuryCaps>>;
|
|
25
|
-
static get p(): PhantomReified<"
|
|
25
|
+
static get p(): PhantomReified<"0xe27969a70f93034de9ce16e6ad661b480324574e68d15a64b513fd90eb2423e5::treasury_caps::TreasuryCaps" | "0x21a3b745eaeee0ec0cbc3207230185013d1d8939f7a920aa61f5fea7d09db600::treasury_caps::TreasuryCaps">;
|
|
26
26
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
27
27
|
id: {
|
|
28
28
|
id: {
|
|
@@ -36,7 +36,7 @@ export declare class Version implements StructClass {
|
|
|
36
36
|
static reified(): VersionReified;
|
|
37
37
|
static get r(): reified.StructClassReified<Version, VersionFields>;
|
|
38
38
|
static phantom(): PhantomReified<ToTypeStr<Version>>;
|
|
39
|
-
static get p(): reified.PhantomReified<"
|
|
39
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::admin::Version" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::admin::Version">;
|
|
40
40
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
41
41
|
id: {
|
|
42
42
|
id: {
|
|
@@ -216,7 +216,7 @@ export declare class FeeInfo implements StructClass {
|
|
|
216
216
|
static reified(): FeeInfoReified;
|
|
217
217
|
static get r(): reified.StructClassReified<FeeInfo, FeeInfoFields>;
|
|
218
218
|
static phantom(): PhantomReified<ToTypeStr<FeeInfo>>;
|
|
219
|
-
static get p(): reified.PhantomReified<"
|
|
219
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::admin::FeeInfo" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::admin::FeeInfo">;
|
|
220
220
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
221
221
|
token: {
|
|
222
222
|
name: {
|
|
@@ -278,7 +278,7 @@ export declare class FeePool implements StructClass {
|
|
|
278
278
|
static reified(): FeePoolReified;
|
|
279
279
|
static get r(): reified.StructClassReified<FeePool, FeePoolFields>;
|
|
280
280
|
static phantom(): PhantomReified<ToTypeStr<FeePool>>;
|
|
281
|
-
static get p(): reified.PhantomReified<"
|
|
281
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::admin::FeePool" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::admin::FeePool">;
|
|
282
282
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
283
283
|
id: {
|
|
284
284
|
id: {
|
|
@@ -362,7 +362,7 @@ export declare class SendFeeEvent implements StructClass {
|
|
|
362
362
|
static reified(): SendFeeEventReified;
|
|
363
363
|
static get r(): reified.StructClassReified<SendFeeEvent, SendFeeEventFields>;
|
|
364
364
|
static phantom(): PhantomReified<ToTypeStr<SendFeeEvent>>;
|
|
365
|
-
static get p(): reified.PhantomReified<"
|
|
365
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::admin::SendFeeEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::admin::SendFeeEvent">;
|
|
366
366
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
367
367
|
token: {
|
|
368
368
|
name: {
|
|
@@ -40,7 +40,7 @@ export declare class UnsubscribeEvent implements StructClass {
|
|
|
40
40
|
static reified(): UnsubscribeEventReified;
|
|
41
41
|
static get r(): reified.StructClassReified<UnsubscribeEvent, UnsubscribeEventFields>;
|
|
42
42
|
static phantom(): PhantomReified<ToTypeStr<UnsubscribeEvent>>;
|
|
43
|
-
static get p(): reified.PhantomReified<"
|
|
43
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::UnsubscribeEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::UnsubscribeEvent">;
|
|
44
44
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
45
45
|
sender: string;
|
|
46
46
|
index: string;
|
|
@@ -134,7 +134,7 @@ export declare class WithdrawIncentiveEvent implements StructClass {
|
|
|
134
134
|
static reified(): WithdrawIncentiveEventReified;
|
|
135
135
|
static get r(): reified.StructClassReified<WithdrawIncentiveEvent, WithdrawIncentiveEventFields>;
|
|
136
136
|
static phantom(): PhantomReified<ToTypeStr<WithdrawIncentiveEvent>>;
|
|
137
|
-
static get p(): reified.PhantomReified<"
|
|
137
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::WithdrawIncentiveEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::WithdrawIncentiveEvent">;
|
|
138
138
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
139
139
|
sender: string;
|
|
140
140
|
index: string;
|
|
@@ -214,7 +214,7 @@ export declare class ActivateIncentiveTokenEvent implements StructClass {
|
|
|
214
214
|
static reified(): ActivateIncentiveTokenEventReified;
|
|
215
215
|
static get r(): reified.StructClassReified<ActivateIncentiveTokenEvent, ActivateIncentiveTokenEventFields>;
|
|
216
216
|
static phantom(): PhantomReified<ToTypeStr<ActivateIncentiveTokenEvent>>;
|
|
217
|
-
static get p(): reified.PhantomReified<"
|
|
217
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::ActivateIncentiveTokenEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::ActivateIncentiveTokenEvent">;
|
|
218
218
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
219
219
|
sender: string;
|
|
220
220
|
index: string;
|
|
@@ -294,7 +294,7 @@ export declare class AddIncentiveTokenEvent implements StructClass {
|
|
|
294
294
|
static reified(): AddIncentiveTokenEventReified;
|
|
295
295
|
static get r(): reified.StructClassReified<AddIncentiveTokenEvent, AddIncentiveTokenEventFields>;
|
|
296
296
|
static phantom(): PhantomReified<ToTypeStr<AddIncentiveTokenEvent>>;
|
|
297
|
-
static get p(): reified.PhantomReified<"
|
|
297
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::AddIncentiveTokenEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::AddIncentiveTokenEvent">;
|
|
298
298
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
299
299
|
sender: string;
|
|
300
300
|
index: string;
|
|
@@ -422,7 +422,7 @@ export declare class DeactivateIncentiveTokenEvent implements StructClass {
|
|
|
422
422
|
static reified(): DeactivateIncentiveTokenEventReified;
|
|
423
423
|
static get r(): reified.StructClassReified<DeactivateIncentiveTokenEvent, DeactivateIncentiveTokenEventFields>;
|
|
424
424
|
static phantom(): PhantomReified<ToTypeStr<DeactivateIncentiveTokenEvent>>;
|
|
425
|
-
static get p(): reified.PhantomReified<"
|
|
425
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::DeactivateIncentiveTokenEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::DeactivateIncentiveTokenEvent">;
|
|
426
426
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
427
427
|
sender: string;
|
|
428
428
|
index: string;
|
|
@@ -500,7 +500,7 @@ export declare class DeactivatingShares implements StructClass {
|
|
|
500
500
|
static reified(): DeactivatingSharesReified;
|
|
501
501
|
static get r(): reified.StructClassReified<DeactivatingShares, DeactivatingSharesFields>;
|
|
502
502
|
static phantom(): PhantomReified<ToTypeStr<DeactivatingShares>>;
|
|
503
|
-
static get p(): reified.PhantomReified<"
|
|
503
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::DeactivatingShares" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::DeactivatingShares">;
|
|
504
504
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
505
505
|
shares: string;
|
|
506
506
|
unsubscribed_ts_ms: string;
|
|
@@ -604,7 +604,7 @@ export declare class DepositIncentiveEvent implements StructClass {
|
|
|
604
604
|
static reified(): DepositIncentiveEventReified;
|
|
605
605
|
static get r(): reified.StructClassReified<DepositIncentiveEvent, DepositIncentiveEventFields>;
|
|
606
606
|
static phantom(): PhantomReified<ToTypeStr<DepositIncentiveEvent>>;
|
|
607
|
-
static get p(): reified.PhantomReified<"
|
|
607
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::DepositIncentiveEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::DepositIncentiveEvent">;
|
|
608
608
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
609
609
|
sender: string;
|
|
610
610
|
index: string;
|
|
@@ -688,7 +688,7 @@ export declare class HarvestPerUserShareEvent implements StructClass {
|
|
|
688
688
|
static reified(): HarvestPerUserShareEventReified;
|
|
689
689
|
static get r(): reified.StructClassReified<HarvestPerUserShareEvent, HarvestPerUserShareEventFields>;
|
|
690
690
|
static phantom(): PhantomReified<ToTypeStr<HarvestPerUserShareEvent>>;
|
|
691
|
-
static get p(): reified.PhantomReified<"
|
|
691
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::HarvestPerUserShareEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::HarvestPerUserShareEvent">;
|
|
692
692
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
693
693
|
sender: string;
|
|
694
694
|
index: string;
|
|
@@ -770,7 +770,7 @@ export declare class Incentive implements StructClass {
|
|
|
770
770
|
static reified(): IncentiveReified;
|
|
771
771
|
static get r(): reified.StructClassReified<Incentive, IncentiveFields>;
|
|
772
772
|
static phantom(): PhantomReified<ToTypeStr<Incentive>>;
|
|
773
|
-
static get p(): reified.PhantomReified<"
|
|
773
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::Incentive" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::Incentive">;
|
|
774
774
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
775
775
|
token_type: {
|
|
776
776
|
name: {
|
|
@@ -882,7 +882,7 @@ export declare class IncentiveConfig implements StructClass {
|
|
|
882
882
|
static reified(): IncentiveConfigReified;
|
|
883
883
|
static get r(): reified.StructClassReified<IncentiveConfig, IncentiveConfigFields>;
|
|
884
884
|
static phantom(): PhantomReified<ToTypeStr<IncentiveConfig>>;
|
|
885
|
-
static get p(): reified.PhantomReified<"
|
|
885
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::IncentiveConfig" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::IncentiveConfig">;
|
|
886
886
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
887
887
|
period_incentive_amount: string;
|
|
888
888
|
incentive_interval_ts_ms: string;
|
|
@@ -942,7 +942,7 @@ export declare class IncentiveInfo implements StructClass {
|
|
|
942
942
|
static reified(): IncentiveInfoReified;
|
|
943
943
|
static get r(): reified.StructClassReified<IncentiveInfo, IncentiveInfoFields>;
|
|
944
944
|
static phantom(): PhantomReified<ToTypeStr<IncentiveInfo>>;
|
|
945
|
-
static get p(): reified.PhantomReified<"
|
|
945
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::IncentiveInfo" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::IncentiveInfo">;
|
|
946
946
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
947
947
|
active: boolean;
|
|
948
948
|
last_allocate_ts_ms: string;
|
|
@@ -1016,7 +1016,7 @@ export declare class LpUserShare implements StructClass {
|
|
|
1016
1016
|
static reified(): LpUserShareReified;
|
|
1017
1017
|
static get r(): reified.StructClassReified<LpUserShare, LpUserShareFields>;
|
|
1018
1018
|
static phantom(): PhantomReified<ToTypeStr<LpUserShare>>;
|
|
1019
|
-
static get p(): reified.PhantomReified<"
|
|
1019
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::LpUserShare" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::LpUserShare">;
|
|
1020
1020
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1021
1021
|
user: string;
|
|
1022
1022
|
user_share_id: string;
|
|
@@ -1194,7 +1194,7 @@ export declare class NewStakePoolEvent implements StructClass {
|
|
|
1194
1194
|
static reified(): NewStakePoolEventReified;
|
|
1195
1195
|
static get r(): reified.StructClassReified<NewStakePoolEvent, NewStakePoolEventFields>;
|
|
1196
1196
|
static phantom(): PhantomReified<ToTypeStr<NewStakePoolEvent>>;
|
|
1197
|
-
static get p(): reified.PhantomReified<"
|
|
1197
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::NewStakePoolEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::NewStakePoolEvent">;
|
|
1198
1198
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1199
1199
|
sender: string;
|
|
1200
1200
|
stake_pool_info: {
|
|
@@ -1316,7 +1316,7 @@ export declare class RemoveIncentiveTokenEvent implements StructClass {
|
|
|
1316
1316
|
static reified(): RemoveIncentiveTokenEventReified;
|
|
1317
1317
|
static get r(): reified.StructClassReified<RemoveIncentiveTokenEvent, RemoveIncentiveTokenEventFields>;
|
|
1318
1318
|
static phantom(): PhantomReified<ToTypeStr<RemoveIncentiveTokenEvent>>;
|
|
1319
|
-
static get p(): reified.PhantomReified<"
|
|
1319
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::RemoveIncentiveTokenEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::RemoveIncentiveTokenEvent">;
|
|
1320
1320
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1321
1321
|
sender: string;
|
|
1322
1322
|
index: string;
|
|
@@ -1404,7 +1404,7 @@ export declare class StakeEvent implements StructClass {
|
|
|
1404
1404
|
static reified(): StakeEventReified;
|
|
1405
1405
|
static get r(): reified.StructClassReified<StakeEvent, StakeEventFields>;
|
|
1406
1406
|
static phantom(): PhantomReified<ToTypeStr<StakeEvent>>;
|
|
1407
|
-
static get p(): reified.PhantomReified<"
|
|
1407
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::StakeEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::StakeEvent">;
|
|
1408
1408
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1409
1409
|
sender: string;
|
|
1410
1410
|
index: string;
|
|
@@ -1534,7 +1534,7 @@ export declare class StakePool implements StructClass {
|
|
|
1534
1534
|
static reified(): StakePoolReified;
|
|
1535
1535
|
static get r(): reified.StructClassReified<StakePool, StakePoolFields>;
|
|
1536
1536
|
static phantom(): PhantomReified<ToTypeStr<StakePool>>;
|
|
1537
|
-
static get p(): reified.PhantomReified<"
|
|
1537
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::StakePool" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::StakePool">;
|
|
1538
1538
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1539
1539
|
id: {
|
|
1540
1540
|
id: {
|
|
@@ -1738,7 +1738,7 @@ export declare class StakePoolConfig implements StructClass {
|
|
|
1738
1738
|
static reified(): StakePoolConfigReified;
|
|
1739
1739
|
static get r(): reified.StructClassReified<StakePoolConfig, StakePoolConfigFields>;
|
|
1740
1740
|
static phantom(): PhantomReified<ToTypeStr<StakePoolConfig>>;
|
|
1741
|
-
static get p(): reified.PhantomReified<"
|
|
1741
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::StakePoolConfig" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::StakePoolConfig">;
|
|
1742
1742
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1743
1743
|
unlock_countdown_ts_ms: string;
|
|
1744
1744
|
u64_padding: string[];
|
|
@@ -1796,7 +1796,7 @@ export declare class StakePoolInfo implements StructClass {
|
|
|
1796
1796
|
static reified(): StakePoolInfoReified;
|
|
1797
1797
|
static get r(): reified.StructClassReified<StakePoolInfo, StakePoolInfoFields>;
|
|
1798
1798
|
static phantom(): PhantomReified<ToTypeStr<StakePoolInfo>>;
|
|
1799
|
-
static get p(): reified.PhantomReified<"
|
|
1799
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::StakePoolInfo" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::StakePoolInfo">;
|
|
1800
1800
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1801
1801
|
stake_token: {
|
|
1802
1802
|
name: {
|
|
@@ -1876,7 +1876,7 @@ export declare class StakePoolRegistry implements StructClass {
|
|
|
1876
1876
|
static reified(): StakePoolRegistryReified;
|
|
1877
1877
|
static get r(): reified.StructClassReified<StakePoolRegistry, StakePoolRegistryFields>;
|
|
1878
1878
|
static phantom(): PhantomReified<ToTypeStr<StakePoolRegistry>>;
|
|
1879
|
-
static get p(): reified.PhantomReified<"
|
|
1879
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::StakePoolRegistry" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::StakePoolRegistry">;
|
|
1880
1880
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1881
1881
|
id: {
|
|
1882
1882
|
id: {
|
|
@@ -1942,7 +1942,7 @@ export declare class UnstakeEvent implements StructClass {
|
|
|
1942
1942
|
static reified(): UnstakeEventReified;
|
|
1943
1943
|
static get r(): reified.StructClassReified<UnstakeEvent, UnstakeEventFields>;
|
|
1944
1944
|
static phantom(): PhantomReified<ToTypeStr<UnstakeEvent>>;
|
|
1945
|
-
static get p(): reified.PhantomReified<"
|
|
1945
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::UnstakeEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::UnstakeEvent">;
|
|
1946
1946
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
1947
1947
|
sender: string;
|
|
1948
1948
|
index: string;
|
|
@@ -2032,7 +2032,7 @@ export declare class UpdateIncentiveConfigEvent implements StructClass {
|
|
|
2032
2032
|
static reified(): UpdateIncentiveConfigEventReified;
|
|
2033
2033
|
static get r(): reified.StructClassReified<UpdateIncentiveConfigEvent, UpdateIncentiveConfigEventFields>;
|
|
2034
2034
|
static phantom(): PhantomReified<ToTypeStr<UpdateIncentiveConfigEvent>>;
|
|
2035
|
-
static get p(): reified.PhantomReified<"
|
|
2035
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::UpdateIncentiveConfigEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::UpdateIncentiveConfigEvent">;
|
|
2036
2036
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2037
2037
|
sender: string;
|
|
2038
2038
|
index: string;
|
|
@@ -2136,7 +2136,7 @@ export declare class UpdateUnlockCountdownTsMsEvent implements StructClass {
|
|
|
2136
2136
|
static reified(): UpdateUnlockCountdownTsMsEventReified;
|
|
2137
2137
|
static get r(): reified.StructClassReified<UpdateUnlockCountdownTsMsEvent, UpdateUnlockCountdownTsMsEventFields>;
|
|
2138
2138
|
static phantom(): PhantomReified<ToTypeStr<UpdateUnlockCountdownTsMsEvent>>;
|
|
2139
|
-
static get p(): reified.PhantomReified<"
|
|
2139
|
+
static get p(): reified.PhantomReified<"0xc427209145715a00a93d7e674a95c556a7147d79fda1bbaeb1a1cac5f9923966::stake_pool::UpdateUnlockCountdownTsMsEvent" | "0xafe221d6a3abc88d6f6f79b2452840c9f8d4cf8f7e58938b853acee5f06f24a2::stake_pool::UpdateUnlockCountdownTsMsEvent">;
|
|
2140
2140
|
static get bcs(): import("@mysten/sui/bcs").BcsType<{
|
|
2141
2141
|
sender: string;
|
|
2142
2142
|
index: string;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typus/typus-perp-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
4
4
|
"repository": "https://github.com/Typus-Lab/typus-perp-sdk.git",
|
|
5
5
|
"author": "Typus",
|
|
6
6
|
"description": "typus perp sdk",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@typus/typus-sdk": "1.6.
|
|
9
|
+
"@typus/typus-sdk": "1.6.13"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/bs58": "^4.0.1",
|