-
Notifications
You must be signed in to change notification settings - Fork 97
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
[New chain]: Swisstronik testnet #678
Comments
✅ Success: |
I tried deploying on this chain and the deployment simulation is not successful. In particular, when we simulate the deployment transaction, it is returning that the contract will be deployed with the empty byte code instead of the expected one. curl -s https://json-rpc.testnet.swisstronik.com -H 'content-type: application/json' --data '{"jsonrpc":"2.0","id":0,"meth
od":"eth_call","params":[{"data":"0x604580600e600039806000f350fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578
182fd5b8082525050506014600cf3"},"latest"]}' Returns {"jsonrpc":"2.0","id":0,"result":"0x"} |
Hi @nlordell , I changed the RPC to use the unencrypted version, it should be ok. |
I still run into the same error with the deployment script. It looks like its an issue with the node not simulating contract creation |
Hi @nlordell , we've done a chain upgrade which should fix issues mentioned above. Now your request: curl --location 'https://json-rpc.testnet.swisstronik.com/unencrypted/' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc":"2.0",
"id":0,
"method":"eth_call",
"params":[{
"data":"0x604580600e600039806000f350fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578182fd5b8082525050506014600cf3"
},
"latest"]}' returns: {
"jsonrpc": "2.0",
"id": 0,
"result": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578182fd5b8082525050506014600cf3"
} Could you please try one more time to deploy contracts? |
Chain Name
Swisstronik testnet
RPC URL
https://json-rpc.testnet.swisstronik.com/unencrypted/
The chain must be added to https://chainlist.org/
After creating the issue, a bot will estimate the required pre-fund and post it in the comments. Please check this checkbox after you send the pre-fund.
Relevant information
Block explorer: https://explorer-evm.testnet.swisstronik.com/
The text was updated successfully, but these errors were encountered: