Skip to content

Commit

Permalink
feat(testnet): enable osmosis grpc (#128)
Browse files Browse the repository at this point in the history
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
v                               ✰  Thanks for creating a PR! ✰
v    Before smashing the submit button please review the checkboxes.
v If a checkbox is n/a - please still include it but + a little note why
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >  -->

## Overview

This PR updates the `local-osmosis-testnet-continue.sh` script to start
the Osmosis node with the gRPC endpoint enabled.

closes: #XXXX

## What changes have been made in this PR?

- [ ]

## Checklist

---

- [ ] Appropriate labels applied
- [ ] Targeted PR against correct branch
- [ ] Linked to Github issue with discussion and accepted design OR link
to spec that describes this work.
- [ ] Wrote unit and integration
- [ ] Updated relevant documentation
  • Loading branch information
manu0466 authored Jun 18, 2024
1 parent 4329aa6 commit bd2d7d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,4 @@ optimize:

initlocal: optimize _initlocal
_initlocal:
bash scripts/testnet/init_stake_contract.sh
migratelocal: optimize _migratelocal
_migratelocal:
bash scripts/testnet/migrate_stake_contract.sh
bash scripts/testnet/init-stake-contract.sh
2 changes: 1 addition & 1 deletion scripts/testnet/Local-Testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Before deploying the contracts, you need to:
After completing the above steps, you can deploy the contracts by running:

```sh
./init_stake_contract.sh
./init-stake-contract.sh
```

This script will initialize all the contracts and print out their addresses.
Expand Down
5 changes: 4 additions & 1 deletion scripts/testnet/local-osmosis-testnet-continue.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ set -e
killall osmosisd || true

# start all three validators
tmux new -s osmosis1 -d osmosisd start --home="$HOME"/.osmosisd/validator1 --rpc.laddr tcp://0.0.0.0:26657
tmux new -s osmosis1 -d osmosisd start --home="$HOME"/.osmosisd/validator1 \
--grpc.enable \
--rpc.laddr tcp://0.0.0.0:26657 \
--grpc.address 0.0.0.0:9090 \

0 comments on commit bd2d7d2

Please sign in to comment.