We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is the return value of the transaction, but how can I parse it into Double or BigUInt result: Optional(["0": 0])
and the abi file says the return value is UInt256
The text was updated successfully, but these errors were encountered:
import BigInt let result = try? tokenBalanceTx?.call() guard let tokenWei = result?["0"] as? BigUInt else { print("FAILED ON PARSE RESULT") return nil }
Sorry, something went wrong.
@DarcyLau Did the solution provided by dangell7 helped your or you still experience this issue?
The authour of this issues didn't replied, so I supposed it was resolved and closing this issue.
To anyone still experiencing similar problems, feel free to reopen it.
No branches or pull requests
Here is the return value of the transaction, but how can I parse it into Double or BigUInt
result: Optional(["0": 0])
and the abi file says the return value is UInt256
The text was updated successfully, but these errors were encountered: