Skip to content

Commit

Permalink
Fix binary in relaying.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
p-offtermatt committed Dec 17, 2024
1 parent fe01197 commit 709c43e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/deploy-latest-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ jobs:
# get the results into the contract
- name: Run ICQs setup script
run: |
cd ./tools
go build -o build/icq-tool ./*.go
cd ..
cp ./tools/build/icq-tool .
cp ./tools/relaying.sh .
chmod +x relaying.sh
Expand Down
8 changes: 8 additions & 0 deletions DEPLOYING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ Don't worry about the non-zero number - this script isn't actually sending funds
If you want to run the relayer locally instead of through Docker, clone the [ICQ Relayer](https://github.com/neutron-org/neutron-query-relayer) repository and switch to the latest tag (v0.3.0 at the time of writing), then build the relayer.
Make sure that `neutron_query_relayer` is in the path and executable.

### Setting up the ICQ population tool

To set up the ICQ population tool, inside `./tools/`, run this command to build the binary:

```bash
go build -o build/icq-tool ./*.go
```

### Setting up variables (optional)

You can adjust parameters like the RPC nodes to connect to for relaying by modifying the exports in `./tools/relaying.sh`.
Expand Down

0 comments on commit 709c43e

Please sign in to comment.