Merge branch 'tauri-wallet' of https://github.com/nymtech/nym into tauri-wallet
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
import { TransactionDetails } from "./transactiondetails";
|
||||||
|
|
||||||
|
export interface TauriTxResult {
|
||||||
|
code: number;
|
||||||
|
gas_wanted: number;
|
||||||
|
gas_used: number;
|
||||||
|
block_height: number;
|
||||||
|
details: TransactionDetails;
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
import { Coin } from "./coin";
|
||||||
|
|
||||||
|
export interface TransactionDetails {
|
||||||
|
from_address: string;
|
||||||
|
to_address: string;
|
||||||
|
amount: Coin;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user