UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

11 lines (10 loc) 244 B
export interface IAddressDetails { ss58Format: string; ss58Prefix: number | null; network: string | null; publicKey: string | null; } export interface IAccountCompare { areEqual: boolean; addresses: IAddressDetails[]; }