fireblocks-sdk
Advanced tools
Comparing version 1.5.6 to 1.5.7
@@ -114,5 +114,8 @@ export interface VaultAccountResponse { | ||
operation?: TransactionOperation; | ||
fee?: number; | ||
gasPrice?: number; | ||
gasLimit?: number; | ||
fee?: number | string; | ||
feeLevel?: FeeLevel; | ||
failOnLowFee?: boolean; | ||
maxFee?: string; | ||
gasPrice?: number | string; | ||
gasLimit?: number | string; | ||
note: string; | ||
@@ -125,2 +128,7 @@ cpuStaking?: number; | ||
} | ||
export declare enum FeeLevel { | ||
HIGH = "HIGH", | ||
MEDIUM = "MEDIUM", | ||
LOW = "LOW" | ||
} | ||
export interface ExchangeResponse { | ||
@@ -183,4 +191,7 @@ id: string; | ||
amlScreeningResult?: { | ||
provider: string; | ||
provider?: string; | ||
payload: any; | ||
screeningStatus: string; | ||
bypassReason: string; | ||
timestamp: number; | ||
}; | ||
@@ -187,0 +198,0 @@ signedMessages?: SignedMessageResponse[]; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.TransferTicketTermStatus = exports.TransferTicketStatus = exports.TransactionOperation = exports.PeerType = exports.TransactionStatus = exports.TransactionOrder = exports.SigningAlgorithm = void 0; | ||
exports.TransferTicketTermStatus = exports.TransferTicketStatus = exports.TransactionOperation = exports.PeerType = exports.TransactionStatus = exports.TransactionOrder = exports.FeeLevel = exports.SigningAlgorithm = void 0; | ||
var SigningAlgorithm; | ||
@@ -10,2 +10,8 @@ (function (SigningAlgorithm) { | ||
})(SigningAlgorithm = exports.SigningAlgorithm || (exports.SigningAlgorithm = {})); | ||
var FeeLevel; | ||
(function (FeeLevel) { | ||
FeeLevel["HIGH"] = "HIGH"; | ||
FeeLevel["MEDIUM"] = "MEDIUM"; | ||
FeeLevel["LOW"] = "LOW"; | ||
})(FeeLevel = exports.FeeLevel || (exports.FeeLevel = {})); | ||
var TransactionOrder; | ||
@@ -12,0 +18,0 @@ (function (TransactionOrder) { |
{ | ||
"name": "fireblocks-sdk", | ||
"version": "1.5.6", | ||
"version": "1.5.7", | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78777
1633