New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fireblocks-sdk

Package Overview
Dependencies
Maintainers
3
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fireblocks-sdk - npm Package Compare versions

Comparing version 1.5.19 to 1.5.20

10

dist/fireblocks-sdk.d.ts

@@ -391,2 +391,12 @@ import { VaultAccountResponse, CreateTransactionResponse, TransactionArguments, AssetResponse, ExchangeResponse, TransactionResponse, TransactionFilter, CancelTransactionResponse, WalletContainerResponse, WalletAssetResponse, DepositAddressResponse, GenerateAddressResponse, OperationSuccessResponse, NetworkConnectionResponse, FiatAccountResponse, CreateTransferTicketArgs, TransferTicketResponse, TermResponse, ExecuteTermArgs, CreateTransferTicketResponse, EstimateTransactionFeeResponse, EstimateFeeResponse, PublicKeyInfoArgs, PublicKeyInfoForVaultAccountArgs, GasStationInfo, MaxSpendableAmountResponse, VaultAccountsFilter, VaultBalancesFilter, ValidateAddressResponse, CreateVaultAssetResponse, RequestOptions, AllocateFundsRequest, DeallocateFundsRequest } from "./types";

validateAddress(assetId: string, address: string): Promise<ValidateAddressResponse>;
/**
* Unfreezes the selected transaction
* @param txId The transaction id to unfreeze
*/
unfreezeTransactionById(txId: string): Promise<OperationSuccessResponse>;
/**
* Freezes the selected transaction
* @param txId The transaction id to freeze
*/
freezeTransactionById(txId: string): Promise<OperationSuccessResponse>;
}

@@ -774,4 +774,22 @@ "use strict";

}
/**
* Unfreezes the selected transaction
* @param txId The transaction id to unfreeze
*/
unfreezeTransactionById(txId) {
return __awaiter(this, void 0, void 0, function* () {
return this.apiClient.issuePostRequest(`/v1/transactions/${txId}/unfreeze`, {});
});
}
/**
* Freezes the selected transaction
* @param txId The transaction id to freeze
*/
freezeTransactionById(txId) {
return __awaiter(this, void 0, void 0, function* () {
return this.apiClient.issuePostRequest(`/v1/transactions/${txId}/freeze`, {});
});
}
}
exports.FireblocksSDK = FireblocksSDK;
//# sourceMappingURL=fireblocks-sdk.js.map

2

package.json
{
"name": "fireblocks-sdk",
"version": "1.5.19",
"version": "1.5.20",
"main": "dist/fireblocks-sdk.js",

@@ -5,0 +5,0 @@ "types": "dist/fireblocks-sdk.d.ts",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc