@mysten/sui 2.20.2 → 2.20.4
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/CHANGELOG.md +21 -0
- package/dist/bcs/bcs.d.mts +6 -6
- package/dist/bcs/index.d.mts +20 -20
- package/dist/client/core.d.mts.map +1 -1
- package/dist/client/core.mjs +4 -1
- package/dist/client/core.mjs.map +1 -1
- package/dist/client/mvr.d.mts.map +1 -1
- package/dist/client/mvr.mjs +29 -7
- package/dist/client/mvr.mjs.map +1 -1
- package/dist/client/transaction-resolver.mjs +1 -0
- package/dist/client/transaction-resolver.mjs.map +1 -1
- package/dist/cryptography/signature.d.mts +8 -8
- package/dist/graphql/core.mjs +3 -1
- package/dist/graphql/core.mjs.map +1 -1
- package/dist/graphql/generated/queries.d.mts.map +1 -1
- package/dist/graphql/generated/queries.mjs +6 -2
- package/dist/graphql/generated/queries.mjs.map +1 -1
- package/dist/grpc/client.d.mts.map +1 -1
- package/dist/grpc/client.mjs +1 -1
- package/dist/grpc/client.mjs.map +1 -1
- package/dist/grpc/core.d.mts +4 -4
- package/dist/grpc/core.d.mts.map +1 -1
- package/dist/grpc/core.mjs +45 -27
- package/dist/grpc/core.mjs.map +1 -1
- package/dist/grpc/proto/sui/rpc/v2/ledger_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/name_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/signature_verification_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/state_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/subscription_service.client.d.mts +4 -4
- package/dist/grpc/proto/sui/rpc/v2/transaction_execution_service.client.d.mts +4 -4
- package/dist/jsonRpc/client.d.mts +160 -0
- package/dist/jsonRpc/client.d.mts.map +1 -1
- package/dist/jsonRpc/client.mjs +142 -0
- package/dist/jsonRpc/client.mjs.map +1 -1
- package/dist/jsonRpc/core.d.mts +80 -0
- package/dist/jsonRpc/core.d.mts.map +1 -1
- package/dist/jsonRpc/core.mjs +80 -0
- package/dist/jsonRpc/core.mjs.map +1 -1
- package/dist/jsonRpc/errors.d.mts +12 -0
- package/dist/jsonRpc/errors.d.mts.map +1 -1
- package/dist/jsonRpc/errors.mjs +12 -0
- package/dist/jsonRpc/errors.mjs.map +1 -1
- package/dist/jsonRpc/http-transport.d.mts +30 -0
- package/dist/jsonRpc/http-transport.d.mts.map +1 -1
- package/dist/jsonRpc/http-transport.mjs +16 -0
- package/dist/jsonRpc/http-transport.mjs.map +1 -1
- package/dist/jsonRpc/network.d.mts +4 -0
- package/dist/jsonRpc/network.d.mts.map +1 -1
- package/dist/jsonRpc/network.mjs +4 -0
- package/dist/jsonRpc/network.mjs.map +1 -1
- package/dist/jsonRpc/types/chain.d.mts +68 -0
- package/dist/jsonRpc/types/chain.d.mts.map +1 -1
- package/dist/jsonRpc/types/changes.d.mts +24 -0
- package/dist/jsonRpc/types/changes.d.mts.map +1 -1
- package/dist/jsonRpc/types/coins.d.mts +4 -0
- package/dist/jsonRpc/types/coins.d.mts.map +1 -1
- package/dist/jsonRpc/types/common.d.mts +4 -0
- package/dist/jsonRpc/types/common.d.mts.map +1 -1
- package/dist/jsonRpc/types/generated.d.mts +497 -16
- package/dist/jsonRpc/types/generated.d.mts.map +1 -1
- package/dist/jsonRpc/types/params.d.mts +289 -41
- package/dist/jsonRpc/types/params.d.mts.map +1 -1
- package/dist/transactions/Transaction.d.mts +9 -9
- package/dist/transactions/Transaction.d.mts.map +1 -1
- package/dist/transactions/data/v1.d.mts +220 -220
- package/dist/transactions/data/v1.d.mts.map +1 -1
- package/dist/transactions/data/v2.d.mts +16 -16
- package/dist/transactions/data/v2.d.mts.map +1 -1
- package/dist/version.mjs +1 -1
- package/dist/version.mjs.map +1 -1
- package/package.json +3 -3
- package/src/client/core.ts +1 -0
- package/src/client/mvr.ts +39 -6
- package/src/client/transaction-resolver.ts +1 -0
- package/src/graphql/core.ts +2 -0
- package/src/graphql/generated/queries.ts +211 -4923
- package/src/graphql/queries/transactions.graphql +10 -2
- package/src/grpc/client.ts +10 -7
- package/src/grpc/core.ts +204 -134
- package/src/jsonRpc/client.ts +160 -0
- package/src/jsonRpc/core.ts +80 -0
- package/src/jsonRpc/errors.ts +12 -0
- package/src/jsonRpc/http-transport.ts +30 -0
- package/src/jsonRpc/network.ts +4 -0
- package/src/jsonRpc/types/chain.ts +68 -0
- package/src/jsonRpc/types/changes.ts +24 -0
- package/src/jsonRpc/types/coins.ts +4 -0
- package/src/jsonRpc/types/common.ts +4 -0
- package/src/jsonRpc/types/generated.ts +497 -16
- package/src/jsonRpc/types/params.ts +289 -41
- package/src/version.ts +1 -1
|
@@ -13,18 +13,28 @@ import { JSONRpcCoreClient } from "./core.mjs";
|
|
|
13
13
|
import { BaseClient } from "../client/client.mjs";
|
|
14
14
|
|
|
15
15
|
//#region src/jsonRpc/client.d.ts
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
18
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
19
|
+
*/
|
|
16
20
|
interface PaginationArguments<Cursor> {
|
|
17
21
|
/** Optional paging cursor */
|
|
18
22
|
cursor?: Cursor;
|
|
19
23
|
/** Maximum item returned per page */
|
|
20
24
|
limit?: number | null;
|
|
21
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
28
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
29
|
+
*/
|
|
22
30
|
interface OrderArguments {
|
|
23
31
|
order?: Order | null;
|
|
24
32
|
}
|
|
25
33
|
/**
|
|
26
34
|
* Configuration options for the SuiJsonRpcClient
|
|
27
35
|
* You must provide either a `url` or a `transport`
|
|
36
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
37
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
28
38
|
*/
|
|
29
39
|
type SuiJsonRpcClientOptions = NetworkOrTransport & {
|
|
30
40
|
network: SuiClientTypes.Network;
|
|
@@ -38,18 +48,40 @@ type NetworkOrTransport = {
|
|
|
38
48
|
url?: never;
|
|
39
49
|
};
|
|
40
50
|
declare const SUI_CLIENT_BRAND: never;
|
|
51
|
+
/**
|
|
52
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
53
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
54
|
+
*/
|
|
41
55
|
declare function isSuiJsonRpcClient(client: unknown): client is SuiJsonRpcClient;
|
|
56
|
+
/**
|
|
57
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
58
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
59
|
+
*/
|
|
42
60
|
declare class SuiJsonRpcClient extends BaseClient {
|
|
43
61
|
[SUI_CLIENT_BRAND]: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
64
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
65
|
+
*/
|
|
44
66
|
core: JSONRpcCoreClient;
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
69
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
70
|
+
*/
|
|
45
71
|
jsonRpc: this;
|
|
46
72
|
protected transport: JsonRpcTransport;
|
|
47
73
|
/**
|
|
48
74
|
* Establish a connection to a Sui RPC endpoint
|
|
49
75
|
*
|
|
50
76
|
* @param options configuration options for the API Client
|
|
77
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
78
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
51
79
|
*/
|
|
52
80
|
constructor(options: SuiJsonRpcClientOptions);
|
|
81
|
+
/**
|
|
82
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
83
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
84
|
+
*/
|
|
53
85
|
getRpcApiVersion({
|
|
54
86
|
signal
|
|
55
87
|
}?: {
|
|
@@ -57,6 +89,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
57
89
|
}): Promise<string | undefined>;
|
|
58
90
|
/**
|
|
59
91
|
* Get all Coin<`coin_type`> objects owned by an address.
|
|
92
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
93
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
60
94
|
*/
|
|
61
95
|
getCoins({
|
|
62
96
|
coinType,
|
|
@@ -67,10 +101,14 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
67
101
|
}: GetCoinsParams): Promise<PaginatedCoins>;
|
|
68
102
|
/**
|
|
69
103
|
* Get all Coin objects owned by an address.
|
|
104
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
105
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
70
106
|
*/
|
|
71
107
|
getAllCoins(input: GetAllCoinsParams): Promise<PaginatedCoins>;
|
|
72
108
|
/**
|
|
73
109
|
* Get the total coin balance for one coin type, owned by the address owner.
|
|
110
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
111
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
74
112
|
*/
|
|
75
113
|
getBalance({
|
|
76
114
|
owner,
|
|
@@ -79,10 +117,14 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
79
117
|
}: GetBalanceParams): Promise<CoinBalance>;
|
|
80
118
|
/**
|
|
81
119
|
* Get the total coin balance for all coin types, owned by the address owner.
|
|
120
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
121
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
82
122
|
*/
|
|
83
123
|
getAllBalances(input: GetAllBalancesParams): Promise<CoinBalance[]>;
|
|
84
124
|
/**
|
|
85
125
|
* Fetch CoinMetadata for a given coin type
|
|
126
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
127
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
86
128
|
*/
|
|
87
129
|
getCoinMetadata({
|
|
88
130
|
coinType,
|
|
@@ -90,6 +132,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
90
132
|
}: GetCoinMetadataParams): Promise<CoinMetadata | null>;
|
|
91
133
|
/**
|
|
92
134
|
* Fetch total supply for a coin
|
|
135
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
136
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
93
137
|
*/
|
|
94
138
|
getTotalSupply({
|
|
95
139
|
coinType,
|
|
@@ -99,6 +143,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
99
143
|
* Invoke any RPC method
|
|
100
144
|
* @param method the method to be invoked
|
|
101
145
|
* @param args the arguments to be passed to the RPC request
|
|
146
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
147
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
102
148
|
*/
|
|
103
149
|
call<T = unknown>(method: string, params: unknown[], {
|
|
104
150
|
signal
|
|
@@ -107,6 +153,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
107
153
|
}): Promise<T>;
|
|
108
154
|
/**
|
|
109
155
|
* Get Move function argument types like read, write and full access
|
|
156
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
157
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
110
158
|
*/
|
|
111
159
|
getMoveFunctionArgTypes({
|
|
112
160
|
package: pkg,
|
|
@@ -117,6 +165,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
117
165
|
/**
|
|
118
166
|
* Get a map from module name to
|
|
119
167
|
* structured representations of Move modules
|
|
168
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
169
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
120
170
|
*/
|
|
121
171
|
getNormalizedMoveModulesByPackage({
|
|
122
172
|
package: pkg,
|
|
@@ -124,6 +174,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
124
174
|
}: GetNormalizedMoveModulesByPackageParams): Promise<SuiMoveNormalizedModules>;
|
|
125
175
|
/**
|
|
126
176
|
* Get a structured representation of Move module
|
|
177
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
178
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
127
179
|
*/
|
|
128
180
|
getNormalizedMoveModule({
|
|
129
181
|
package: pkg,
|
|
@@ -132,6 +184,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
132
184
|
}: GetNormalizedMoveModuleParams): Promise<SuiMoveNormalizedModule>;
|
|
133
185
|
/**
|
|
134
186
|
* Get a structured representation of Move function
|
|
187
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
188
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
135
189
|
*/
|
|
136
190
|
getNormalizedMoveFunction({
|
|
137
191
|
package: pkg,
|
|
@@ -141,6 +195,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
141
195
|
}: GetNormalizedMoveFunctionParams): Promise<SuiMoveNormalizedFunction>;
|
|
142
196
|
/**
|
|
143
197
|
* Get a structured representation of Move struct
|
|
198
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
199
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
144
200
|
*/
|
|
145
201
|
getNormalizedMoveStruct({
|
|
146
202
|
package: pkg,
|
|
@@ -150,19 +206,31 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
150
206
|
}: GetNormalizedMoveStructParams): Promise<SuiMoveNormalizedStruct>;
|
|
151
207
|
/**
|
|
152
208
|
* Get all objects owned by an address
|
|
209
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
210
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
153
211
|
*/
|
|
154
212
|
getOwnedObjects(input: GetOwnedObjectsParams): Promise<PaginatedObjectsResponse>;
|
|
155
213
|
/**
|
|
156
214
|
* Get details about an object
|
|
215
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
216
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
157
217
|
*/
|
|
158
218
|
getObject(input: GetObjectParams): Promise<SuiObjectResponse>;
|
|
219
|
+
/**
|
|
220
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
221
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
222
|
+
*/
|
|
159
223
|
tryGetPastObject(input: TryGetPastObjectParams): Promise<ObjectRead>;
|
|
160
224
|
/**
|
|
161
225
|
* Batch get details about a list of objects. If any of the object ids are duplicates the call will fail
|
|
226
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
227
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
162
228
|
*/
|
|
163
229
|
multiGetObjects(input: MultiGetObjectsParams): Promise<SuiObjectResponse[]>;
|
|
164
230
|
/**
|
|
165
231
|
* Get transaction blocks for a given query criteria
|
|
232
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
233
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
166
234
|
*/
|
|
167
235
|
queryTransactionBlocks({
|
|
168
236
|
filter,
|
|
@@ -172,14 +240,30 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
172
240
|
order,
|
|
173
241
|
signal
|
|
174
242
|
}: QueryTransactionBlocksParams): Promise<PaginatedTransactionResponse>;
|
|
243
|
+
/**
|
|
244
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
245
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
246
|
+
*/
|
|
175
247
|
getTransactionBlock(input: GetTransactionBlockParams): Promise<SuiTransactionBlockResponse>;
|
|
248
|
+
/**
|
|
249
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
250
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
251
|
+
*/
|
|
176
252
|
multiGetTransactionBlocks(input: MultiGetTransactionBlocksParams): Promise<SuiTransactionBlockResponse[]>;
|
|
253
|
+
/**
|
|
254
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
255
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
256
|
+
*/
|
|
177
257
|
executeTransactionBlock({
|
|
178
258
|
transactionBlock,
|
|
179
259
|
signature,
|
|
180
260
|
options,
|
|
181
261
|
signal
|
|
182
262
|
}: ExecuteTransactionBlockParams): Promise<SuiTransactionBlockResponse>;
|
|
263
|
+
/**
|
|
264
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
265
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
266
|
+
*/
|
|
183
267
|
signAndExecuteTransaction({
|
|
184
268
|
transaction,
|
|
185
269
|
signer,
|
|
@@ -191,6 +275,10 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
191
275
|
/**
|
|
192
276
|
* Get total number of transactions
|
|
193
277
|
*/
|
|
278
|
+
/**
|
|
279
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
280
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
281
|
+
*/
|
|
194
282
|
getTotalTransactionBlocks({
|
|
195
283
|
signal
|
|
196
284
|
}?: {
|
|
@@ -198,26 +286,36 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
198
286
|
}): Promise<bigint>;
|
|
199
287
|
/**
|
|
200
288
|
* Getting the reference gas price for the network
|
|
289
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
290
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
201
291
|
*/
|
|
202
292
|
getReferenceGasPrice({
|
|
203
293
|
signal
|
|
204
294
|
}?: GetReferenceGasPriceParams): Promise<bigint>;
|
|
205
295
|
/**
|
|
206
296
|
* Return the delegated stakes for an address
|
|
297
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
298
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
207
299
|
*/
|
|
208
300
|
getStakes(input: GetStakesParams): Promise<DelegatedStake[]>;
|
|
209
301
|
/**
|
|
210
302
|
* Return the delegated stakes queried by id.
|
|
303
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
304
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
211
305
|
*/
|
|
212
306
|
getStakesByIds(input: GetStakesByIdsParams): Promise<DelegatedStake[]>;
|
|
213
307
|
/**
|
|
214
308
|
* Return the latest system state content.
|
|
309
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
310
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
215
311
|
*/
|
|
216
312
|
getLatestSuiSystemState({
|
|
217
313
|
signal
|
|
218
314
|
}?: GetLatestSuiSystemStateParams): Promise<SuiSystemStateSummary>;
|
|
219
315
|
/**
|
|
220
316
|
* Get events for a given query criteria
|
|
317
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
318
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
221
319
|
*/
|
|
222
320
|
queryEvents({
|
|
223
321
|
query,
|
|
@@ -230,58 +328,92 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
230
328
|
* Runs the transaction block in dev-inspect mode. Which allows for nearly any
|
|
231
329
|
* transaction (or Move call) with any arguments. Detailed results are
|
|
232
330
|
* provided, including both the transaction effects and any return values.
|
|
331
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
332
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
233
333
|
*/
|
|
234
334
|
devInspectTransactionBlock(input: DevInspectTransactionBlockParams): Promise<DevInspectResults>;
|
|
235
335
|
/**
|
|
236
336
|
* Dry run a transaction block and return the result.
|
|
337
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
338
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
237
339
|
*/
|
|
238
340
|
dryRunTransactionBlock(input: DryRunTransactionBlockParams): Promise<DryRunTransactionBlockResponse>;
|
|
239
341
|
/**
|
|
240
342
|
* Return the list of dynamic field objects owned by an object
|
|
343
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
344
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
241
345
|
*/
|
|
242
346
|
getDynamicFields(input: GetDynamicFieldsParams): Promise<DynamicFieldPage>;
|
|
243
347
|
/**
|
|
244
348
|
* Return the dynamic field object information for a specified object
|
|
349
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
350
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
245
351
|
*/
|
|
246
352
|
getDynamicFieldObject(input: GetDynamicFieldObjectParams): Promise<SuiObjectResponse>;
|
|
247
353
|
/**
|
|
248
354
|
* Get the sequence number of the latest checkpoint that has been executed
|
|
355
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
356
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
249
357
|
*/
|
|
250
358
|
getLatestCheckpointSequenceNumber({
|
|
251
359
|
signal
|
|
252
360
|
}?: GetLatestCheckpointSequenceNumberParams): Promise<string>;
|
|
253
361
|
/**
|
|
254
362
|
* Returns information about a given checkpoint
|
|
363
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
364
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
255
365
|
*/
|
|
256
366
|
getCheckpoint(input: GetCheckpointParams): Promise<Checkpoint>;
|
|
257
367
|
/**
|
|
258
368
|
* Returns historical checkpoints paginated
|
|
369
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
370
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
259
371
|
*/
|
|
260
372
|
getCheckpoints(input: PaginationArguments<CheckpointPage['nextCursor']> & GetCheckpointsParams): Promise<CheckpointPage>;
|
|
261
373
|
/**
|
|
262
374
|
* Return the committee information for the asked epoch
|
|
375
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
376
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
263
377
|
*/
|
|
264
378
|
getCommitteeInfo(input?: GetCommitteeInfoParams): Promise<CommitteeInfo>;
|
|
379
|
+
/**
|
|
380
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
381
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
382
|
+
*/
|
|
265
383
|
getNetworkMetrics({
|
|
266
384
|
signal
|
|
267
385
|
}?: {
|
|
268
386
|
signal?: AbortSignal;
|
|
269
387
|
}): Promise<NetworkMetrics>;
|
|
388
|
+
/**
|
|
389
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
390
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
391
|
+
*/
|
|
270
392
|
getAddressMetrics({
|
|
271
393
|
signal
|
|
272
394
|
}?: {
|
|
273
395
|
signal?: AbortSignal;
|
|
274
396
|
}): Promise<AddressMetrics>;
|
|
397
|
+
/**
|
|
398
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
399
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
400
|
+
*/
|
|
275
401
|
getEpochMetrics(input?: {
|
|
276
402
|
descendingOrder?: boolean;
|
|
277
403
|
signal?: AbortSignal;
|
|
278
404
|
} & PaginationArguments<EpochMetricsPage['nextCursor']>): Promise<EpochMetricsPage>;
|
|
405
|
+
/**
|
|
406
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
407
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
408
|
+
*/
|
|
279
409
|
getAllEpochAddressMetrics(input?: {
|
|
280
410
|
descendingOrder?: boolean;
|
|
281
411
|
signal?: AbortSignal;
|
|
282
412
|
}): Promise<AllEpochsAddressMetrics>;
|
|
283
413
|
/**
|
|
284
414
|
* Return the committee information for the asked epoch
|
|
415
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
416
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
285
417
|
*/
|
|
286
418
|
getEpochs(input?: {
|
|
287
419
|
descendingOrder?: boolean;
|
|
@@ -289,6 +421,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
289
421
|
} & PaginationArguments<EpochPage['nextCursor']>): Promise<EpochPage>;
|
|
290
422
|
/**
|
|
291
423
|
* Returns list of top move calls by usage
|
|
424
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
425
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
292
426
|
*/
|
|
293
427
|
getMoveCallMetrics({
|
|
294
428
|
signal
|
|
@@ -297,6 +431,8 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
297
431
|
}): Promise<MoveCallMetrics>;
|
|
298
432
|
/**
|
|
299
433
|
* Return the committee information for the asked epoch
|
|
434
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
435
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
300
436
|
*/
|
|
301
437
|
getCurrentEpoch({
|
|
302
438
|
signal
|
|
@@ -305,31 +441,55 @@ declare class SuiJsonRpcClient extends BaseClient {
|
|
|
305
441
|
}): Promise<EpochInfo>;
|
|
306
442
|
/**
|
|
307
443
|
* Return the Validators APYs
|
|
444
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
445
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
308
446
|
*/
|
|
309
447
|
getValidatorsApy({
|
|
310
448
|
signal
|
|
311
449
|
}?: {
|
|
312
450
|
signal?: AbortSignal;
|
|
313
451
|
}): Promise<ValidatorsApy>;
|
|
452
|
+
/**
|
|
453
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
454
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
455
|
+
*/
|
|
314
456
|
getChainIdentifier({
|
|
315
457
|
signal
|
|
316
458
|
}?: {
|
|
317
459
|
signal?: AbortSignal;
|
|
318
460
|
}): Promise<string>;
|
|
461
|
+
/**
|
|
462
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
463
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
464
|
+
*/
|
|
319
465
|
resolveNameServiceAddress(input: ResolveNameServiceAddressParams): Promise<string | null>;
|
|
466
|
+
/**
|
|
467
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
468
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
469
|
+
*/
|
|
320
470
|
resolveNameServiceNames({
|
|
321
471
|
format,
|
|
322
472
|
...input
|
|
323
473
|
}: ResolveNameServiceNamesParams & {
|
|
324
474
|
format?: 'at' | 'dot';
|
|
325
475
|
}): Promise<ResolvedNameServiceNames>;
|
|
476
|
+
/**
|
|
477
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
478
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
479
|
+
*/
|
|
326
480
|
getProtocolConfig(input?: GetProtocolConfigParams): Promise<ProtocolConfig>;
|
|
481
|
+
/**
|
|
482
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
483
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
484
|
+
*/
|
|
327
485
|
verifyZkLoginSignature(input: VerifyZkLoginSignatureParams): Promise<ZkLoginVerifyResult>;
|
|
328
486
|
/**
|
|
329
487
|
* Wait for a transaction block result to be available over the API.
|
|
330
488
|
* This can be used in conjunction with `executeTransactionBlock` to wait for the transaction to
|
|
331
489
|
* be available via the API.
|
|
332
490
|
* This currently polls the `getTransactionBlock` API to check for the transaction.
|
|
491
|
+
* @deprecated JSON-RPC APIs are deprecated in the Sui TypeScript SDK. Use `SuiGrpcClient`
|
|
492
|
+
* from `@mysten/sui/grpc` or `SuiGraphQLClient` from `@mysten/sui/graphql` instead.
|
|
333
493
|
*/
|
|
334
494
|
waitForTransaction({
|
|
335
495
|
signal,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.mts","names":[],"sources":["../../src/jsonRpc/client.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"client.d.mts","names":[],"sources":["../../src/jsonRpc/client.ts"],"mappings":"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"}
|