Skip to main content

TypeScript shape

interface AssetDeployment {
  id: string;
  networkId: number;
  address: string;
  standard: string | null;
  assetId: string;
  rootId: string;
  token: EnhancedToken | null;
}
id
String!
Deployment identifier.
networkId
Int!
Network ID this deployment lives on.
address
String!
Contract address of the deployment.
standard
String
Token standard for this deployment (e.g. ERC20, SPL).
assetId
String!
ID of the parent Asset.
rootId
String!
Root identifier shared across all deployments of the asset.
token
EnhancedToken
The enriched token for this deployment, if resolved. See EnhancedToken.