From 113141905673bcf25f1d6e45f8158b386ec60c82 Mon Sep 17 00:00:00 2001 From: Elliott Denis Date: Mon, 23 Dec 2024 14:23:13 +0000 Subject: [PATCH] up --- examples/trx.ts | 2 +- src/fireblocks.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/trx.ts b/examples/trx.ts index 2bf3eca..64b71c6 100644 --- a/examples/trx.ts +++ b/examples/trx.ts @@ -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); diff --git a/src/fireblocks.ts b/src/fireblocks.ts index 94645ae..2ab0e88 100644 --- a/src/fireblocks.ts +++ b/src/fireblocks.ts @@ -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 = {