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
Right now when using @uniswap/sdk, it complains about addresses returned by getAddress not being checksummed.
@uniswap/sdk
getAddress
import { ChainId, Token, WETH, Fetcher, Route } from "@uniswap/sdk"; import { getAddress } from "@zetachain/protocol-contracts"; const tokenAddress = getAddress("zetaToken", hre.network.name as any); const token = new Token(5, tokenAddress, 18);
Warning: 0x0000c304d2934c00db1d51995b9f6996affd17c0 is not checksummed.
I'm proposing we update addresses (like 0x0000c304d2934c00db1d51995b9f6996affd17c0) with checksummed versions (0x0000c304D2934c00Db1d51995b9f6996AffD17c0).
0x0000c304d2934c00db1d51995b9f6996affd17c0
0x0000c304D2934c00Db1d51995b9f6996AffD17c0
The text was updated successfully, but these errors were encountered:
cc @andresaiello
Sorry, something went wrong.
No branches or pull requests
Right now when using
@uniswap/sdk
, it complains about addresses returned bygetAddress
not being checksummed.I'm proposing we update addresses (like
0x0000c304d2934c00db1d51995b9f6996affd17c0
) with checksummed versions (0x0000c304D2934c00Db1d51995b9f6996AffD17c0
).The text was updated successfully, but these errors were encountered: