Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
query {
  globalState(
    blockHashBase16Prefix: "TheLATEST latestBLOCK block hashHASH"
    StateQueries: [
      {
        keyType: Address
        keyBase16: "YourPUBLIC KEY HexFOR KeyKEY1"
        pathSegments: []
      }
    ]
  ) {
    value {
      __typename
      ... on Account {
        pubKey
        associatedKeys {
          pubKey
          weight
        }
        actionThreshold {
          deploymentThreshold
          keyManagementThreshold
        }
        namedKeys{
          name
        }
      }
    }
  }
}

You should see a result that looks like this:

...