Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellzer committed Dec 23, 2024
1 parent c073a25 commit 1131419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/trx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ try {
console.log('broadcasting...');
const broadcastedTx = await k.client.POST('/trx/broadcast' as '/trx/transaction/broadcast', {
body: {
tx_serialized: signResponse.signed_tx.data.signed_tx_serialized,
signed_tx_serialized: signResponse.signed_tx.data.signed_tx_serialized,
},
});
console.log(broadcastedTx);
Expand Down
2 changes: 1 addition & 1 deletion src/fireblocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ export class FireblocksService {
tx: components['schemas']['TRXUnsignedTx'],
note?: string,
): Promise<{
signed_tx: { data: components['schemas']['TRXUnsignedTx'] };
signed_tx: { data: components['schemas']['TRXSignedTx'] };
fireblocks_tx: TransactionResponse;
}> {
const payload = {
Expand Down

0 comments on commit 1131419

Please sign in to comment.