TypeScript shape
interface Asset {
id: string;
name: string | null;
description: string | null;
ticker: string | null;
type: string | null;
status: string | null;
icon: string | null;
rootId: string;
assetDeployments: AssetDeployment[];
}
Asset type classification.
Root identifier shared across all deployments of the asset.
On-chain deployments of this asset across networks.
Network ID this deployment lives on.
Contract address of the deployment.
Token standard (e.g. ERC20, SPL).
Root identifier shared across deployments.