@cubist-labs/cubesigner-sdk 0.4.281 → 0.4.284

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.
@@ -49,6 +49,7 @@ const AllOperationKinds: Record<OperationKind, true> = {
49
49
  BabylonCovSign: true,
50
50
  BabylonRegistration: true,
51
51
  BabylonStaking: true,
52
+ BinanceSubAccountDepositHistory: true,
52
53
  BinanceSubToMaster: true,
53
54
  BinanceSubToSub: true,
54
55
  BinanceUniversalTransfer: true,
@@ -72,6 +73,7 @@ const AllOperationKinds: Record<OperationKind, true> = {
72
73
  BybitQueryCoinsBalance: true,
73
74
  BybitQueryDepositAddress: true,
74
75
  BybitDepositHistory: true,
76
+ BybitSubDepositHistory: true,
75
77
  BybitUniversalTransfer: true,
76
78
  BybitUniversalTransferHistory: true,
77
79
  BybitWithdraw: true,
package/src/scopes.ts CHANGED
@@ -35,6 +35,7 @@ export const AllScopes: Record<ExplicitScope, string> =
35
35
  "sign:binance:deposit" : "Allows access to the Binance sign endpoint, restricted to the 'Deposit' method",
36
36
  "sign:binance:depositHistory" : "Allows access to the Binance sign endpoint, restricted to the 'DepositHistory' method",
37
37
  "sign:binance:subAccountAssets" : "Allows access to the Binance sign endpoint, restricted to the 'SubAccountAssets' operation",
38
+ "sign:binance:subAccountDepositHistory" : "Allows access to the Binance sign endpoint, restricted to the 'SubAccountDepositHistory' operation",
38
39
  "sign:binance:subAccountTransferHistory" : "Allows access to the Binance sign endpoint, restricted to the 'SubAccountTransferHistory' operation",
39
40
  "sign:binance:subToMaster" : "Allows access to the Binance sign endpoint, restricted to the 'SubToMaster' operation",
40
41
  "sign:binance:subToSub" : "Allows access to the Binance sign endpoint, restricted to the 'SubToSub' operation",
@@ -63,6 +64,7 @@ export const AllScopes: Record<ExplicitScope, string> =
63
64
  "sign:bybit:queryCoinInfo" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryCoinInfo' operation.",
64
65
  "sign:bybit:queryDepositAddress" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'QueryDepositAddress' operation.",
65
66
  "sign:bybit:depositHistory" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'DepositHistory' operation.",
67
+ "sign:bybit:subDepositHistory" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'SubDepositHistory' operation.",
66
68
  "sign:bybit:universalTransfer" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'UniversalTransfer' operation.",
67
69
  "sign:bybit:universalTransferHistory" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'UniversalTransferHistory' operation.",
68
70
  "sign:bybit:withdraw" : "Allows access to the typed sign 'bybit' endpoint, but only for the 'Withdraw' operation.",
@@ -278,13 +280,15 @@ export const AllScopes: Record<ExplicitScope, string> =
278
280
  "orgAccess:*" : "Allows access to certain orgs other than the current session's",
279
281
  "orgAccess:child:*" : "Allows a session to be used for access to orgs transitively parented by the session's org.",
280
282
  "rpc:*" : "Allows access to the RPC API endpoint",
281
- "rpc:cancelTransaction" : "Allows access to the RPC API endpoint, but only for the 'cs_cancelTransaction' function.",
282
- "rpc:createTransaction:*" : "Allows access to the RPC API endpoint, but only for the 'cs_createTransaction' function.",
283
- "rpc:createTransaction:evm" : "Allows access to the RPC API endpoint, but only for the 'cs_createTransaction' function with an EVM transaction request.",
284
- "rpc:getTransaction" : "Allows access to the RPC API endpoint, but only for the 'cs_getTransaction' function.",
283
+ "rpc:transaction:*" : "Allows access to the RPC API endpoint, but only for the transaction methods.",
284
+ "rpc:transaction:cancel" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionCancel' function.",
285
+ "rpc:transaction:create:*" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionCreate' function.",
286
+ "rpc:transaction:create:evm" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionCreate' function with an EVM transaction request.",
287
+ "rpc:transaction:delete" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionDelete' function.",
288
+ "rpc:transaction:get" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionGet' function.",
289
+ "rpc:transaction:list" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionList' function.",
290
+ "rpc:transaction:retry" : "Allows access to the RPC API endpoint, but only for the 'cs_transactionRetry' function.",
285
291
  "rpc:btcListUtxos" : "Allows access to the RPC API endpoint, but only for the 'cs_btcListUtxos' function.",
286
- "rpc:listTransactions" : "Allows access to the RPC API endpoint, but only for the 'cs_listTransactions' function.",
287
- "rpc:retryTransaction" : "Allows access to the RPC API endpoint, but only for the 'cs_retryTransaction' function",
288
292
  "rpc:binance" : "Allows access to the RPC API endpoint, but only for the 'cs_binance*' functions",
289
293
  "rpc:bybit" : "Allows access to the RPC API endpoint, but only for the Bybit methods",
290
294
  "rpc:coinbase" : "Allows access to the RPC API endpoint, but only for the 'cs_coinbase*' functions",