Architectural overview
Overview
AssetStore
constructor(assets: Asset[])Asset
export interface Asset {
id: string;
name: string;
chainId: number;
active: boolean;
address: string;
color: string;
decimals: number;
symbol: string;
type: AssetType;
visible: boolean;
linkedAssets?: LinkedAsset[];
maxSize?: number;
allowSlot?: number;
balanceSlot?: number;
callParams?: any;
price?: number;
isVyper?: boolean;
}generateTransaction
Types
Last updated