Assets page pagination.

This commit is contained in:
softsimon
2020-08-13 00:46:44 +07:00
parent 4e97ab44ac
commit 5f9dd6e026
5 changed files with 139 additions and 66 deletions

View File

@@ -137,6 +137,19 @@ export interface Asset {
mempool_stats: AssetStats;
}
export interface AssetExtended extends Asset {
name: string;
ticker: string;
precision: number;
entity: Entity;
version: number;
issuer_pubkey: string;
}
export interface Entity {
domain: string;
}
interface IssuanceTxin {
txid: string;
vin: number;