This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Proof SP1ProofWithPublicValues { | |
proof: Compressed(SP1ReduceProof { | |
vk: VerifyingKey, | |
proof: ShardProof | |
}), | |
public_values: SP1PublicValues { | |
buffer: Buffer { | |
data: [218, 206, 107, 66, 149, 207, 110, 192, 67, 116, 167, 184, 153, 251, 225, 146, 133, 57, 44, 190, 225, 82, 118, 170, 70, 16, 181, 217, 229, 164, 56, 161, 53, 119, 56, 184, 166, 135, 241, 180, 211, 192, 30, 119, 176, 249, 205, 125, 70, 75, 44, 127, 217, 27, 108, 151, 135, 100, 130, 30, 16, 51, 248, 97, 65, 143, 238, 116, 136, 48, 35, 76, 92, 142, 231, 37, 28, 90, 175, 229, 187, 100, 142, 28, 65, 196, 8, 91, 189, 199, 124, 191, 177, 105, 206, 28, 255, 144, 79, 1, 0, 0, 0, 0, 192, 85, 60, 0, 0, 0, 0, 0, 31, 144, 144, 170, 226, 139, 138, 61, 206, 173, 242, 129, 176, 241, 40, 40, 230, 118, 195, 38, 145, 147, 85, 151, 96, 242, 25, 32, 140, 2, 21, 34, 30, 51, 4, 31, 97, 120, 34, 153, 216, 46, 156, 235, 40, 79, 218, 20, 88, 43, 31, 175, 130, 190, 235, 75, 40, 100, 157, 159, 238, 238, 245, 173, 161, 174, 118, 204, 4, 229, 235, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Listing selectors for contracts in the project... | |
ICS20Transfer | |
╭----------+-------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------╮ | |
| Type | Signature | Selector | | |
+=========================================================================================================================================================================================================+ | |
| Function | DEFAULT_ADMIN_ROLE() | 0xa217fddf | | |
|----------+-------------------------------------------------------------------------------------------------------------------------+--------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"trustedClientState": "000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000012750000000000000000000000000000000000000000000000000000000000001baf8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a7a6b6962632d64656d6f00000000000000000000000000000000000000000000", | |
"trustedConsensusState": "0000000000000000000000000000000000000000000000000000000067ddd460abb8982d8a6f5d4070a8f03058d4b7d9efaaf38dcd0e3260dd273ce18d0e3371bc4b9aae47a39635413417f7104fff9f09984d9e5f7b543e93227061c956457a", | |
" |
Notes from creating and testing ICA on testnets.
- Start a Cosmos Hub Testnet node and sync it to the tip.
- Start a Arabica node and sync it to the tip.
- Install and configure Hermes to relay between these two chains.
- Configure Hermes keys with an account on both chains. Get both accounts funded via Discord wallets.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Stop script execution if an error is encountered | |
set -o errexit | |
# Stop script execution if an undefined variable is used | |
set -o nounset | |
CHAIN_ID="mocha-4" | |
NODE_NAME="node-name" | |
SEEDS="[email protected]:26656,258f523c96efde50d5fe0a9faeea8a3e83be22ca@seed.mocha-4.celestia.aviaone.com:20279,5d0bf034d6e6a8b5ee31a2f42f753f1107b3a00e@celestia-testnet-seed.itrocket.net:11656,7da0fb48d6ef0823bc9770c0c8068dd7c89ed4ee@celest-test-seed.theamsolutions.info:443" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Stop script execution if an error is encountered | |
set -o errexit | |
# Stop script execution if an undefined variable is used | |
set -o nounset | |
CHAIN_ID="arabica-11" | |
NODE_NAME="node-name" | |
SEEDS="827583022cc6ce65cf762115642258f937c954cd@validator-1.celestia-arabica-11.com:26656,74e42b39f512f844492ff09e30af23d54579b7bc@validator-2.celestia-arabica-11.com:26656,00d577159b2eb1f524ef9c37cb389c020a2c38d2@validator-3.celestia-arabica-11.com:26656,b2871b6dc2e18916d07264af0e87c456c2bba04f@validator-4.celestia-arabica-11.com:26656" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SNAP_RPC="https://celestia-rpc.polkachu.com:443" | |
LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \ | |
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \ | |
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) | |
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \ | |
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \ |
NewerOlder