threefoldfoundation / tfchain

Official implementation of the ThreeFold blockchain
https://explorer.threefoldtoken.com
Apache License 2.0
13 stars 7 forks source link

tokens lost in transfer? #391

Closed weynandkuijpers closed 1 year ago

weynandkuijpers commented 1 year ago

I have transferred token on the TFchain (portal.test.grid.tf client) from this twin: 5GjXtYQ7ZrVXTi9AfrJx7ahcjqB3s5yiFwUpWLFU19WuZfPE

image

to a wallet on a phone telegram-cloud-photo-size-4-5945154655690537522-y which is wallet address: 5G9m3xYcKKJmCrvtchV3Nkiiy4zEAmeHRHccc6CwmqAF2rmR

The 400 TFT's never arrived in the wallet, but were subtracted from the portal based account (other wallet / secret). Not sure what I have done wrong and not sure what happened.

LeeSmet commented 1 year ago

Working as intended. The portal you used is running on testnet as per the url (note the .test), meaning balances seen are balances from Tfchain Testnet, and transfers initiated there are done on Tfchain testnet as well. Checking the graphql instance (again for testnet) at https://graphql.test.grid.tf/graphql with the following query

query MyQuery {
  transfers(where: {to_eq: "5G9m3xYcKKJmCrvtchV3Nkiiy4zEAmeHRHccc6CwmqAF2rmR"}) {
    amount
    from
    timestamp
    to
  }
}

Indeed shows a transfer of 400TFT from the given twin address to the target address. So this is all working as intended.

As for these tokens not showing in the app: the app works against mainnet, which of course does not have this transaction.

Also worth noting, this is the old tfchain (v1) repo, which is no longer used.