You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe this is (at least in part) due to #21229
Example
when you call getAllCoins for this address "0x5c39c34610d99a8139b0b82863969c0862dd400d679f96d97f10227915bbc27c" it returns SUI coins that add up to 1630363926 MIST .
and if you only add up the coins that exist, the total is 1375697499 MIST. "hasNextPage" : false, so we are able to see all the account's coins. I say this because of the bug that prevents paginating when the cursor is a now-deleted coin, which this PR is supposed to fix (likely in the next Testnet version to roll out) - see #21229
However, SuiVision shows a total of 1.63 Sui, and includes the deleted coins in the list of the address's coins. And if you call getAllBalances for the address:
Thank you for opening this issue, a team member will review it shortly. Until then, please do not interact with any users that claim to be from Sui support and do not click on any links!
In this example I did not find any balance issues with non-SUI coins, but of course that's not proof that the issue is limited to SUI. Please let us know if you find more info about the scope: how far back in time, frequency of occurrence, affected coin types, etc.
I believe this is (at least in part) due to #21229
Example
when you call getAllCoins for this address
"0x5c39c34610d99a8139b0b82863969c0862dd400d679f96d97f10227915bbc27c"
it returns SUI coins that add up to1630363926 MIST
.If you loop through the coins and call getObject on them all, you find three that don't exist anymore:
and if you only add up the coins that exist, the total is
1375697499 MIST
. "hasNextPage" : false, so we are able to see all the account's coins. I say this because of the bug that prevents paginating when the cursor is a now-deleted coin, which this PR is supposed to fix (likely in the next Testnet version to roll out) - see #21229However, SuiVision shows a total of 1.63 Sui, and includes the deleted coins in the list of the address's coins. And if you call
getAllBalances
for the address:You also get a SUI balance of 1.63 SUI, meaning the deleted coins don't appear to be filtered out of the total:
The text was updated successfully, but these errors were encountered: