fireblocks-sdk
Advanced tools
Comparing version 5.35.0 to 5.36.0
{ | ||
"name": "fireblocks-sdk", | ||
"version": "5.35.0", | ||
"version": "5.36.0", | ||
"main": "dist/src/fireblocks-sdk.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/src/fireblocks-sdk.d.ts", |
@@ -339,4 +339,9 @@ import { AxiosResponseHeaders } from "axios"; | ||
export type OwnershipProof = { | ||
type: string; | ||
proof: string; | ||
type?: string; | ||
proof?: string; | ||
attestation?: string; | ||
address?: string; | ||
wallet_provider?: string; | ||
url?: string; | ||
confirmed?: boolean; | ||
}; | ||
@@ -408,4 +413,15 @@ export declare enum TravelRuleAddressTypeCode { | ||
travelRuleBehavior?: boolean; | ||
beneficiaryVASPdid: string; | ||
beneficiaryVASPdid?: string; | ||
beneficiaryVASPname?: string; | ||
originatorVASPname?: string; | ||
beneficiaryVASPwebsite?: string; | ||
encryptedMessage?: string; | ||
protocol?: string; | ||
skipBeneficiaryDataValidation?: boolean; | ||
travelRuleBehaviorRef?: string; | ||
originatorProof?: OwnershipProof; | ||
beneficiaryProof?: OwnershipProof; | ||
beneficiaryDid?: string; | ||
originatorDid?: string; | ||
isNonCustodial?: boolean; | ||
originator: TROriginator; | ||
@@ -1678,2 +1694,29 @@ beneficiary: TRBeneficiary; | ||
} | ||
export interface TxLogDto { | ||
address: string; | ||
topics: string[]; | ||
data: string; | ||
blockNumber: number; | ||
transactionHash: string; | ||
transactionIndex: number; | ||
blockHash: string; | ||
logIndex: number; | ||
removed: boolean; | ||
} | ||
export interface TransactionReceiptResponseDto { | ||
blockHash: string; | ||
blockNumber: number; | ||
contractAddress?: string; | ||
cumulativeGasUsed: number; | ||
effectiveGasPrice: number; | ||
from: string; | ||
gasUsed: number; | ||
logs: TxLogDto[]; | ||
logsBloom: string; | ||
status: number; | ||
to?: string; | ||
transactionHash: string; | ||
transactionIndex: number; | ||
type: string; | ||
} | ||
interface Parameter { | ||
@@ -1680,0 +1723,0 @@ name: string; |
{ | ||
"name": "fireblocks-sdk", | ||
"version": "5.35.0", | ||
"version": "5.36.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
378747
8178
21