steem-auth-vue-temp
Version:
A Vue 3 authentication component for Steem blockchain and Echelon sidechain
26 lines (25 loc) • 590 B
TypeScript
export interface IAccount {
json_metadata: any;
name: string;
username: string;
publicKey: string;
vote: string;
active: {
weight_threshold: number;
account_auths: [string, number][];
key_auths: [string, number][];
};
}
export interface ITransaction {
result: any;
block_num: number;
expiration: string;
expired: boolean;
extensions: string[];
id: string;
operations: string[];
ref_block_num: number;
ref_block_prefix: number;
signatures?: string[];
trx_num: number;
}