Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] operation missing in TransactionResponse interface #286

Open
DaniSchenk opened this issue Jul 8, 2024 · 0 comments
Open

[Bug] operation missing in TransactionResponse interface #286

DaniSchenk opened this issue Jul 8, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@DaniSchenk
Copy link

Describe the bug
TransactionResponse interface is missing a required param operation.

export interface TransactionResponse {
id: string;
assetId: string;
source: TransferPeerPathResponse;
destination: TransferPeerPathResponse;
amount: number;
/**
* @deprecated Replaced by "networkFee"
*/
fee?: number;
networkFee: number;
amountUSD: number;
netAmount: number;
createdAt: number;
lastUpdated: number;
status: TransactionStatus;
txHash: string;
numOfConfirmations?: number;
subStatus?: string;
signedBy: string[];
createdBy: string;
rejectedBy: string;
destinationAddress: string;
sourceAddress?: string;
destinationAddressDescription?: string;
destinationTag: string;
addressType: string;
note: string;
exchangeTxId: string;
requestedAmount: number;
serviceFee?: number;
feeCurrency: string;
amlScreeningResult?: AmlScreeningResult;
customerRefId?: string;
amountInfo?: AmountInfo;
feeInfo?: FeeInfo;
signedMessages?: SignedMessageResponse[];
extraParameters?: any;
externalTxId?: string;
destinations?: TransactionResponseDestination[];
blockInfo?: BlockInfo;
authorizationInfo?: AuthorizationInfo;
index?: number;
rewardInfo?: RewardInfo;
feePayerInfo?: FeePayerInfo;
errorDescription?: string;
}

Screenshots
Taken from docs: https://developers.fireblocks.com/reference/gettransactions
image

@DaniSchenk DaniSchenk added the bug Something isn't working label Jul 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants