Skip to content

Commit 04a5c17

Browse files
author
tac0turtle
committed
comments
1 parent 4353cda commit 04a5c17

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ node_modules
2121
docs/.vitepress/cache
2222
*.log
2323
*.tgz
24-
.DS_Store
2524
.idea
2625
.temp
2726
.vite_opt_cache

block/da_includer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (m *Manager) DAIncluderLoop(ctx context.Context, errCh chan<- error) {
3131
if daIncluded {
3232
m.logger.Debug().Uint64("height", nextHeight).Msg("both header and data are DA-included, advancing height")
3333
if err := m.SetSequencerHeightToDAHeight(ctx, nextHeight); err != nil {
34-
errCh <- fmt.Errorf("failed to set evolve height to DA height: %w", err)
34+
errCh <- fmt.Errorf("failed to set sequencer height to DA height: %w", err)
3535
return
3636
}
3737
// Both header and data are DA-included, so we can advance the height

docs/.vitepress/components/rosm.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"rpc": "https://rpc.rosm.ev.xyz",
33
"rest": "https://api.rosm.ev.xyz",
44
"chainId": "rosm",
5-
"chainName": "Rollkit Cosmwasm Testnet",
5+
"chainName": "Evolve Cosmwasm Testnet",
66
"stakeCurrency": {
77
"coinDenom": "ROSM",
88
"coinMinimalDenom": "urosm",
@@ -38,5 +38,9 @@
3838
"average": 0.125,
3939
"high": 0.2
4040
},
41-
"features": ["stargate", "no-legacy-stdTx", "ibc-transfer"]
41+
"features": [
42+
"stargate",
43+
"no-legacy-stdTx",
44+
"ibc-transfer"
45+
]
4246
}

docs/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default withMermaid({
2525
ignoreDeadLinks: true,
2626
base: base,
2727
sitemap: {
28-
hostname: "https://evolve.dev",
28+
hostname: "https://ev.xyz",
2929
},
3030

3131
head: [

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Deploy](https://github.com/evstack/docs/actions/workflows/deploy.yml/badge.svg)](https://github.com/evstack/docs/actions/workflows/deploy.yml)
1+
[![Deploy](https://github.com/evstack/ev-node/actions/workflows/deploy.yml/badge.svg)](https://github.com/evstack/docs/actions/workflows/deploy.yml)
22

33
# Evolve Documentation Site
44

docs/guides/use-tia-for-gas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Note: These accounts should always be the same because of the hardcoded mnemonic
179179
Fund the relayer on our chain:
180180

181181
```bash
182-
evolve tx bank send gm-key-2 gm1jqevcsld0dqpjp3csfg7alkv3lehvn8uswknrc 10000000stake --keyring-backend test --chain-id gm --fees 5000stake -y
182+
gmd tx bank send gm-key-2 gm1jqevcsld0dqpjp3csfg7alkv3lehvn8uswknrc 10000000stake --keyring-backend test --chain-id gm --fees 5000stake -y
183183
```
184184

185185
Fund the relayer on the Celestia Mocha testnet:
@@ -252,7 +252,7 @@ ACCOUNT_ON_CHAIN="$(evolve keys show -a --keyring-backend test gm-key-2)"
252252
TX_HASH=$(evolve tx bank send "$ACCOUNT_ON_CHAIN" "$ACCOUNT_ON_CHAIN" 1stake --keyring-backend test --chain-id gm --gas-prices 0.02ibc/C3E53D20BC7A4CC993B17C7971F8ECD06A433C10B6A96F4C4C3714F0624C56DA -y --output json | jq -r .txhash)
253253

254254
# Verify success
255-
evolve q tx "$TX_HASH" --output json | jq .code # => 0
255+
gmd q tx "$TX_HASH" --output json | jq .code # => 0
256256
```
257257

258258
## 🎉 Next steps

0 commit comments

Comments
 (0)