Matthew Sevey
Matthew Sevey
Adding 26658 to the exposed ports in the dockerfile and adding -p 26658:26658 to the docker command changes the error to ``` error while initializing BlockManager: RPC client error: sendRequest...
Updated docker command to get GM working ``` docker run -p 26658:26658 -e NODE_TYPE=$NODE_TYPE -e P2P_NETWORK=$NETWORK \ -v /Users/matt/.docker_data/celestia-light-arabica:/home/celestia \ ghcr.io/celestiaorg/celestia-node:v0.18.1-arabica \ celestia $NODE_TYPE start --core.ip $RPC_URL --p2p.network $NETWORK ```...
Next steps for getting it working in kurtosis. - [x] Dynamically set Auth Token - [x] Dynamically set DA height - [x] Dynamically update the RPC address in the node...
Updated docker command ``` docker run -p 26658:26658 -e NODE_TYPE=$NODE_TYPE -e P2P_NETWORK=$NETWORK \ --rm --name celestia-$NODE_TYPE-$NETWORK \ -v /Users/matt/.docker_data/celestia-light-arabica:/home/celestia \ ghcr.io/celestiaorg/celestia-node:v0.18.1-arabica \ celestia $NODE_TYPE start --core.ip $RPC_URL --p2p.network $NETWORK ```
need to initialize the cel_key and fund the address of the light node. Might need to just print the node address for the user to fund.
Current long term blocker is how to persist data with the kurtosis packages. Shouldn't be a blocker for the tutorials as starting the node and rolling fresh each time isn't...
Putting faucet as a follow up for the tutorial and just have the user request funds.
Closing due to issue with persisted data on kurtosis.
Could we generalize this by thinking about it as a fall back sequencing scheme? Which is essentially based sequencing? There is the reliability piece of the centralized sequencer potential downtime,...
As we work through extracting testing timing constants we should also consider making a number of the timeout constants `build.Vars` so that we can have production and testing values. In...