diff --git a/nym-wallet/src/types/rust/tauritxresult.ts b/nym-wallet/src/types/rust/tauritxresult.ts index fd29ca9de3..1f885a9795 100644 --- a/nym-wallet/src/types/rust/tauritxresult.ts +++ b/nym-wallet/src/types/rust/tauritxresult.ts @@ -1,10 +1,10 @@ import { TransactionDetails } from "./transactiondetails"; export interface TauriTxResult { - code: number; - gas_wanted: bigint; - gas_used: bigint; block_height: bigint; + code: number; details: TransactionDetails; + gas_used: bigint; + gas_wanted: bigint; tx_hash: string; } \ No newline at end of file diff --git a/nym-wallet/src/types/rust/transactiondetails.ts b/nym-wallet/src/types/rust/transactiondetails.ts index f24b695511..dc3003e123 100644 --- a/nym-wallet/src/types/rust/transactiondetails.ts +++ b/nym-wallet/src/types/rust/transactiondetails.ts @@ -1,7 +1,7 @@ import { Coin } from "./coin"; export interface TransactionDetails { + amount: Coin; from_address: string; to_address: string; - amount: Coin; } \ No newline at end of file