-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
delete tx validation & update batch update guide
- Loading branch information
Showing
2 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# UpdateBatchInfo | ||
Follow the steps below. | ||
### Step 1. Register the key for the new batch submitter address. | ||
`opinitd keys add mocha-4 batch --bech32=celestia` | ||
|
||
*Make sure that this new account has a sufficient balance.* | ||
|
||
### Step 2. Run the Update batch info command. | ||
`opinitd tx update-batch-info CELESTIA celestia...` | ||
|
||
The proposer sends a transaction that includes an update batch info message with the new `ChainType` and `SubmitterAddress`. The bot will `shut down` when it encounters the `MsgUpdateBatchInfo`. | ||
|
||
### Step 3. Update the DA node config in the executor config. | ||
```json | ||
{ | ||
... | ||
"da_node": { | ||
"chain_id": "mocha-4", | ||
"bech32_prefix": "celestia", | ||
"rpc_address": "", | ||
"gas_price": "", | ||
"gas_adjustment": 1.5, | ||
"tx_timeout": 60 | ||
} | ||
} | ||
``` | ||
|
||
### Step 4. Start the OPInit bot. |
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