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
In WalletContractV4, how to get the new UQ addresses and not the old (bounceable) EQ addresses?
WalletContractV4
UQ
EQ
I saw this in the source:
toString: (args?: { urlSafe?: boolean; bounceable?: boolean; testOnly?: boolean; }) => string;
So I tested this code:
wallet.address.toString(true, false)
But it still returns me the EQ address.
The text was updated successfully, but these errors were encountered:
Oops! I understood!😄 I just had to use it like this:
wallet.address.toString({ bounceable: false })
Thankful.
Sorry, something went wrong.
No branches or pull requests
In
WalletContractV4
, how to get the newUQ
addresses and not the old (bounceable)EQ
addresses?I saw this in the source:
So I tested this code:
But it still returns me the
EQ
address.The text was updated successfully, but these errors were encountered: