Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add standalone relayer commands #709

Merged
merged 35 commits into from
Feb 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1210b6d
feat: add standalone relayer commands
ilgooz Jan 26, 2021
080aa78
fix linter errs + cosmetics
ilgooz Jan 31, 2021
c149b1a
rm good old relayer
ilgooz Jan 31, 2021
38edd10
fix tests
ilgooz Feb 2, 2021
eaa46fe
rm leftovers from the old relayer
ilgooz Feb 2, 2021
146d5c5
support Gitpod for faucet discovery
ilgooz Feb 2, 2021
93c7fd7
scaffold: enable faucet by default
ilgooz Feb 2, 2021
f70f1d2
fix Gitpod faucet discovery
ilgooz Feb 2, 2021
3c25c69
silence relayer so `relayer start` can link multiple chains in parallel
ilgooz Feb 3, 2021
0bf5809
link chains in parallel in the relayer start cmd
ilgooz Feb 3, 2021
84e0a7e
docs
ilgooz Feb 3, 2021
0a4ec76
rm faucet.coins_max
ilgooz Feb 3, 2021
ba94eda
use bob for the faucet
ilgooz Feb 3, 2021
157f443
back to cosmos/relayer
ilgooz Feb 3, 2021
fd7878b
add cancelation for start cmd
ilgooz Feb 3, 2021
e845c8b
refactor & add features: relayer commands
ilgooz Feb 5, 2021
a4659bc
Merge branch 'develop' into feat/relayer
ilgooz Feb 5, 2021
7108fa6
fix test + lint
ilgooz Feb 5, 2021
d4450cc
attach original rly to 'starport relayer rly'
ilgooz Feb 5, 2021
db786ca
cmd docs
ilgooz Feb 5, 2021
6946975
upgrade relayer
ilgooz Feb 5, 2021
0703262
ensure secure rpc addr always has :443 attached
ilgooz Feb 5, 2021
83aacdb
rm path from rpc addr
ilgooz Feb 5, 2021
445bf03
fix xurl.CleanPath
ilgooz Feb 5, 2021
40c7e94
fix config
ilgooz Feb 5, 2021
3425223
simplify errors
ilgooz Feb 5, 2021
c5ef332
inc timeout for integration tests
ilgooz Feb 5, 2021
450aff7
fix conflicting statik
ilgooz Feb 5, 2021
83d5934
rm parallelism from tests that serves an app
ilgooz Feb 5, 2021
a62f43d
fix install script
ilgooz Feb 5, 2021
07ca95e
docs
ilgooz Feb 5, 2021
f77f9bf
docs+cosmetics
ilgooz Feb 5, 2021
9a5e6fb
add conf alias to config command
ilgooz Feb 5, 2021
cb1a556
fix docs
ilgooz Feb 9, 2021
5894767
Merge branch 'develop' into feat/relayer
ilgooz Feb 9, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
- name: Set up packr2
run: go get -u github.com/gobuffalo/packr/v2/packr2

- name: Set up relayer
run: git clone https://github.com/cosmos/relayer && cd relayer && git checkout ba17c4db185229d9354187a8b9723097ab527261 && make install

- name: Checkout
uses: actions/checkout@v2
with:
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/test-relayer.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ tasks:
mkdir -p $BIN_PATH
(cd /workspace/starport && ./scripts/install)

# install rly
(cd /tmp && git clone https://github.com/cosmos/relayer && cd relayer && git checkout ba17c4db185229d9354187a8b9723097ab527261 && make -C /tmp/relayer install)

command: |
export VUE_APP_CUSTOM_URL=$(gp url)
export CHISEL_ADDR=$(gp url 7575)
Expand Down
24 changes: 11 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ require (
github.com/Pallinder/go-randomdata v1.2.0
github.com/briandowns/spinner v1.11.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cosmos/cosmos-sdk v0.40.0-rc3
github.com/cosmos/go-bip39 v0.0.0-20200817134856-d632e0d11689
github.com/cosmos/cosmos-sdk v0.41.0
github.com/cosmos/go-bip39 v1.0.0
github.com/cosmos/relayer v1.0.0-rc1.0.20210205103857-f4b56856caeb
github.com/dariubs/percent v0.0.0-20200128140941-b7801cf1c7e2
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/fatih/color v1.9.0
github.com/fatih/color v1.10.0
github.com/gertd/go-pluralize v0.1.7
github.com/go-bindata/go-bindata v3.1.2+incompatible
github.com/go-git/go-git/v5 v5.1.0
Expand All @@ -20,8 +21,7 @@ require (
github.com/gobuffalo/plush v3.8.3+incompatible
github.com/gobuffalo/plushgen v0.1.2
github.com/goccy/go-yaml v1.8.0
github.com/google/go-cmp v0.5.2 // indirect
github.com/gookit/color v1.2.7
github.com/gookit/color v1.3.6
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
github.com/imdario/mergo v0.3.11
Expand All @@ -32,7 +32,7 @@ require (
github.com/mwitkow/grpc-proxy v0.0.0-20181017164139-0f1106ef9c76
github.com/olekukonko/tablewriter v0.0.4
github.com/otiai10/copy v1.4.2
github.com/pelletier/go-toml v1.8.0
github.com/pelletier/go-toml v1.8.1
github.com/pkg/errors v0.9.1
github.com/radovskyb/watcher v1.0.7
github.com/rakyll/statik v0.1.7
Expand All @@ -41,18 +41,16 @@ require (
github.com/rs/cors v1.7.0
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
github.com/stretchr/testify v1.7.0
github.com/tendermint/spn v0.0.0-20201215081711-b9ec9286ed83
github.com/tendermint/tendermint v0.34.0-rc6
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
github.com/tendermint/tendermint v0.34.3
golang.org/x/mod v0.4.1
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154 // indirect
google.golang.org/grpc v1.33.0
gopkg.in/yaml.v2 v2.3.0
google.golang.org/grpc v1.35.0
)

replace github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4

replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.2-alpha.regen.4
Loading