Assets list. Native asset updates.

refs #37
This commit is contained in:
softsimon
2020-05-02 16:29:34 +07:00
parent 65b01ccc60
commit b7ac1c85ca
13 changed files with 217 additions and 41 deletions

View File

@@ -37,6 +37,7 @@ export interface Vin {
sequence: any;
witness?: string[];
inner_witnessscript_asm?: string;
is_pegin?: boolean;
}
export interface Vout {
@@ -45,7 +46,16 @@ export interface Vout {
scriptpubkey_type: string;
scriptpubkey_address: string;
value: number;
valuecommitment?: number;
asset?: string;
pegout?: Pegout;
}
interface Pegout {
genesis_hash: string;
scriptpubkey: string;
scriptpubkey_asm: string;
scriptpubkey_addres: string;
}
export interface Status {