@cubist-labs/cubesigner-sdk 0.4.259 → 0.4.260

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.
@@ -56,6 +56,7 @@ const AllOperationKinds: Record<OperationKind, true> = {
56
56
  BinanceWithdraw: true,
57
57
  BinanceWithdrawHistory: true,
58
58
  BinanceDeposit: true,
59
+ BinanceDepositHistory: true,
59
60
  BinanceListSubAccounts: true,
60
61
  BinanceCoinInfo: true,
61
62
  BlobSign: true,
package/src/scopes.ts CHANGED
@@ -33,6 +33,7 @@ export const AllScopes: Record<ExplicitScope, string> =
33
33
  "sign:binance:*" : "Allows access to the Binance sign endpoint, without restrictions",
34
34
  "sign:binance:accountInfo" : "Allows access to the Binance sign endpoint, restricted to the 'AccountInfo' operation",
35
35
  "sign:binance:deposit" : "Allows access to the Binance sign endpoint, restricted to the 'Deposit' method",
36
+ "sign:binance:depositHistory" : "Allows access to the Binance sign endpoint, restricted to the 'DepositHistory' method",
36
37
  "sign:binance:subAccountAssets" : "Allows access to the Binance sign endpoint, restricted to the 'SubAccountAssets' operation",
37
38
  "sign:binance:subAccountTransferHistory" : "Allows access to the Binance sign endpoint, restricted to the 'SubAccountTransferHistory' operation",
38
39
  "sign:binance:subToMaster" : "Allows access to the Binance sign endpoint, restricted to the 'SubToMaster' operation",
@@ -268,6 +269,7 @@ export const AllScopes: Record<ExplicitScope, string> =
268
269
  "orgAccess:*" : "Allows access to certain orgs other than the current session's",
269
270
  "orgAccess:child:*" : "Allows a session to be used for access to orgs transitively parented by the session's org.",
270
271
  "rpc:*" : "Allows access to the RPC API endpoint",
272
+ "rpc:cancelTransaction" : "Allows access to the RPC API endpoint, but only for the 'cs_cancelTransaction' function.",
271
273
  "rpc:createTransaction:*" : "Allows access to the RPC API endpoint, but only for the 'cs_createTransaction' function.",
272
274
  "rpc:createTransaction:evm" : "Allows access to the RPC API endpoint, but only for the 'cs_createTransaction' function with an EVM transaction request.",
273
275
  "rpc:getTransaction" : "Allows access to the RPC API endpoint, but only for the 'cs_getTransaction' function.",