fireblocks-sdk
Advanced tools
{ | ||
"name": "fireblocks-sdk", | ||
"version": "5.36.0", | ||
"version": "5.37.0", | ||
"main": "dist/src/fireblocks-sdk.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/src/fireblocks-sdk.d.ts", |
@@ -67,12 +67,12 @@ import { AxiosResponseHeaders } from "axios"; | ||
} | ||
export declare enum AssetClass { | ||
export declare enum AssetDetailsClass { | ||
NATIVE = "NATIVE", | ||
FT = "FT", | ||
FIAT = "FIAT", | ||
NFT = "NFT", | ||
SFT = "SFT" | ||
} | ||
export declare enum AssetClassBeta { | ||
export declare enum AssetClass { | ||
NATIVE = "NATIVE", | ||
FT = "FT", | ||
FIAT = "FIAT", | ||
NFT = "NFT", | ||
@@ -88,3 +88,3 @@ SFT = "SFT" | ||
} | ||
export interface OnchainAssetBeta { | ||
export interface AssetOnchain { | ||
symbol: string; | ||
@@ -108,7 +108,6 @@ name: string; | ||
} | ||
export interface AssetMetadataBeta { | ||
scope: AssetScope; | ||
export interface AssetDetailsMetadata { | ||
scope: AssetDetailsScope; | ||
deprecated: boolean; | ||
deprecationReferralId?: string; | ||
verified: boolean; | ||
website?: string; | ||
@@ -121,2 +120,6 @@ media?: AssetMedia[]; | ||
} | ||
export declare enum AssetDetailsScope { | ||
GLOBAL = "GLOBAL", | ||
LOCAL = "LOCAL" | ||
} | ||
export interface ListAssetResponse { | ||
@@ -126,7 +129,7 @@ id: string; | ||
blockchainId?: string; | ||
displayName?: string; | ||
displaySymbol?: string; | ||
assetClass: AssetClassBeta; | ||
onchain?: OnchainAssetBeta; | ||
metadata: AssetMetadataBeta; | ||
displayName: string; | ||
displaySymbol: string; | ||
assetClass: AssetDetailsClass; | ||
onchain?: AssetOnchain; | ||
metadata: AssetDetailsMetadata; | ||
} | ||
@@ -139,5 +142,5 @@ export interface ListAssetsResponse { | ||
blockchainId?: string; | ||
assetClass?: AssetClassBeta; | ||
assetClass?: AssetDetailsClass; | ||
symbol?: string; | ||
scope?: AssetScope; | ||
scope?: AssetDetailsScope; | ||
deprecated?: boolean; | ||
@@ -168,4 +171,4 @@ pageCursor?: string; | ||
export declare enum BlockchainScope { | ||
GLOBAL = "Global", | ||
LOCAL = "Local" | ||
GLOBAL = "GLOBAL", | ||
LOCAL = "LOCAL" | ||
} | ||
@@ -218,2 +221,7 @@ export interface BlockchainMetadata { | ||
} | ||
export interface PaginatedInternalWalletContainerResponse { | ||
total: number; | ||
data: WalletContainerResponse<InternalWalletAsset>; | ||
next: string | null; | ||
} | ||
export interface ExternalWalletAsset { | ||
@@ -1682,3 +1690,3 @@ id: string; | ||
sourcecode: string; | ||
type?: ContractTemplateType; | ||
type: ContractTemplateType; | ||
implementationContractId?: string; | ||
@@ -1685,0 +1693,0 @@ initializationPhase: ContractInitializationPhase; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SmartTransfersTicketDirection = exports.BatchTask = exports.BatchJob = exports.BatchStatus = exports.CollectionType = exports.TokenLinkStatus = exports.NFTSpamTokenOwnership = exports.InputFieldMetadataTypes = exports.ContractInitializationPhase = exports.ContractTemplateType = exports.NFTOwnershipWalletType = exports.NFTOwnershipStatus = exports.OrderValues = exports.GetOwnedAssetsSortValues = exports.GetOwnedCollectionsSortValues = exports.GetOwnedNFTsSortValues = exports.GetNFTsSortValues = exports.TimePeriod = exports.ExchangeReply = exports.SettleResponseCode = exports.TransferTicketTermStatus = exports.TransferTicketStatus = exports.Web3ConnectionMethod = exports.Web3ConnectionType = exports.TransactionOperation = exports.VirtualType = exports.PeerType = exports.TransactionStatus = exports.TransactionOrder = exports.NetworkDestType = exports.NetworkScheme = exports.FeeLevel = exports.Web3ConnectionFeeLevel = exports.ScreeningSupportedProviders = exports.ScreeningVerdict = exports.ScreeningTransactionStatus = exports.TransactionDirection = exports.PolicyApprovalStatus = exports.ScreeningAction = exports.TravelRuleAddressTypeCode = exports.SigningAlgorithm = exports.VaultAssetActivationStatus = exports.BlockchainScope = exports.BlockchainExplorer = exports.BlockchainMedia = exports.BlockchainSigningAlgo = exports.AssetScope = exports.AssetClassBeta = exports.AssetClass = exports.VirtualAffiliation = void 0; | ||
exports.TAP = exports.NCW = exports.SmartTransferTicketTermStatus = exports.SmartTransfersTicketStatus = void 0; | ||
exports.BatchTask = exports.BatchJob = exports.BatchStatus = exports.CollectionType = exports.TokenLinkStatus = exports.NFTSpamTokenOwnership = exports.InputFieldMetadataTypes = exports.ContractInitializationPhase = exports.ContractTemplateType = exports.NFTOwnershipWalletType = exports.NFTOwnershipStatus = exports.OrderValues = exports.GetOwnedAssetsSortValues = exports.GetOwnedCollectionsSortValues = exports.GetOwnedNFTsSortValues = exports.GetNFTsSortValues = exports.TimePeriod = exports.ExchangeReply = exports.SettleResponseCode = exports.TransferTicketTermStatus = exports.TransferTicketStatus = exports.Web3ConnectionMethod = exports.Web3ConnectionType = exports.TransactionOperation = exports.VirtualType = exports.PeerType = exports.TransactionStatus = exports.TransactionOrder = exports.NetworkDestType = exports.NetworkScheme = exports.FeeLevel = exports.Web3ConnectionFeeLevel = exports.ScreeningSupportedProviders = exports.ScreeningVerdict = exports.ScreeningTransactionStatus = exports.TransactionDirection = exports.PolicyApprovalStatus = exports.ScreeningAction = exports.TravelRuleAddressTypeCode = exports.SigningAlgorithm = exports.VaultAssetActivationStatus = exports.BlockchainScope = exports.BlockchainExplorer = exports.BlockchainMedia = exports.BlockchainSigningAlgo = exports.AssetDetailsScope = exports.AssetScope = exports.AssetClass = exports.AssetDetailsClass = exports.VirtualAffiliation = void 0; | ||
exports.TAP = exports.NCW = exports.SmartTransferTicketTermStatus = exports.SmartTransfersTicketStatus = exports.SmartTransfersTicketDirection = void 0; | ||
var VirtualAffiliation; | ||
@@ -10,2 +10,10 @@ (function (VirtualAffiliation) { | ||
})(VirtualAffiliation || (exports.VirtualAffiliation = VirtualAffiliation = {})); | ||
var AssetDetailsClass; | ||
(function (AssetDetailsClass) { | ||
AssetDetailsClass["NATIVE"] = "NATIVE"; | ||
AssetDetailsClass["FT"] = "FT"; | ||
AssetDetailsClass["FIAT"] = "FIAT"; | ||
AssetDetailsClass["NFT"] = "NFT"; | ||
AssetDetailsClass["SFT"] = "SFT"; | ||
})(AssetDetailsClass || (exports.AssetDetailsClass = AssetDetailsClass = {})); | ||
var AssetClass; | ||
@@ -18,10 +26,2 @@ (function (AssetClass) { | ||
})(AssetClass || (exports.AssetClass = AssetClass = {})); | ||
var AssetClassBeta; | ||
(function (AssetClassBeta) { | ||
AssetClassBeta["NATIVE"] = "NATIVE"; | ||
AssetClassBeta["FT"] = "FT"; | ||
AssetClassBeta["FIAT"] = "FIAT"; | ||
AssetClassBeta["NFT"] = "NFT"; | ||
AssetClassBeta["SFT"] = "SFT"; | ||
})(AssetClassBeta || (exports.AssetClassBeta = AssetClassBeta = {})); | ||
var AssetScope; | ||
@@ -32,2 +32,7 @@ (function (AssetScope) { | ||
})(AssetScope || (exports.AssetScope = AssetScope = {})); | ||
var AssetDetailsScope; | ||
(function (AssetDetailsScope) { | ||
AssetDetailsScope["GLOBAL"] = "GLOBAL"; | ||
AssetDetailsScope["LOCAL"] = "LOCAL"; | ||
})(AssetDetailsScope || (exports.AssetDetailsScope = AssetDetailsScope = {})); | ||
var BlockchainSigningAlgo; | ||
@@ -46,4 +51,4 @@ (function (BlockchainSigningAlgo) { | ||
(function (BlockchainScope) { | ||
BlockchainScope["GLOBAL"] = "Global"; | ||
BlockchainScope["LOCAL"] = "Local"; | ||
BlockchainScope["GLOBAL"] = "GLOBAL"; | ||
BlockchainScope["LOCAL"] = "LOCAL"; | ||
})(BlockchainScope || (exports.BlockchainScope = BlockchainScope = {})); | ||
@@ -50,0 +55,0 @@ var VaultAssetActivationStatus; |
{ | ||
"name": "fireblocks-sdk", | ||
"version": "5.36.0", | ||
"version": "5.37.0", | ||
"main": "dist/src/fireblocks-sdk.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/src/fireblocks-sdk.d.ts", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
380484
0.46%8209
0.38%