Skip to content

enviodev/xdc-web3-domains

Repository files navigation

Envio Indexer

Please refer to the documentation website for a thorough guide on all Envio indexer features

Run

pnpm dev

Visit http://localhost:8080 to see the GraphQL Playground, local password is testing.

Generate files from config.yaml or schema.graphql

pnpm codegen

Pre-requisites

Example queries

Get address for a domain

query DomainByNameQuery {
  Web3Domain(where: {name: {_eq: "hello.xdc"}}) {
    id
    name
    owner
  }
}

Get all domains owned by an address

query DomainByOwnerQuery {
  Web3Domain(where: {owner: {_eq: "0x0D29025FA6a82772B5a2ceeD27fb8F447e846901"}}) {
    id
    name
    owner
  }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published