fireblocks-sdk
Advanced tools
Comparing version 1.5.15 to 1.5.16
@@ -17,3 +17,3 @@ "use strict"; | ||
uri: path, | ||
nonce: Date.now(), | ||
nonce: Math.floor(Math.random() * Number.MAX_SAFE_INTEGER), | ||
iat: Math.floor(Date.now() / 1000), | ||
@@ -20,0 +20,0 @@ exp: Math.floor(Date.now() / 1000) + 55, |
@@ -1,2 +0,2 @@ | ||
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, RequestOptions, VaultBalancesFilter, ValidateAddressResponse } from "./types"; | ||
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, RequestOptions, VaultBalancesFilter, ValidateAddressResponse, CreateVaultAssetResponse } from "./types"; | ||
export * from "./types"; | ||
@@ -204,3 +204,3 @@ export declare class FireblocksSDK { | ||
*/ | ||
createVaultAsset(vaultAccountId: string, assetId: string): Promise<AssetResponse>; | ||
createVaultAsset(vaultAccountId: string, assetId: string): Promise<CreateVaultAssetResponse>; | ||
/** | ||
@@ -207,0 +207,0 @@ * Creates a new external wallet |
@@ -31,3 +31,6 @@ export interface VaultAccountResponse { | ||
id: string; | ||
eosAccountName?: string; | ||
address: string; | ||
legacyAddress: string; | ||
tag: string; | ||
eosAccountName: string; | ||
} | ||
@@ -34,0 +37,0 @@ export interface WalletAssetResponse extends AssetResponse { |
{ | ||
"name": "fireblocks-sdk", | ||
"version": "1.5.15", | ||
"version": "1.5.16", | ||
"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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
84309
1742