-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Update pointer doc page #49
Conversation
|
||
<Callout type="info"> | ||
The CW20 Pointer Contract has a code ID of `7` on devnet, and it's pre-stored | ||
for easy use. To store this contract yourself or to check out the source code, | ||
To check out the source code, | ||
please visit our [GitHub | ||
page](https://github.com/sei-protocol/sei-chain/tree/evm/example/cosmwasm/cw20). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated but we might want to update this to reference main
instead of the evm
branch
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated
@@ -135,7 +143,7 @@ seid tx evm deploy-erccw721 $CW721_TOKEN_ADDRESS $NAME $SYMBOL --from=$SENDER -- | |||
To deploy an CW20 Pointer Contract that links to a ERC20 token, you can use the following command: | |||
|
|||
```bash copy | |||
seid tx wasm instantiate 7 '{"erc20_address": "$ERC20_TOKEN_ADDRESS"}' --from=$SENDER --label=$LABEL --chain-id=arctic-1 --broadcast-mode=block --gas=250000 --fees=25000usei --node=https://rpc-arctic-1.sei-apis.com/ --no-admin | |||
seid tx evm register-pointer ERC20 $ERC20_TOKEN_ADDRESS --from=$SENDER --chain-id=arctic-1 --broadcast-mode=block --gas=250000 --fees=25000usei --node=https://rpc-arctic-1.sei-apis.com/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this no longer require the code id of the pointer cw contract?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah it no longer requires that
What is the purpose of the change?
correct existing documentation
Describe the changes to the documentation
There are some recent changes for pointer deployment and the updates in this PR are to reflect those changes
Notes