[ci skip] Generate TS types

This commit is contained in:
tommyv1987
2021-12-02 09:54:58 +00:00
parent 608de11377
commit e57a5b73a2
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -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;
}
@@ -1,7 +1,7 @@
import { Coin } from "./coin";
export interface TransactionDetails {
amount: Coin;
from_address: string;
to_address: string;
amount: Coin;
}