@bitgo-beta/sdk-coin-sui 1.4.1-alpha.31 → 1.4.1-alpha.310
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/.mocharc.yml +1 -2
- package/CHANGELOG.md +897 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +7 -2
- package/dist/src/lib/compareTransactionBlocks.d.ts +8 -0
- package/dist/src/lib/compareTransactionBlocks.d.ts.map +1 -0
- package/dist/src/lib/compareTransactionBlocks.js +12 -0
- package/dist/src/lib/constants.d.ts +11 -3
- package/dist/src/lib/constants.d.ts.map +1 -1
- package/dist/src/lib/constants.js +20 -3
- package/dist/src/lib/customTransaction.d.ts +57 -0
- package/dist/src/lib/customTransaction.d.ts.map +1 -0
- package/dist/src/lib/customTransaction.js +159 -0
- package/dist/src/lib/customTransactionBuilder.d.ts +46 -0
- package/dist/src/lib/customTransactionBuilder.d.ts.map +1 -0
- package/dist/src/lib/customTransactionBuilder.js +117 -0
- package/dist/src/lib/iface.d.ts +86 -27
- package/dist/src/lib/iface.d.ts.map +1 -1
- package/dist/src/lib/iface.js +39 -10
- package/dist/src/lib/index.d.ts +10 -0
- package/dist/src/lib/index.d.ts.map +1 -1
- package/dist/src/lib/index.js +44 -10
- package/dist/src/lib/keyPair.d.ts.map +1 -1
- package/dist/src/lib/keyPair.js +25 -21
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts +6 -6
- package/dist/src/lib/mystenlab/builder/Inputs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/Inputs.js +19 -20
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts +302 -0
- package/dist/src/lib/mystenlab/builder/TransactionBlock.d.ts.map +1 -0
- package/dist/src/lib/mystenlab/builder/TransactionBlock.js +255 -0
- package/dist/src/lib/mystenlab/builder/{TransactionData.d.ts → TransactionDataBlock.d.ts} +62 -62
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.d.ts.map +1 -0
- package/dist/src/lib/mystenlab/builder/TransactionDataBlock.js +168 -0
- package/dist/src/lib/mystenlab/builder/{Commands.d.ts → Transactions.d.ts} +103 -158
- package/dist/src/lib/mystenlab/builder/Transactions.d.ts.map +1 -0
- package/dist/src/lib/mystenlab/builder/Transactions.js +118 -0
- package/dist/src/lib/mystenlab/builder/bcs.d.ts +6 -6
- package/dist/src/lib/mystenlab/builder/bcs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/bcs.js +16 -16
- package/dist/src/lib/mystenlab/builder/index.d.ts +2 -2
- package/dist/src/lib/mystenlab/builder/index.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/index.js +8 -4
- package/dist/src/lib/mystenlab/builder/serializer.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/serializer.js +6 -11
- package/dist/src/lib/mystenlab/builder/utils.d.ts +2 -5
- package/dist/src/lib/mystenlab/builder/utils.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/builder/utils.js +5 -5
- package/dist/src/lib/mystenlab/cryptography/hash.js +3 -4
- package/dist/src/lib/mystenlab/framework/framework.d.ts +8 -7
- package/dist/src/lib/mystenlab/framework/framework.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/framework/framework.js +23 -27
- package/dist/src/lib/mystenlab/framework/index.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/framework/index.js +6 -4
- package/dist/src/lib/mystenlab/framework/sui-system-state.d.ts +4 -23
- package/dist/src/lib/mystenlab/framework/sui-system-state.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/framework/sui-system-state.js +11 -40
- package/dist/src/lib/mystenlab/txn-data-serializers/type-tag-serializer.d.ts.map +1 -0
- package/dist/src/lib/mystenlab/txn-data-serializers/type-tag-serializer.js +119 -0
- package/dist/src/lib/mystenlab/types/coin.d.ts +10 -10
- package/dist/src/lib/mystenlab/types/coin.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/coin.js +19 -19
- package/dist/src/lib/mystenlab/types/common.d.ts +8 -8
- package/dist/src/lib/mystenlab/types/common.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/common.js +22 -22
- package/dist/src/lib/mystenlab/types/events.d.ts +14 -14
- package/dist/src/lib/mystenlab/types/events.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/events.js +17 -17
- package/dist/src/lib/mystenlab/types/index.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/index.js +6 -5
- package/dist/src/lib/mystenlab/types/normalized.d.ts +21 -21
- package/dist/src/lib/mystenlab/types/normalized.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/normalized.js +42 -43
- package/dist/src/lib/mystenlab/types/objects.d.ts +95 -78
- package/dist/src/lib/mystenlab/types/objects.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/objects.js +98 -104
- package/dist/src/lib/mystenlab/types/option.d.ts +1 -1
- package/dist/src/lib/mystenlab/types/option.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/option.js +2 -3
- package/dist/src/lib/mystenlab/types/sui-bcs.d.ts +10 -9
- package/dist/src/lib/mystenlab/types/sui-bcs.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/sui-bcs.js +4 -4
- package/dist/src/lib/mystenlab/types/transactions.d.ts +3262 -1046
- package/dist/src/lib/mystenlab/types/transactions.d.ts.map +1 -1
- package/dist/src/lib/mystenlab/types/transactions.js +209 -187
- package/dist/src/lib/mystenlab/types/validator.d.ts +641 -0
- package/dist/src/lib/mystenlab/types/validator.d.ts.map +1 -0
- package/dist/src/lib/mystenlab/types/validator.js +156 -0
- package/dist/src/lib/resources/walrusConfig.d.ts +22 -0
- package/dist/src/lib/resources/walrusConfig.d.ts.map +1 -0
- package/dist/src/lib/resources/walrusConfig.js +37 -0
- package/dist/src/lib/rpcClient.d.ts +5 -0
- package/dist/src/lib/rpcClient.d.ts.map +1 -0
- package/dist/src/lib/rpcClient.js +74 -0
- package/dist/src/lib/stakingBuilder.d.ts +15 -15
- package/dist/src/lib/stakingBuilder.d.ts.map +1 -1
- package/dist/src/lib/stakingBuilder.js +113 -44
- package/dist/src/lib/stakingTransaction.d.ts +2 -10
- package/dist/src/lib/stakingTransaction.d.ts.map +1 -1
- package/dist/src/lib/stakingTransaction.js +97 -35
- package/dist/src/lib/tokenTransferBuilder.d.ts +38 -0
- package/dist/src/lib/tokenTransferBuilder.d.ts.map +1 -0
- package/dist/src/lib/tokenTransferBuilder.js +132 -0
- package/dist/src/lib/tokenTransferTransaction.d.ts +57 -0
- package/dist/src/lib/tokenTransferTransaction.d.ts.map +1 -0
- package/dist/src/lib/tokenTransferTransaction.js +250 -0
- package/dist/src/lib/transaction.d.ts +16 -6
- package/dist/src/lib/transaction.d.ts.map +1 -1
- package/dist/src/lib/transaction.js +126 -26
- package/dist/src/lib/transactionBuilder.d.ts +2 -3
- package/dist/src/lib/transactionBuilder.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilder.js +4 -4
- package/dist/src/lib/transactionBuilderFactory.d.ts +17 -2
- package/dist/src/lib/transactionBuilderFactory.d.ts.map +1 -1
- package/dist/src/lib/transactionBuilderFactory.js +52 -2
- package/dist/src/lib/transferBuilder.d.ts +3 -1
- package/dist/src/lib/transferBuilder.d.ts.map +1 -1
- package/dist/src/lib/transferBuilder.js +34 -11
- package/dist/src/lib/transferTransaction.d.ts +1 -1
- package/dist/src/lib/transferTransaction.d.ts.map +1 -1
- package/dist/src/lib/transferTransaction.js +33 -18
- package/dist/src/lib/unstakingBuilder.d.ts +62 -0
- package/dist/src/lib/unstakingBuilder.d.ts.map +1 -0
- package/dist/src/lib/unstakingBuilder.js +227 -0
- package/dist/src/lib/unstakingTransaction.d.ts +75 -0
- package/dist/src/lib/unstakingTransaction.d.ts.map +1 -0
- package/dist/src/lib/unstakingTransaction.js +345 -0
- package/dist/src/lib/utils.d.ts +51 -7
- package/dist/src/lib/utils.d.ts.map +1 -1
- package/dist/src/lib/utils.js +362 -27
- package/dist/src/lib/walrusStakingBuilder.d.ts +66 -0
- package/dist/src/lib/walrusStakingBuilder.d.ts.map +1 -0
- package/dist/src/lib/walrusStakingBuilder.js +200 -0
- package/dist/src/lib/walrusStakingTransaction.d.ts +52 -0
- package/dist/src/lib/walrusStakingTransaction.d.ts.map +1 -0
- package/dist/src/lib/walrusStakingTransaction.js +269 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.d.ts +36 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.d.ts.map +1 -0
- package/dist/src/lib/walrusWithdrawStakeBuilder.js +173 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.d.ts +21 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.d.ts.map +1 -0
- package/dist/src/lib/walrusWithdrawStakeTransaction.js +186 -0
- package/dist/src/register.d.ts.map +1 -1
- package/dist/src/register.js +5 -1
- package/dist/src/sui.d.ts +44 -8
- package/dist/src/sui.d.ts.map +1 -1
- package/dist/src/sui.js +484 -42
- package/dist/src/suiToken.d.ts +22 -0
- package/dist/src/suiToken.d.ts.map +1 -0
- package/dist/src/suiToken.js +61 -0
- package/dist/src/tsui.js +1 -1
- package/package.json +15 -12
- package/dist/src/lib/mystenlab/builder/Commands.d.ts.map +0 -1
- package/dist/src/lib/mystenlab/builder/Commands.js +0 -119
- package/dist/src/lib/mystenlab/builder/Transaction.d.ts +0 -609
- package/dist/src/lib/mystenlab/builder/Transaction.d.ts.map +0 -1
- package/dist/src/lib/mystenlab/builder/Transaction.js +0 -254
- package/dist/src/lib/mystenlab/builder/TransactionData.d.ts.map +0 -1
- package/dist/src/lib/mystenlab/builder/TransactionData.js +0 -171
- package/dist/src/lib/mystenlab/builder/type-tag-serializer.d.ts.map +0 -1
- package/dist/src/lib/mystenlab/builder/type-tag-serializer.js +0 -119
- /package/dist/src/lib/mystenlab/{builder → txn-data-serializers}/type-tag-serializer.d.ts +0 -0
|
@@ -2,7 +2,7 @@ import { Infer } from 'superstruct';
|
|
|
2
2
|
import { ObjectId, ObjectOwner, TransactionDigest } from './common';
|
|
3
3
|
import { OwnedObjectRef } from './transactions';
|
|
4
4
|
export declare const ObjectType: import("superstruct").Struct<string, null>;
|
|
5
|
-
export
|
|
5
|
+
export type ObjectType = Infer<typeof ObjectType>;
|
|
6
6
|
export declare const SuiObjectRef: import("superstruct").Struct<{
|
|
7
7
|
digest: string;
|
|
8
8
|
objectId: string;
|
|
@@ -15,7 +15,7 @@ export declare const SuiObjectRef: import("superstruct").Struct<{
|
|
|
15
15
|
/** Object version */
|
|
16
16
|
version: import("superstruct").Struct<string | number, null>;
|
|
17
17
|
}>;
|
|
18
|
-
export
|
|
18
|
+
export type SuiObjectRef = Infer<typeof SuiObjectRef>;
|
|
19
19
|
export declare const SuiGasData: import("superstruct").Struct<{
|
|
20
20
|
budget: number;
|
|
21
21
|
price: number;
|
|
@@ -47,12 +47,12 @@ export declare const SuiGasData: import("superstruct").Struct<{
|
|
|
47
47
|
price: import("superstruct").Struct<number, null>;
|
|
48
48
|
budget: import("superstruct").Struct<number, null>;
|
|
49
49
|
}>;
|
|
50
|
-
export
|
|
50
|
+
export type SuiGasData = Infer<typeof SuiGasData>;
|
|
51
51
|
export declare const SuiObjectInfo: import("superstruct").Struct<{
|
|
52
|
-
type: string;
|
|
53
52
|
digest: string;
|
|
54
53
|
objectId: string;
|
|
55
54
|
version: string | number;
|
|
55
|
+
type: string;
|
|
56
56
|
owner: {
|
|
57
57
|
AddressOwner: string;
|
|
58
58
|
} | {
|
|
@@ -79,11 +79,11 @@ export declare const SuiObjectInfo: import("superstruct").Struct<{
|
|
|
79
79
|
objectId: import("superstruct").Struct<string, null>;
|
|
80
80
|
version: import("superstruct").Struct<string | number, null>;
|
|
81
81
|
}>;
|
|
82
|
-
export
|
|
82
|
+
export type SuiObjectInfo = Infer<typeof SuiObjectInfo>;
|
|
83
83
|
export declare const ObjectContentFields: import("superstruct").Struct<Record<string, any>, null>;
|
|
84
|
-
export
|
|
84
|
+
export type ObjectContentFields = Infer<typeof ObjectContentFields>;
|
|
85
85
|
export declare const MovePackageContent: import("superstruct").Struct<Record<string, string>, null>;
|
|
86
|
-
export
|
|
86
|
+
export type MovePackageContent = Infer<typeof MovePackageContent>;
|
|
87
87
|
export declare const SuiMoveObject: import("superstruct").Struct<{
|
|
88
88
|
type: string;
|
|
89
89
|
fields: Record<string, any>;
|
|
@@ -95,14 +95,14 @@ export declare const SuiMoveObject: import("superstruct").Struct<{
|
|
|
95
95
|
fields: import("superstruct").Struct<Record<string, any>, null>;
|
|
96
96
|
hasPublicTransfer: import("superstruct").Struct<boolean, null>;
|
|
97
97
|
}>;
|
|
98
|
-
export
|
|
98
|
+
export type SuiMoveObject = Infer<typeof SuiMoveObject>;
|
|
99
99
|
export declare const SuiMovePackage: import("superstruct").Struct<{
|
|
100
100
|
disassembled: Record<string, string>;
|
|
101
101
|
}, {
|
|
102
102
|
/** A mapping from module name to disassembled Move bytecode */
|
|
103
103
|
disassembled: import("superstruct").Struct<Record<string, string>, null>;
|
|
104
104
|
}>;
|
|
105
|
-
export
|
|
105
|
+
export type SuiMovePackage = Infer<typeof SuiMovePackage>;
|
|
106
106
|
export declare const SuiParsedData: import("superstruct").Struct<{
|
|
107
107
|
type: string;
|
|
108
108
|
fields: Record<string, any>;
|
|
@@ -112,10 +112,10 @@ export declare const SuiParsedData: import("superstruct").Struct<{
|
|
|
112
112
|
disassembled: Record<string, string>;
|
|
113
113
|
dataType: "package";
|
|
114
114
|
}, null>;
|
|
115
|
-
export
|
|
115
|
+
export type SuiParsedData = Infer<typeof SuiParsedData>;
|
|
116
116
|
export declare const SuiRawMoveObject: import("superstruct").Struct<{
|
|
117
|
-
type: string;
|
|
118
117
|
version: number;
|
|
118
|
+
type: string;
|
|
119
119
|
hasPublicTransfer: boolean;
|
|
120
120
|
bcsBytes: number[];
|
|
121
121
|
}, {
|
|
@@ -125,7 +125,7 @@ export declare const SuiRawMoveObject: import("superstruct").Struct<{
|
|
|
125
125
|
version: import("superstruct").Struct<number, null>;
|
|
126
126
|
bcsBytes: import("superstruct").Struct<number[], import("superstruct").Struct<number, null>>;
|
|
127
127
|
}>;
|
|
128
|
-
export
|
|
128
|
+
export type SuiRawMoveObject = Infer<typeof SuiRawMoveObject>;
|
|
129
129
|
export declare const SuiRawMovePackage: import("superstruct").Struct<{
|
|
130
130
|
id: string;
|
|
131
131
|
moduleMap: Record<string, string>;
|
|
@@ -134,7 +134,7 @@ export declare const SuiRawMovePackage: import("superstruct").Struct<{
|
|
|
134
134
|
/** A mapping from module name to Move bytecode enocded in base64*/
|
|
135
135
|
moduleMap: import("superstruct").Struct<Record<string, string>, null>;
|
|
136
136
|
}>;
|
|
137
|
-
export
|
|
137
|
+
export type SuiRawMovePackage = Infer<typeof SuiRawMovePackage>;
|
|
138
138
|
export declare const SuiRawData: import("superstruct").Struct<{
|
|
139
139
|
type: string;
|
|
140
140
|
fields: Record<string, any>;
|
|
@@ -145,10 +145,10 @@ export declare const SuiRawData: import("superstruct").Struct<{
|
|
|
145
145
|
dataType: "package";
|
|
146
146
|
moduleMap: Record<string, string>;
|
|
147
147
|
}, null>;
|
|
148
|
-
export
|
|
148
|
+
export type SuiRawData = Infer<typeof SuiRawData>;
|
|
149
149
|
export declare const MIST_PER_SUI: bigint;
|
|
150
150
|
export declare const ObjectDigest: import("superstruct").Struct<string, null>;
|
|
151
|
-
export
|
|
151
|
+
export type ObjectDigest = Infer<typeof ObjectDigest>;
|
|
152
152
|
export declare const SuiObjectData: import("superstruct").Struct<{
|
|
153
153
|
digest: string;
|
|
154
154
|
objectId: string;
|
|
@@ -163,27 +163,27 @@ export declare const SuiObjectData: import("superstruct").Struct<{
|
|
|
163
163
|
initial_shared_version: number;
|
|
164
164
|
};
|
|
165
165
|
} | "Immutable" | undefined;
|
|
166
|
-
|
|
166
|
+
content?: {
|
|
167
167
|
type: string;
|
|
168
168
|
fields: Record<string, any>;
|
|
169
169
|
hasPublicTransfer: boolean;
|
|
170
170
|
dataType: "moveObject";
|
|
171
171
|
} | {
|
|
172
|
-
|
|
172
|
+
disassembled: Record<string, string>;
|
|
173
173
|
dataType: "package";
|
|
174
|
-
moduleMap: Record<string, string>;
|
|
175
174
|
} | undefined;
|
|
176
|
-
|
|
177
|
-
previousTransaction?: string | undefined;
|
|
178
|
-
content?: {
|
|
175
|
+
bcs?: {
|
|
179
176
|
type: string;
|
|
180
177
|
fields: Record<string, any>;
|
|
181
178
|
hasPublicTransfer: boolean;
|
|
182
179
|
dataType: "moveObject";
|
|
183
180
|
} | {
|
|
184
|
-
|
|
181
|
+
id: string;
|
|
185
182
|
dataType: "package";
|
|
183
|
+
moduleMap: Record<string, string>;
|
|
186
184
|
} | undefined;
|
|
185
|
+
previousTransaction?: string | undefined;
|
|
186
|
+
storageRebate?: number | undefined;
|
|
187
187
|
display?: Record<string, string> | undefined;
|
|
188
188
|
}, {
|
|
189
189
|
objectId: import("superstruct").Struct<string, null>;
|
|
@@ -249,7 +249,7 @@ export declare const SuiObjectData: import("superstruct").Struct<{
|
|
|
249
249
|
*/
|
|
250
250
|
display: import("superstruct").Struct<Record<string, string> | undefined, null>;
|
|
251
251
|
}>;
|
|
252
|
-
export
|
|
252
|
+
export type SuiObjectData = Infer<typeof SuiObjectData>;
|
|
253
253
|
/**
|
|
254
254
|
* Config for fetching object data
|
|
255
255
|
*/
|
|
@@ -270,14 +270,14 @@ export declare const SuiObjectDataOptions: import("superstruct").Struct<{
|
|
|
270
270
|
showStorageRebate: import("superstruct").Struct<boolean | undefined, null>;
|
|
271
271
|
showDisplay: import("superstruct").Struct<boolean | undefined, null>;
|
|
272
272
|
}>;
|
|
273
|
-
export
|
|
273
|
+
export type SuiObjectDataOptions = Infer<typeof SuiObjectDataOptions>;
|
|
274
274
|
export declare const ObjectStatus: import("superstruct").Struct<"Exists" | "NotExists" | "Deleted", null>;
|
|
275
|
-
export
|
|
275
|
+
export type ObjectStatus = Infer<typeof ObjectStatus>;
|
|
276
276
|
export declare const GetOwnedObjectsResponse: import("superstruct").Struct<{
|
|
277
|
-
type: string;
|
|
278
277
|
digest: string;
|
|
279
278
|
objectId: string;
|
|
280
279
|
version: string | number;
|
|
280
|
+
type: string;
|
|
281
281
|
owner: {
|
|
282
282
|
AddressOwner: string;
|
|
283
283
|
} | {
|
|
@@ -289,10 +289,10 @@ export declare const GetOwnedObjectsResponse: import("superstruct").Struct<{
|
|
|
289
289
|
} | "Immutable";
|
|
290
290
|
previousTransaction: string;
|
|
291
291
|
}[], import("superstruct").Struct<{
|
|
292
|
-
type: string;
|
|
293
292
|
digest: string;
|
|
294
293
|
objectId: string;
|
|
295
294
|
version: string | number;
|
|
295
|
+
type: string;
|
|
296
296
|
owner: {
|
|
297
297
|
AddressOwner: string;
|
|
298
298
|
} | {
|
|
@@ -319,7 +319,7 @@ export declare const GetOwnedObjectsResponse: import("superstruct").Struct<{
|
|
|
319
319
|
objectId: import("superstruct").Struct<string, null>;
|
|
320
320
|
version: import("superstruct").Struct<string | number, null>;
|
|
321
321
|
}>>;
|
|
322
|
-
export
|
|
322
|
+
export type GetOwnedObjectsResponse = Infer<typeof GetOwnedObjectsResponse>;
|
|
323
323
|
export declare const SuiObjectResponseError: import("superstruct").Struct<{
|
|
324
324
|
tag: string;
|
|
325
325
|
digest?: string | undefined;
|
|
@@ -331,7 +331,7 @@ export declare const SuiObjectResponseError: import("superstruct").Struct<{
|
|
|
331
331
|
version: import("superstruct").Struct<number | undefined, null>;
|
|
332
332
|
digest: import("superstruct").Struct<string | undefined, null>;
|
|
333
333
|
}>;
|
|
334
|
-
export
|
|
334
|
+
export type SuiObjectResponseError = Infer<typeof SuiObjectResponseError>;
|
|
335
335
|
export declare const SuiObjectResponse: import("superstruct").Struct<{
|
|
336
336
|
data?: {
|
|
337
337
|
digest: string;
|
|
@@ -347,27 +347,27 @@ export declare const SuiObjectResponse: import("superstruct").Struct<{
|
|
|
347
347
|
initial_shared_version: number;
|
|
348
348
|
};
|
|
349
349
|
} | "Immutable" | undefined;
|
|
350
|
-
|
|
350
|
+
content?: {
|
|
351
351
|
type: string;
|
|
352
352
|
fields: Record<string, any>;
|
|
353
353
|
hasPublicTransfer: boolean;
|
|
354
354
|
dataType: "moveObject";
|
|
355
355
|
} | {
|
|
356
|
-
|
|
356
|
+
disassembled: Record<string, string>;
|
|
357
357
|
dataType: "package";
|
|
358
|
-
moduleMap: Record<string, string>;
|
|
359
358
|
} | undefined;
|
|
360
|
-
|
|
361
|
-
previousTransaction?: string | undefined;
|
|
362
|
-
content?: {
|
|
359
|
+
bcs?: {
|
|
363
360
|
type: string;
|
|
364
361
|
fields: Record<string, any>;
|
|
365
362
|
hasPublicTransfer: boolean;
|
|
366
363
|
dataType: "moveObject";
|
|
367
364
|
} | {
|
|
368
|
-
|
|
365
|
+
id: string;
|
|
369
366
|
dataType: "package";
|
|
367
|
+
moduleMap: Record<string, string>;
|
|
370
368
|
} | undefined;
|
|
369
|
+
previousTransaction?: string | undefined;
|
|
370
|
+
storageRebate?: number | undefined;
|
|
371
371
|
display?: Record<string, string> | undefined;
|
|
372
372
|
} | undefined;
|
|
373
373
|
error?: {
|
|
@@ -391,27 +391,27 @@ export declare const SuiObjectResponse: import("superstruct").Struct<{
|
|
|
391
391
|
initial_shared_version: number;
|
|
392
392
|
};
|
|
393
393
|
} | "Immutable" | undefined;
|
|
394
|
-
|
|
394
|
+
content?: {
|
|
395
395
|
type: string;
|
|
396
396
|
fields: Record<string, any>;
|
|
397
397
|
hasPublicTransfer: boolean;
|
|
398
398
|
dataType: "moveObject";
|
|
399
399
|
} | {
|
|
400
|
-
|
|
400
|
+
disassembled: Record<string, string>;
|
|
401
401
|
dataType: "package";
|
|
402
|
-
moduleMap: Record<string, string>;
|
|
403
402
|
} | undefined;
|
|
404
|
-
|
|
405
|
-
previousTransaction?: string | undefined;
|
|
406
|
-
content?: {
|
|
403
|
+
bcs?: {
|
|
407
404
|
type: string;
|
|
408
405
|
fields: Record<string, any>;
|
|
409
406
|
hasPublicTransfer: boolean;
|
|
410
407
|
dataType: "moveObject";
|
|
411
408
|
} | {
|
|
412
|
-
|
|
409
|
+
id: string;
|
|
413
410
|
dataType: "package";
|
|
411
|
+
moduleMap: Record<string, string>;
|
|
414
412
|
} | undefined;
|
|
413
|
+
previousTransaction?: string | undefined;
|
|
414
|
+
storageRebate?: number | undefined;
|
|
415
415
|
display?: Record<string, string> | undefined;
|
|
416
416
|
} | undefined, {
|
|
417
417
|
objectId: import("superstruct").Struct<string, null>;
|
|
@@ -489,8 +489,8 @@ export declare const SuiObjectResponse: import("superstruct").Struct<{
|
|
|
489
489
|
digest: import("superstruct").Struct<string | undefined, null>;
|
|
490
490
|
}>;
|
|
491
491
|
}>;
|
|
492
|
-
export
|
|
493
|
-
export
|
|
492
|
+
export type SuiObjectResponse = Infer<typeof SuiObjectResponse>;
|
|
493
|
+
export type Order = 'ascending' | 'descending';
|
|
494
494
|
export declare function getSuiObjectData(resp: SuiObjectResponse): SuiObjectData | undefined;
|
|
495
495
|
export declare function getObjectDeletedResponse(resp: SuiObjectResponse): SuiObjectRef | undefined;
|
|
496
496
|
export declare function getObjectNotExistsResponse(resp: SuiObjectResponse): ObjectId | undefined;
|
|
@@ -518,6 +518,14 @@ export interface SuiObjectDataWithContent extends SuiObjectData {
|
|
|
518
518
|
export declare function getMoveObject(data: SuiObjectResponse | SuiObjectData): SuiMoveObject | undefined;
|
|
519
519
|
export declare function hasPublicTransfer(data: SuiObjectResponse | SuiObjectData): boolean;
|
|
520
520
|
export declare function getMovePackageContent(data: SuiObjectResponse | SuiMovePackage): MovePackageContent | undefined;
|
|
521
|
+
export declare const CheckpointedObjectId: import("superstruct").Struct<{
|
|
522
|
+
objectId: string;
|
|
523
|
+
atCheckpoint?: number | undefined;
|
|
524
|
+
}, {
|
|
525
|
+
objectId: import("superstruct").Struct<string, null>;
|
|
526
|
+
atCheckpoint: import("superstruct").Struct<number | undefined, null>;
|
|
527
|
+
}>;
|
|
528
|
+
export type CheckpointedObjectId = Infer<typeof CheckpointedObjectId>;
|
|
521
529
|
export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
522
530
|
data: {
|
|
523
531
|
data?: {
|
|
@@ -534,27 +542,27 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
534
542
|
initial_shared_version: number;
|
|
535
543
|
};
|
|
536
544
|
} | "Immutable" | undefined;
|
|
537
|
-
|
|
545
|
+
content?: {
|
|
538
546
|
type: string;
|
|
539
547
|
fields: Record<string, any>;
|
|
540
548
|
hasPublicTransfer: boolean;
|
|
541
549
|
dataType: "moveObject";
|
|
542
550
|
} | {
|
|
543
|
-
|
|
551
|
+
disassembled: Record<string, string>;
|
|
544
552
|
dataType: "package";
|
|
545
|
-
moduleMap: Record<string, string>;
|
|
546
553
|
} | undefined;
|
|
547
|
-
|
|
548
|
-
previousTransaction?: string | undefined;
|
|
549
|
-
content?: {
|
|
554
|
+
bcs?: {
|
|
550
555
|
type: string;
|
|
551
556
|
fields: Record<string, any>;
|
|
552
557
|
hasPublicTransfer: boolean;
|
|
553
558
|
dataType: "moveObject";
|
|
554
559
|
} | {
|
|
555
|
-
|
|
560
|
+
id: string;
|
|
556
561
|
dataType: "package";
|
|
562
|
+
moduleMap: Record<string, string>;
|
|
557
563
|
} | undefined;
|
|
564
|
+
previousTransaction?: string | undefined;
|
|
565
|
+
storageRebate?: number | undefined;
|
|
558
566
|
display?: Record<string, string> | undefined;
|
|
559
567
|
} | undefined;
|
|
560
568
|
error?: {
|
|
@@ -564,8 +572,11 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
564
572
|
object_id?: string | undefined;
|
|
565
573
|
} | undefined;
|
|
566
574
|
}[];
|
|
567
|
-
nextCursor: string | null;
|
|
568
575
|
hasNextPage: boolean;
|
|
576
|
+
nextCursor?: {
|
|
577
|
+
objectId: string;
|
|
578
|
+
atCheckpoint?: number | undefined;
|
|
579
|
+
} | undefined;
|
|
569
580
|
}, {
|
|
570
581
|
data: import("superstruct").Struct<{
|
|
571
582
|
data?: {
|
|
@@ -582,27 +593,27 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
582
593
|
initial_shared_version: number;
|
|
583
594
|
};
|
|
584
595
|
} | "Immutable" | undefined;
|
|
585
|
-
|
|
596
|
+
content?: {
|
|
586
597
|
type: string;
|
|
587
598
|
fields: Record<string, any>;
|
|
588
599
|
hasPublicTransfer: boolean;
|
|
589
600
|
dataType: "moveObject";
|
|
590
601
|
} | {
|
|
591
|
-
|
|
602
|
+
disassembled: Record<string, string>;
|
|
592
603
|
dataType: "package";
|
|
593
|
-
moduleMap: Record<string, string>;
|
|
594
604
|
} | undefined;
|
|
595
|
-
|
|
596
|
-
previousTransaction?: string | undefined;
|
|
597
|
-
content?: {
|
|
605
|
+
bcs?: {
|
|
598
606
|
type: string;
|
|
599
607
|
fields: Record<string, any>;
|
|
600
608
|
hasPublicTransfer: boolean;
|
|
601
609
|
dataType: "moveObject";
|
|
602
610
|
} | {
|
|
603
|
-
|
|
611
|
+
id: string;
|
|
604
612
|
dataType: "package";
|
|
613
|
+
moduleMap: Record<string, string>;
|
|
605
614
|
} | undefined;
|
|
615
|
+
previousTransaction?: string | undefined;
|
|
616
|
+
storageRebate?: number | undefined;
|
|
606
617
|
display?: Record<string, string> | undefined;
|
|
607
618
|
} | undefined;
|
|
608
619
|
error?: {
|
|
@@ -626,27 +637,27 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
626
637
|
initial_shared_version: number;
|
|
627
638
|
};
|
|
628
639
|
} | "Immutable" | undefined;
|
|
629
|
-
|
|
640
|
+
content?: {
|
|
630
641
|
type: string;
|
|
631
642
|
fields: Record<string, any>;
|
|
632
643
|
hasPublicTransfer: boolean;
|
|
633
644
|
dataType: "moveObject";
|
|
634
645
|
} | {
|
|
635
|
-
|
|
646
|
+
disassembled: Record<string, string>;
|
|
636
647
|
dataType: "package";
|
|
637
|
-
moduleMap: Record<string, string>;
|
|
638
648
|
} | undefined;
|
|
639
|
-
|
|
640
|
-
previousTransaction?: string | undefined;
|
|
641
|
-
content?: {
|
|
649
|
+
bcs?: {
|
|
642
650
|
type: string;
|
|
643
651
|
fields: Record<string, any>;
|
|
644
652
|
hasPublicTransfer: boolean;
|
|
645
653
|
dataType: "moveObject";
|
|
646
654
|
} | {
|
|
647
|
-
|
|
655
|
+
id: string;
|
|
648
656
|
dataType: "package";
|
|
657
|
+
moduleMap: Record<string, string>;
|
|
649
658
|
} | undefined;
|
|
659
|
+
previousTransaction?: string | undefined;
|
|
660
|
+
storageRebate?: number | undefined;
|
|
650
661
|
display?: Record<string, string> | undefined;
|
|
651
662
|
} | undefined;
|
|
652
663
|
error?: {
|
|
@@ -670,27 +681,27 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
670
681
|
initial_shared_version: number;
|
|
671
682
|
};
|
|
672
683
|
} | "Immutable" | undefined;
|
|
673
|
-
|
|
684
|
+
content?: {
|
|
674
685
|
type: string;
|
|
675
686
|
fields: Record<string, any>;
|
|
676
687
|
hasPublicTransfer: boolean;
|
|
677
688
|
dataType: "moveObject";
|
|
678
689
|
} | {
|
|
679
|
-
|
|
690
|
+
disassembled: Record<string, string>;
|
|
680
691
|
dataType: "package";
|
|
681
|
-
moduleMap: Record<string, string>;
|
|
682
692
|
} | undefined;
|
|
683
|
-
|
|
684
|
-
previousTransaction?: string | undefined;
|
|
685
|
-
content?: {
|
|
693
|
+
bcs?: {
|
|
686
694
|
type: string;
|
|
687
695
|
fields: Record<string, any>;
|
|
688
696
|
hasPublicTransfer: boolean;
|
|
689
697
|
dataType: "moveObject";
|
|
690
698
|
} | {
|
|
691
|
-
|
|
699
|
+
id: string;
|
|
692
700
|
dataType: "package";
|
|
701
|
+
moduleMap: Record<string, string>;
|
|
693
702
|
} | undefined;
|
|
703
|
+
previousTransaction?: string | undefined;
|
|
704
|
+
storageRebate?: number | undefined;
|
|
694
705
|
display?: Record<string, string> | undefined;
|
|
695
706
|
} | undefined, {
|
|
696
707
|
objectId: import("superstruct").Struct<string, null>;
|
|
@@ -768,11 +779,17 @@ export declare const PaginatedObjectsResponse: import("superstruct").Struct<{
|
|
|
768
779
|
digest: import("superstruct").Struct<string | undefined, null>;
|
|
769
780
|
}>;
|
|
770
781
|
}>>;
|
|
771
|
-
nextCursor: import("superstruct").Struct<
|
|
782
|
+
nextCursor: import("superstruct").Struct<{
|
|
783
|
+
objectId: string;
|
|
784
|
+
atCheckpoint?: number | undefined;
|
|
785
|
+
} | undefined, {
|
|
786
|
+
objectId: import("superstruct").Struct<string, null>;
|
|
787
|
+
atCheckpoint: import("superstruct").Struct<number | undefined, null>;
|
|
788
|
+
}>;
|
|
772
789
|
hasNextPage: import("superstruct").Struct<boolean, null>;
|
|
773
790
|
}>;
|
|
774
|
-
export
|
|
775
|
-
export
|
|
791
|
+
export type PaginatedObjectsResponse = Infer<typeof PaginatedObjectsResponse>;
|
|
792
|
+
export type SuiObjectDataFilter = {
|
|
776
793
|
Package: ObjectId;
|
|
777
794
|
} | {
|
|
778
795
|
MoveModule: {
|
|
@@ -782,7 +799,7 @@ export declare type SuiObjectDataFilter = {
|
|
|
782
799
|
} | {
|
|
783
800
|
StructType: string;
|
|
784
801
|
};
|
|
785
|
-
export
|
|
802
|
+
export type SuiObjectResponseQuery = {
|
|
786
803
|
filter?: SuiObjectDataFilter;
|
|
787
804
|
options?: SuiObjectDataOptions;
|
|
788
805
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"objects.d.ts","sourceRoot":"","sources":["../../../../../src/lib/mystenlab/types/objects.ts"],"names":[],"mappings":"AAAA,OAAO,EAKL,KAAK,EASN,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAkB,iBAAiB,EAAE,MAAM,UAAU,CAAC;AACpF,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAEhD,eAAO,MAAM,UAAU,4CAAwC,CAAC;AAChE,
|
|
1
|
+
{"version":3,"file":"objects.d.ts","sourceRoot":"","sources":["../../../../../src/lib/mystenlab/types/objects.ts"],"names":[],"mappings":"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"}
|