DCN

Definition

The DCN resource is the DIMO Canonical Name registered to a given vehicle on the DIMO network. This refers to viewing a particular DCN.

Developer Notes

This GraphQL node refers to the singular dcn, hence an argument is needed in order for the query to be specific.


Arguments

Filter By FieldType

node

name

{
    dcn(
        by: {
            name: "elonmusk.dimo"
            node: "0x"
        }
    ) {
        node
        tokenId
        owner
        mintedAt
        name
    }
}

Hierarchy and Relations

FieldTypeDescription

node

The namehash of the domain.

tokenId

The ERC-721 token identifier for the domain.

name

Human readable name, if any, for the domain; for example, reddy.dimo.

owner

A 20-byte Ethereum address registered on the blockchain for the owner, encoded as a checksummed hex string with 0x prefix.

mintedAt

The RFC-3339 timestamp at which the DCN was minted, formatted as YYYY-MM-DDThh:mm:ssZ.

expiredAt

The RFC-3339 timestamp at which the DCN will expire, formatted as YYYY-MM-DDThh:mm:ssZ.

vehicle

The vehicle, if any, to which the domain is attached.

Last updated