Skip to content

The Lite Wallet Update

Latest
Compare
Choose a tag to compare
@nothingalike nothingalike released this 19 Jan 15:52
· 89 commits to main since this release
9b790c4

The Lite Wallet Update

This release switches the wallet from a Full Node Wallet to a Lite Wallet.
We also included a JSON file attachment that is used for metadata.

The purpose of this wallet is for educational and development purposes only.

Note: This pre-release version is hardcoded to use testnet

If you sent metadata with your transaction, you can use Dandelion to look it up.
URL: https://graphql-api.testnet.dandelion.link/

# Write your query or mutation here
query{
  transactions( where: {
      hash: { _eq: "TX_HASH_HERE" }
    }
  ) 
    {
    metadata {
      key
      value
    }
  }
}