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
}
}
}