Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasnemr committed Feb 22, 2021
1 parent 0ebd499 commit 75e02f0
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/minima.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ interface Magic {
prng: string;
maxtxpow: number;
maxtxn: number;
maxkissvm: string;
maxkissvm: number;
}
interface WitnessBurn {
signatures: [];
Expand All @@ -128,18 +128,18 @@ interface TransactionBurn {
interface TransactionInput {
coinid: string;
address: string;
amount: number;
mxaddress: string;
amount: string;
tokenid: string;
floating: boolean;
remainder: boolean;
}
interface TransactionOutput {
coinid: string;
address: string;
mxaddress: string;
amount: string;
tokenid: string;
floating: boolean;
remainder: boolean;
}
interface Transaction {
inputs: TransactionInput[];
Expand Down Expand Up @@ -207,11 +207,8 @@ export interface CompleteTransaction {
txpow: Txpow;
values: Value[];
}
interface HistoryTransaction {
history?: CompleteTransaction[];
}
export interface History {
response?: HistoryTransaction;
history: CompleteTransaction[];
}
interface Listen {
port: string
Expand Down

0 comments on commit 75e02f0

Please sign in to comment.