diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f61798969..046c7fbac 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -30,7 +30,7 @@ jobs: - name: Build exposer run: | - cd exposer && make build + cd starship/exposer && make build build-registry: if: github.event_name != 'pull_request' || !github.event.pull_request.draft @@ -47,7 +47,7 @@ jobs: - name: Build registry run: | - cd registry && make build + cd starship/registry && make build build-faucet: if: github.event_name != 'pull_request' || !github.event.pull_request.draft @@ -64,4 +64,4 @@ jobs: - name: Build faucet run: | - cd faucet && make build + cd starship/faucet && make build diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index ca70c0665..ede46697a 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -6,13 +6,13 @@ on: - main - release/* paths: - - "docker/**" + - "starship/docker/**" - ".github/workflows/docker.yaml" pull_request: branches: - main paths: - - "docker/**" + - "starship/docker/**" - ".github/workflows/docker.yaml" types: [opened, reopened, synchronize, ready_for_review] workflow_dispatch: @@ -58,17 +58,17 @@ jobs: - name: Build if: github.event_name == 'pull_request' run: | - ./scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all + ./starship/scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all - name: Build and push if: github.event_name == 'push' run: | - ./scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all --push + ./starship/scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all --push - name: Force Build and Push for workflow dispatch if: github.event_name == 'workflow_dispatch' run: | - ./scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all --push --force + ./starship/scripts/build-docker.sh --type ${{ matrix.build-type }} --process all --version all --push --force build-push-chains: if: github.event_name != 'pull_request' || !github.event.pull_request.draft @@ -80,6 +80,10 @@ jobs: env: DOCKER_REPO: ghcr.io/cosmology-tech/starship + defaults: + run: + working-directory: starship + steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml index a0608505b..0f6b352d5 100644 --- a/.github/workflows/e2e-tests.yaml +++ b/.github/workflows/e2e-tests.yaml @@ -41,7 +41,11 @@ jobs: max-parallel: 1 env: - CONFIG_FILE: "tests/e2e/configs/${{ matrix.config-file }}" + CONFIG_FILE: "starship/tests/e2e/configs/${{ matrix.config-file }}" + + defaults: + run: + working-directory: starship steps: - name: Checkout diff --git a/.github/workflows/lint-check.yaml b/.github/workflows/lint-check.yaml index bd799f7ad..2a7ee86ca 100644 --- a/.github/workflows/lint-check.yaml +++ b/.github/workflows/lint-check.yaml @@ -18,6 +18,11 @@ jobs: lint-test: if: github.event_name != 'pull_request' || !github.event.pull_request.draft runs-on: ubuntu-latest + + defaults: + run: + working-directory: starship/ + steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/pr-e2e-tests.yaml b/.github/workflows/pr-e2e-tests.yaml index bfba616f5..632384d8d 100644 --- a/.github/workflows/pr-e2e-tests.yaml +++ b/.github/workflows/pr-e2e-tests.yaml @@ -33,8 +33,12 @@ jobs: fail-fast: true max-parallel: 1 + defaults: + run: + working-directory: starship + env: - CONFIG_FILE: "tests/e2e/configs/${{ matrix.config-file }}" + CONFIG_FILE: "starship/tests/e2e/configs/${{ matrix.config-file }}" steps: - name: Get PR branch diff --git a/.github/workflows/pr-tests.yaml b/.github/workflows/pr-tests.yaml index b97cccb96..cfe76ea5d 100644 --- a/.github/workflows/pr-tests.yaml +++ b/.github/workflows/pr-tests.yaml @@ -17,6 +17,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 + defaults: + run: + working-directory: starship + strategy: matrix: config-file: @@ -32,7 +36,7 @@ jobs: max-parallel: 3 env: - CONFIG_FILE: "tests/e2e/configs/${{ matrix.config-file }}" + CONFIG_FILE: "starship/tests/e2e/configs/${{ matrix.config-file }}" steps: - name: Checkout @@ -50,7 +54,7 @@ jobs: values: ${{ env.CONFIG_FILE }} port-forward: true version: 0.0.0 - chart: ./charts/devnet + chart: ./starship/charts/devnet cli-version: f35dc85407b350077765a0b3c17a4c1632c7d53c - name: Run tests diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7f160c103..6002926c9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,6 +28,8 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.5.0 + with: + charts_dir: starship/charts env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_SKIP_EXISTING: true diff --git a/.github/workflows/smoke-tests.yaml b/.github/workflows/smoke-tests.yaml index 25fb636ff..edda62069 100644 --- a/.github/workflows/smoke-tests.yaml +++ b/.github/workflows/smoke-tests.yaml @@ -21,7 +21,7 @@ jobs: max-parallel: 4 env: - CONFIG_FILE: "tests/smoke/ci/${{ matrix.config-file }}" + CONFIG_FILE: "starship/tests/smoke/ci/${{ matrix.config-file }}" steps: - name: Checkout @@ -34,7 +34,7 @@ jobs: values: ${{ env.CONFIG_FILE }} port-forward: true version: 0.0.0 - chart: ./charts/devnet + chart: ./starship/charts/devnet timeout: 10m cli-version: f35dc85407b350077765a0b3c17a4c1632c7d53c @@ -72,7 +72,7 @@ jobs: values: ${{ env.CONFIG_FILE }} port-forward: true version: 0.0.0 - chart: ./charts/devnet + chart: ./starship/charts/devnet timeout: 10m cli-version: f35dc85407b350077765a0b3c17a4c1632c7d53c @@ -97,7 +97,7 @@ jobs: max-parallel: 4 env: - CONFIG_FILE: "tests/smoke/ci/${{ matrix.config-file }}" + CONFIG_FILE: "starship/tests/smoke/ci/${{ matrix.config-file }}" steps: - name: Checkout @@ -110,7 +110,7 @@ jobs: values: ${{ env.CONFIG_FILE }} port-forward: true version: 0.0.0 - chart: ./charts/devnet + chart: ./starship/charts/devnet timeout: 10m cli-version: f35dc85407b350077765a0b3c17a4c1632c7d53c diff --git a/clients/go/client/go.mod b/clients/go/client/go.mod index 2b5978013..e68d9a80f 100644 --- a/clients/go/client/go.mod +++ b/clients/go/client/go.mod @@ -3,7 +3,7 @@ module github.com/cosmology-tech/starship/clients/go/client go 1.21 replace ( - github.com/cosmology-tech/starship/registry => ../../../registry + github.com/cosmology-tech/starship/registry => ../../../starship/registry github.com/strangelove-ventures/lens => github.com/Anmol1696/lens v0.1.1-0.20230331154219-5027f163133a ) diff --git a/examples/upgrade-test/go.sum b/examples/upgrade-test/go.sum index 860d45ecf..0975842ba 100644 --- a/examples/upgrade-test/go.sum +++ b/examples/upgrade-test/go.sum @@ -33,6 +33,7 @@ cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+ cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= cloud.google.com/go v0.110.9 h1:e7ITSqGFFk4rbz/JFIqZh3G4VEHguhAL4BQcFlWtU68= +cloud.google.com/go v0.110.9/go.mod h1:rpxevX/0Lqvlbc88b7Sc1SPNdyK1riNBTUU6JXhYNpM= cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= @@ -70,6 +71,7 @@ cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLq cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= cloud.google.com/go/compute v1.23.2 h1:nWEMDhgbBkBJjfpVySqU4jgWdc22PLR0o4vEexZHers= +cloud.google.com/go/compute v1.23.2/go.mod h1:JJ0atRC0J/oWYiiVBmsSsrRnh92DhZPG4hFDcR04Rns= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= @@ -110,6 +112,7 @@ cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= cloud.google.com/go/iam v1.1.4 h1:K6n/GZHFTtEoKT5aUG3l9diPi0VduZNQ1PfdnpkkIFk= +cloud.google.com/go/iam v1.1.4/go.mod h1:l/rg8l1AaA+VFMho/HYx2Vv6xinPSLMF8qfhRPIZ0L8= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= @@ -265,12 +268,14 @@ github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEe github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= github.com/cenkalti/backoff/v4 v4.2.0 h1:HN5dHm3WBOgndBH6E8V0q2jIYIR3s9yglV8k/+MN3u4= +github.com/cenkalti/backoff/v4 v4.2.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/logex v1.2.1 h1:XHDu3E6q+gdHgsdTPH6ImJMIp436vR6MPtH8gP05QzM= @@ -281,6 +286,7 @@ github.com/chzyer/readline v1.5.1/go.mod h1:Eh+b79XXUwfKfcPLepksvw2tcLE/Ct21YObk github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/chzyer/test v1.0.0 h1:p3BQDXSxOhOG0P9z6/hGnII4LGiEPOYBhs8asl/fC04= github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8= +github.com/cilium/ebpf v0.7.0/go.mod h1:/oI2+1shJiTGAMgl6/RgJr36Eo1jzrRcAWbcXO2usCA= github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= @@ -300,11 +306,13 @@ github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:z github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= github.com/confio/ics23/go v0.9.0 h1:cWs+wdbS2KRPZezoaaj+qBleXgUk5WOQFMP3CQFGTr4= github.com/confio/ics23/go v0.9.0/go.mod h1:4LPZ2NYqnYIVRklaozjNR1FScgDJ2s5Xrp+e/mYVRak= +github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U= github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cosmology-tech/starship/clients/go/client v0.0.0-20230502170738-1ab63f187c7c h1:ObWS5y64vzXGIP4jQ5SKD9Z1VGAjzKlcEGyPZMPHm0w= @@ -345,6 +353,7 @@ github.com/creachadair/taskgroup v0.4.2/go.mod h1:qiXUOSrbwAY3u0JPGTzObbE3yf9hcX github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/cucumber/common/gherkin/go/v22 v22.0.0 h1:4K8NqptbvdOrjL9DEea6HFjSpbdT9+Q5kgLpmmsHYl0= github.com/cucumber/common/messages/go/v17 v17.1.1 h1:RNqopvIFyLWnKv0LfATh34SWBhXeoFTJnSrgm9cT/Ts= +github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= github.com/danieljoos/wincred v1.1.2 h1:QLdCxFs1/Yl4zduvBdcHB8goaYk9RARS2SgLLRuAyr0= github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnGqR5Vl2tAx0= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -365,6 +374,7 @@ github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUn github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WAFKLNi6ZS0675eEUC9y3AlwSbQu1Y= github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= +github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= @@ -393,9 +403,11 @@ github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 h1:7HZCaLC5+BZpm github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk= +github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= +github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= @@ -441,6 +453,7 @@ github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/E github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/godbus/dbus/v5 v5.0.6/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v4.3.0+incompatible h1:CaSVZxm5B+7o45rtab4jC2G37WGYX1zQfuU2i6DSvnc= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/googleapis v1.4.1-0.20201022092350-68b0159b7869 h1:kRpU4zq+Pzh4feET49aEWPOzwQy3U2SsbZEQ7QEcif0= @@ -453,6 +466,7 @@ github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v1.1.2 h1:DVjP2PbBOzHyzA+dn3WhHIq4NdVu3Q+pvivFICf/7fo= +github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -513,6 +527,7 @@ github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8 github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= @@ -542,14 +557,17 @@ github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o= +github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= +github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= github.com/googleapis/enterprise-certificate-proxy v0.2.5 h1:UR4rDjcgpgEnqpIEvkiqTYKBCKLNmlge2eVjoZfySzM= +github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= @@ -560,6 +578,7 @@ github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= github.com/googleapis/gax-go/v2 v2.12.0 h1:A+gCJKdRfqXkr+BIRGtZLibNXf0m1f9E4HG56etFpas= +github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= @@ -583,6 +602,7 @@ github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 h1:6UKoz5ujsI55KNpsJH3UwCq3T8kKbZwNZBNPuTTje8U= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1/go.mod h1:YvJ2f6MplWDhfxiUC3KpyTy76kYUZA4W3pTv/wdKQ9Y= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= @@ -681,6 +701,7 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxv github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -734,6 +755,7 @@ github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:F github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/moby/sys/mountinfo v0.5.0/go.mod h1:3bMD3Rg+zkqx8MRYPi7Pyb0Ie97QEBmdxbhnCLlSvSU= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -741,6 +763,7 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mrunalp/fileutils v0.5.0/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ= github.com/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= @@ -774,10 +797,15 @@ github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1y github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY= github.com/onsi/gomega v1.19.0/go.mod h1:LY+I3pBVzYsTBU1AnDwOSxaYi9WoWiqgwooUqq9yPro= github.com/onsi/gomega v1.27.4 h1:Z2AnStgsdSayCMDiCU42qIz+HLqEPcgiOCXjAU/w+8E= +github.com/onsi/gomega v1.27.4/go.mod h1:riYq/GJKh8hhoM01HN6Vmuy93AarCXCBGpvFDK3q3fQ= github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b h1:YWuSjZCQAPM8UUBLkYUk1e+rZcvWHJmFb6i6rM44Xs8= +github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b/go.mod h1:3OVijpioIKYWTqjiG0zfF6wvoJ4fAXGbjdZuI2NgsRQ= github.com/opencontainers/runc v1.1.4 h1:nRCz/8sKg6K6jgYAFLDlXzPeITBZJyX28DBVhWD+5dg= +github.com/opencontainers/runc v1.1.4/go.mod h1:1J5XiS+vdZ3wCyZybsuxXZWGrgSr8fFJHLXuG2PsnNg= +github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/selinux v1.10.0/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI= github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= @@ -825,6 +853,7 @@ github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1: github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.4.0 h1:5lQXD3cAg1OXBf4Wq03gTrXHeaV0TQvGfUooCfx1yqY= +github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= @@ -851,6 +880,7 @@ github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6So github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.8.3 h1:O+qNyWn7Z+F9M0ILBHgMVPuB1xTOucVd5gtaYyXBpRo= github.com/rs/cors v1.8.3/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= @@ -865,11 +895,13 @@ github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0 github.com/sasha-s/go-deadlock v0.3.1 h1:sqv7fDNShgjcaxkO0JNcOAlr8B9+cV5Ey/OB71efZx0= github.com/sasha-s/go-deadlock v0.3.1/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM= github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= +github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646/go.mod h1:JA8cRccbGaA1s33RQf7Y1+q9gHmZX1yB/z9WDN1C6fg= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= @@ -917,8 +949,10 @@ github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1F github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d h1:vfofYNRScrDdvS342BElfbETmL1Aiz3i2t0zfRj16Hs= github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d/go.mod h1:RRCYJbIwD5jmqPI9XoAFR0OcDxqUctll6zUj/+B4S48= github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2lyGa2E= @@ -941,6 +975,8 @@ github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8= github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= +github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -973,6 +1009,7 @@ go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= +go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= @@ -981,6 +1018,7 @@ go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9E go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= +go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -996,6 +1034,7 @@ golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1097,6 +1136,7 @@ golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfS golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1123,6 +1163,7 @@ golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= golang.org/x/oauth2 v0.1.0/go.mod h1:G9FE4dLTsbXUu90h/Pf85g4w1D+SSAgR+q46nJZ8M4A= golang.org/x/oauth2 v0.13.0 h1:jDDenyj+WgFtmV3zYVoi8aE2BwtXFLWOA67ZfNWftiY= +golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1138,6 +1179,7 @@ golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1155,6 +1197,7 @@ golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1163,6 +1206,7 @@ golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191115151921-52ab43148777/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1192,6 +1236,7 @@ golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1210,8 +1255,11 @@ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210906170528-6f6e22806c34/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1235,10 +1283,12 @@ golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.13.0 h1:bb+I9cTfFazGW51MZqBVmZy7+JEJMouUHTUSKVQLBek= +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1250,6 +1300,7 @@ golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1318,6 +1369,7 @@ golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.10.0 h1:tvDr/iQoUqNdohiYm0LmmKcBk+q86lb9EprIUFhHHGg= +golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1377,6 +1429,7 @@ google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= google.golang.org/api v0.139.0 h1:A1TrCPgMmOiYu0AiNkvQIpIx+D8blHTDcJ5EogkP7LI= +google.golang.org/api v0.139.0/go.mod h1:CVagp6Eekz9CjGZ718Z+sloknzkDJE7Vc1Ckj9+viBk= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1495,8 +1548,11 @@ google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 h1:I6WNifs6pF9tNdSob2W24JtyxIYjzFB9qDlpUC76q+U= +google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405/go.mod h1:3WDQMjmJk36UQhjQ89emUzb1mdaHcPeeAh4SCBKznB4= google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 h1:JpwMPBpFN3uKhdaekDpiNlImDdkUAyiJ6ez/uxGaUSo= +google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17/go.mod h1:0xJLfVdJqpAPl8tDg1ujOCGzx6LFLttXT5NhllGOXY4= google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 h1:AB/lmRny7e2pLhFEYIbl5qkDAUt2h0ZRO4wGPhZf+ik= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= @@ -1539,6 +1595,7 @@ google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCD google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -1556,6 +1613,7 @@ google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= +google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/Makefile b/starship/Makefile similarity index 100% rename from Makefile rename to starship/Makefile diff --git a/charts/devnet/.helmignore b/starship/charts/devnet/.helmignore similarity index 100% rename from charts/devnet/.helmignore rename to starship/charts/devnet/.helmignore diff --git a/charts/devnet/Chart.yaml b/starship/charts/devnet/Chart.yaml similarity index 100% rename from charts/devnet/Chart.yaml rename to starship/charts/devnet/Chart.yaml diff --git a/charts/devnet/configs/grafana-dashboards/chains.json b/starship/charts/devnet/configs/grafana-dashboards/chains.json similarity index 100% rename from charts/devnet/configs/grafana-dashboards/chains.json rename to starship/charts/devnet/configs/grafana-dashboards/chains.json diff --git a/charts/devnet/configs/keys.json b/starship/charts/devnet/configs/keys.json similarity index 100% rename from charts/devnet/configs/keys.json rename to starship/charts/devnet/configs/keys.json diff --git a/charts/devnet/defaults.yaml b/starship/charts/devnet/defaults.yaml similarity index 100% rename from charts/devnet/defaults.yaml rename to starship/charts/devnet/defaults.yaml diff --git a/charts/devnet/scripts/default/build-chain.sh b/starship/charts/devnet/scripts/default/build-chain.sh similarity index 100% rename from charts/devnet/scripts/default/build-chain.sh rename to starship/charts/devnet/scripts/default/build-chain.sh diff --git a/charts/devnet/scripts/default/create-genesis.sh b/starship/charts/devnet/scripts/default/create-genesis.sh similarity index 100% rename from charts/devnet/scripts/default/create-genesis.sh rename to starship/charts/devnet/scripts/default/create-genesis.sh diff --git a/charts/devnet/scripts/default/create-validator.sh b/starship/charts/devnet/scripts/default/create-validator.sh similarity index 100% rename from charts/devnet/scripts/default/create-validator.sh rename to starship/charts/devnet/scripts/default/create-validator.sh diff --git a/charts/devnet/scripts/default/transfer-tokens.sh b/starship/charts/devnet/scripts/default/transfer-tokens.sh similarity index 100% rename from charts/devnet/scripts/default/transfer-tokens.sh rename to starship/charts/devnet/scripts/default/transfer-tokens.sh diff --git a/charts/devnet/scripts/default/update-config.sh b/starship/charts/devnet/scripts/default/update-config.sh similarity index 100% rename from charts/devnet/scripts/default/update-config.sh rename to starship/charts/devnet/scripts/default/update-config.sh diff --git a/charts/devnet/scripts/default/update-genesis.sh b/starship/charts/devnet/scripts/default/update-genesis.sh similarity index 100% rename from charts/devnet/scripts/default/update-genesis.sh rename to starship/charts/devnet/scripts/default/update-genesis.sh diff --git a/charts/devnet/scripts/injective/create-genesis.sh b/starship/charts/devnet/scripts/injective/create-genesis.sh similarity index 100% rename from charts/devnet/scripts/injective/create-genesis.sh rename to starship/charts/devnet/scripts/injective/create-genesis.sh diff --git a/charts/devnet/scripts/injective/create-validator.sh b/starship/charts/devnet/scripts/injective/create-validator.sh similarity index 100% rename from charts/devnet/scripts/injective/create-validator.sh rename to starship/charts/devnet/scripts/injective/create-validator.sh diff --git a/charts/devnet/scripts/injective/update-genesis.sh b/starship/charts/devnet/scripts/injective/update-genesis.sh similarity index 100% rename from charts/devnet/scripts/injective/update-genesis.sh rename to starship/charts/devnet/scripts/injective/update-genesis.sh diff --git a/charts/devnet/scripts/neutron/create-neutron-genesis.sh b/starship/charts/devnet/scripts/neutron/create-neutron-genesis.sh similarity index 100% rename from charts/devnet/scripts/neutron/create-neutron-genesis.sh rename to starship/charts/devnet/scripts/neutron/create-neutron-genesis.sh diff --git a/charts/devnet/templates/_chains.tpl b/starship/charts/devnet/templates/_chains.tpl similarity index 100% rename from charts/devnet/templates/_chains.tpl rename to starship/charts/devnet/templates/_chains.tpl diff --git a/charts/devnet/templates/_helpers.tpl b/starship/charts/devnet/templates/_helpers.tpl similarity index 100% rename from charts/devnet/templates/_helpers.tpl rename to starship/charts/devnet/templates/_helpers.tpl diff --git a/charts/devnet/templates/_relayers.tpl b/starship/charts/devnet/templates/_relayers.tpl similarity index 100% rename from charts/devnet/templates/_relayers.tpl rename to starship/charts/devnet/templates/_relayers.tpl diff --git a/charts/devnet/templates/chains/cosmos/cometmock.yaml b/starship/charts/devnet/templates/chains/cosmos/cometmock.yaml similarity index 100% rename from charts/devnet/templates/chains/cosmos/cometmock.yaml rename to starship/charts/devnet/templates/chains/cosmos/cometmock.yaml diff --git a/charts/devnet/templates/chains/cosmos/configmap.yaml b/starship/charts/devnet/templates/chains/cosmos/configmap.yaml similarity index 100% rename from charts/devnet/templates/chains/cosmos/configmap.yaml rename to starship/charts/devnet/templates/chains/cosmos/configmap.yaml diff --git a/charts/devnet/templates/chains/cosmos/genesis.yaml b/starship/charts/devnet/templates/chains/cosmos/genesis.yaml similarity index 100% rename from charts/devnet/templates/chains/cosmos/genesis.yaml rename to starship/charts/devnet/templates/chains/cosmos/genesis.yaml diff --git a/charts/devnet/templates/chains/cosmos/service.yaml b/starship/charts/devnet/templates/chains/cosmos/service.yaml similarity index 100% rename from charts/devnet/templates/chains/cosmos/service.yaml rename to starship/charts/devnet/templates/chains/cosmos/service.yaml diff --git a/charts/devnet/templates/chains/cosmos/validator.yaml b/starship/charts/devnet/templates/chains/cosmos/validator.yaml similarity index 100% rename from charts/devnet/templates/chains/cosmos/validator.yaml rename to starship/charts/devnet/templates/chains/cosmos/validator.yaml diff --git a/charts/devnet/templates/chains/virtual/eth/configmap.yaml b/starship/charts/devnet/templates/chains/virtual/eth/configmap.yaml similarity index 100% rename from charts/devnet/templates/chains/virtual/eth/configmap.yaml rename to starship/charts/devnet/templates/chains/virtual/eth/configmap.yaml diff --git a/charts/devnet/templates/chains/virtual/eth/secrets.yaml b/starship/charts/devnet/templates/chains/virtual/eth/secrets.yaml similarity index 100% rename from charts/devnet/templates/chains/virtual/eth/secrets.yaml rename to starship/charts/devnet/templates/chains/virtual/eth/secrets.yaml diff --git a/charts/devnet/templates/chains/virtual/eth/service.yaml b/starship/charts/devnet/templates/chains/virtual/eth/service.yaml similarity index 100% rename from charts/devnet/templates/chains/virtual/eth/service.yaml rename to starship/charts/devnet/templates/chains/virtual/eth/service.yaml diff --git a/charts/devnet/templates/chains/virtual/eth/statefulset.yaml b/starship/charts/devnet/templates/chains/virtual/eth/statefulset.yaml similarity index 100% rename from charts/devnet/templates/chains/virtual/eth/statefulset.yaml rename to starship/charts/devnet/templates/chains/virtual/eth/statefulset.yaml diff --git a/charts/devnet/templates/explorer.yaml b/starship/charts/devnet/templates/explorer.yaml similarity index 100% rename from charts/devnet/templates/explorer.yaml rename to starship/charts/devnet/templates/explorer.yaml diff --git a/charts/devnet/templates/ingress/cert-issuer.yaml b/starship/charts/devnet/templates/ingress/cert-issuer.yaml similarity index 100% rename from charts/devnet/templates/ingress/cert-issuer.yaml rename to starship/charts/devnet/templates/ingress/cert-issuer.yaml diff --git a/charts/devnet/templates/ingress/ingress.yaml b/starship/charts/devnet/templates/ingress/ingress.yaml similarity index 100% rename from charts/devnet/templates/ingress/ingress.yaml rename to starship/charts/devnet/templates/ingress/ingress.yaml diff --git a/charts/devnet/templates/monitoring/grafana.yaml b/starship/charts/devnet/templates/monitoring/grafana.yaml similarity index 100% rename from charts/devnet/templates/monitoring/grafana.yaml rename to starship/charts/devnet/templates/monitoring/grafana.yaml diff --git a/charts/devnet/templates/monitoring/prometheus.yaml b/starship/charts/devnet/templates/monitoring/prometheus.yaml similarity index 100% rename from charts/devnet/templates/monitoring/prometheus.yaml rename to starship/charts/devnet/templates/monitoring/prometheus.yaml diff --git a/charts/devnet/templates/registry.yaml b/starship/charts/devnet/templates/registry.yaml similarity index 100% rename from charts/devnet/templates/registry.yaml rename to starship/charts/devnet/templates/registry.yaml diff --git a/charts/devnet/templates/relayers/go-relayer/configmap.yaml b/starship/charts/devnet/templates/relayers/go-relayer/configmap.yaml similarity index 100% rename from charts/devnet/templates/relayers/go-relayer/configmap.yaml rename to starship/charts/devnet/templates/relayers/go-relayer/configmap.yaml diff --git a/charts/devnet/templates/relayers/go-relayer/statefulset.yaml b/starship/charts/devnet/templates/relayers/go-relayer/statefulset.yaml similarity index 100% rename from charts/devnet/templates/relayers/go-relayer/statefulset.yaml rename to starship/charts/devnet/templates/relayers/go-relayer/statefulset.yaml diff --git a/charts/devnet/templates/relayers/hermes/configmap.yaml b/starship/charts/devnet/templates/relayers/hermes/configmap.yaml similarity index 100% rename from charts/devnet/templates/relayers/hermes/configmap.yaml rename to starship/charts/devnet/templates/relayers/hermes/configmap.yaml diff --git a/charts/devnet/templates/relayers/hermes/service.yaml b/starship/charts/devnet/templates/relayers/hermes/service.yaml similarity index 100% rename from charts/devnet/templates/relayers/hermes/service.yaml rename to starship/charts/devnet/templates/relayers/hermes/service.yaml diff --git a/charts/devnet/templates/relayers/hermes/statefulset.yaml b/starship/charts/devnet/templates/relayers/hermes/statefulset.yaml similarity index 100% rename from charts/devnet/templates/relayers/hermes/statefulset.yaml rename to starship/charts/devnet/templates/relayers/hermes/statefulset.yaml diff --git a/charts/devnet/templates/relayers/ts-relayer/configmap.yaml b/starship/charts/devnet/templates/relayers/ts-relayer/configmap.yaml similarity index 100% rename from charts/devnet/templates/relayers/ts-relayer/configmap.yaml rename to starship/charts/devnet/templates/relayers/ts-relayer/configmap.yaml diff --git a/charts/devnet/templates/relayers/ts-relayer/statefulset.yaml b/starship/charts/devnet/templates/relayers/ts-relayer/statefulset.yaml similarity index 100% rename from charts/devnet/templates/relayers/ts-relayer/statefulset.yaml rename to starship/charts/devnet/templates/relayers/ts-relayer/statefulset.yaml diff --git a/charts/devnet/values.schema.json b/starship/charts/devnet/values.schema.json similarity index 100% rename from charts/devnet/values.schema.json rename to starship/charts/devnet/values.schema.json diff --git a/charts/devnet/values.yaml b/starship/charts/devnet/values.yaml similarity index 100% rename from charts/devnet/values.yaml rename to starship/charts/devnet/values.yaml diff --git a/cmd/starship/Makefile b/starship/cmd/starship/Makefile similarity index 100% rename from cmd/starship/Makefile rename to starship/cmd/starship/Makefile diff --git a/cmd/starship/charts.go b/starship/cmd/starship/charts.go similarity index 100% rename from cmd/starship/charts.go rename to starship/cmd/starship/charts.go diff --git a/cmd/starship/config.go b/starship/cmd/starship/config.go similarity index 100% rename from cmd/starship/config.go rename to starship/cmd/starship/config.go diff --git a/cmd/starship/connect.go b/starship/cmd/starship/connect.go similarity index 100% rename from cmd/starship/connect.go rename to starship/cmd/starship/connect.go diff --git a/cmd/starship/const.go b/starship/cmd/starship/const.go similarity index 100% rename from cmd/starship/const.go rename to starship/cmd/starship/const.go diff --git a/cmd/starship/go.mod b/starship/cmd/starship/go.mod similarity index 100% rename from cmd/starship/go.mod rename to starship/cmd/starship/go.mod diff --git a/cmd/starship/go.sum b/starship/cmd/starship/go.sum similarity index 100% rename from cmd/starship/go.sum rename to starship/cmd/starship/go.sum diff --git a/cmd/starship/main.go b/starship/cmd/starship/main.go similarity index 100% rename from cmd/starship/main.go rename to starship/cmd/starship/main.go diff --git a/cmd/starship/model.go b/starship/cmd/starship/model.go similarity index 100% rename from cmd/starship/model.go rename to starship/cmd/starship/model.go diff --git a/cmd/starship/root.go b/starship/cmd/starship/root.go similarity index 100% rename from cmd/starship/root.go rename to starship/cmd/starship/root.go diff --git a/docker/Makefile b/starship/docker/Makefile similarity index 100% rename from docker/Makefile rename to starship/docker/Makefile diff --git a/docker/chains/Dockerfile b/starship/docker/chains/Dockerfile similarity index 100% rename from docker/chains/Dockerfile rename to starship/docker/chains/Dockerfile diff --git a/docker/chains/Dockerfile.injective b/starship/docker/chains/Dockerfile.injective similarity index 100% rename from docker/chains/Dockerfile.injective rename to starship/docker/chains/Dockerfile.injective diff --git a/docker/chains/Dockerfile.union b/starship/docker/chains/Dockerfile.union similarity index 100% rename from docker/chains/Dockerfile.union rename to starship/docker/chains/Dockerfile.union diff --git a/docker/chains/build-docker-chains.sh b/starship/docker/chains/build-docker-chains.sh similarity index 100% rename from docker/chains/build-docker-chains.sh rename to starship/docker/chains/build-docker-chains.sh diff --git a/docker/chains/versions.yaml b/starship/docker/chains/versions.yaml similarity index 100% rename from docker/chains/versions.yaml rename to starship/docker/chains/versions.yaml diff --git a/docker/explorers/ping-pub/Dockerfile b/starship/docker/explorers/ping-pub/Dockerfile similarity index 100% rename from docker/explorers/ping-pub/Dockerfile rename to starship/docker/explorers/ping-pub/Dockerfile diff --git a/docker/explorers/ping-pub/versions.yaml b/starship/docker/explorers/ping-pub/versions.yaml similarity index 100% rename from docker/explorers/ping-pub/versions.yaml rename to starship/docker/explorers/ping-pub/versions.yaml diff --git a/docker/faucet/cosmjs-faucet/Dockerfile b/starship/docker/faucet/cosmjs-faucet/Dockerfile similarity index 100% rename from docker/faucet/cosmjs-faucet/Dockerfile rename to starship/docker/faucet/cosmjs-faucet/Dockerfile diff --git a/docker/faucet/cosmjs-faucet/versions.yaml b/starship/docker/faucet/cosmjs-faucet/versions.yaml similarity index 100% rename from docker/faucet/cosmjs-faucet/versions.yaml rename to starship/docker/faucet/cosmjs-faucet/versions.yaml diff --git a/docker/relayers/go-relayer/Dockerfile b/starship/docker/relayers/go-relayer/Dockerfile similarity index 100% rename from docker/relayers/go-relayer/Dockerfile rename to starship/docker/relayers/go-relayer/Dockerfile diff --git a/docker/relayers/go-relayer/versions.yaml b/starship/docker/relayers/go-relayer/versions.yaml similarity index 100% rename from docker/relayers/go-relayer/versions.yaml rename to starship/docker/relayers/go-relayer/versions.yaml diff --git a/docker/relayers/hermes/Dockerfile b/starship/docker/relayers/hermes/Dockerfile similarity index 100% rename from docker/relayers/hermes/Dockerfile rename to starship/docker/relayers/hermes/Dockerfile diff --git a/docker/relayers/hermes/versions.yaml b/starship/docker/relayers/hermes/versions.yaml similarity index 100% rename from docker/relayers/hermes/versions.yaml rename to starship/docker/relayers/hermes/versions.yaml diff --git a/docker/relayers/ts-relayer/Dockerfile b/starship/docker/relayers/ts-relayer/Dockerfile similarity index 100% rename from docker/relayers/ts-relayer/Dockerfile rename to starship/docker/relayers/ts-relayer/Dockerfile diff --git a/docker/relayers/ts-relayer/versions.yaml b/starship/docker/relayers/ts-relayer/versions.yaml similarity index 100% rename from docker/relayers/ts-relayer/versions.yaml rename to starship/docker/relayers/ts-relayer/versions.yaml diff --git a/docker/starship/base/Dockerfile b/starship/docker/starship/base/Dockerfile similarity index 100% rename from docker/starship/base/Dockerfile rename to starship/docker/starship/base/Dockerfile diff --git a/docker/starship/base/Dockerfile.arm64 b/starship/docker/starship/base/Dockerfile.arm64 similarity index 100% rename from docker/starship/base/Dockerfile.arm64 rename to starship/docker/starship/base/Dockerfile.arm64 diff --git a/docker/starship/builder/Dockerfile b/starship/docker/starship/builder/Dockerfile similarity index 100% rename from docker/starship/builder/Dockerfile rename to starship/docker/starship/builder/Dockerfile diff --git a/docker/starship/runner/Dockerfile b/starship/docker/starship/runner/Dockerfile similarity index 100% rename from docker/starship/runner/Dockerfile rename to starship/docker/starship/runner/Dockerfile diff --git a/exposer/Dockerfile b/starship/exposer/Dockerfile similarity index 100% rename from exposer/Dockerfile rename to starship/exposer/Dockerfile diff --git a/exposer/Makefile b/starship/exposer/Makefile similarity index 100% rename from exposer/Makefile rename to starship/exposer/Makefile diff --git a/exposer/app.go b/starship/exposer/app.go similarity index 100% rename from exposer/app.go rename to starship/exposer/app.go diff --git a/exposer/config.go b/starship/exposer/config.go similarity index 100% rename from exposer/config.go rename to starship/exposer/config.go diff --git a/exposer/const.go b/starship/exposer/const.go similarity index 100% rename from exposer/const.go rename to starship/exposer/const.go diff --git a/exposer/error.go b/starship/exposer/error.go similarity index 100% rename from exposer/error.go rename to starship/exposer/error.go diff --git a/exposer/exposer/mnemonic.pb.go b/starship/exposer/exposer/mnemonic.pb.go similarity index 100% rename from exposer/exposer/mnemonic.pb.go rename to starship/exposer/exposer/mnemonic.pb.go diff --git a/exposer/exposer/node.pb.go b/starship/exposer/exposer/node.pb.go similarity index 100% rename from exposer/exposer/node.pb.go rename to starship/exposer/exposer/node.pb.go diff --git a/exposer/exposer/service.pb.go b/starship/exposer/exposer/service.pb.go similarity index 100% rename from exposer/exposer/service.pb.go rename to starship/exposer/exposer/service.pb.go diff --git a/exposer/exposer/service.pb.gw.go b/starship/exposer/exposer/service.pb.gw.go similarity index 100% rename from exposer/exposer/service.pb.gw.go rename to starship/exposer/exposer/service.pb.gw.go diff --git a/exposer/exposer/service_grpc.pb.go b/starship/exposer/exposer/service_grpc.pb.go similarity index 100% rename from exposer/exposer/service_grpc.pb.go rename to starship/exposer/exposer/service_grpc.pb.go diff --git a/exposer/go.mod b/starship/exposer/go.mod similarity index 100% rename from exposer/go.mod rename to starship/exposer/go.mod diff --git a/exposer/go.sum b/starship/exposer/go.sum similarity index 100% rename from exposer/go.sum rename to starship/exposer/go.sum diff --git a/exposer/handler_chain.go b/starship/exposer/handler_chain.go similarity index 100% rename from exposer/handler_chain.go rename to starship/exposer/handler_chain.go diff --git a/exposer/handler_relayer.go b/starship/exposer/handler_relayer.go similarity index 100% rename from exposer/handler_relayer.go rename to starship/exposer/handler_relayer.go diff --git a/exposer/main.go b/starship/exposer/main.go similarity index 100% rename from exposer/main.go rename to starship/exposer/main.go diff --git a/exposer/testdata/genesis.json b/starship/exposer/testdata/genesis.json similarity index 100% rename from exposer/testdata/genesis.json rename to starship/exposer/testdata/genesis.json diff --git a/exposer/testdata/keys.json b/starship/exposer/testdata/keys.json similarity index 100% rename from exposer/testdata/keys.json rename to starship/exposer/testdata/keys.json diff --git a/exposer/testdata/priv_validator_key.json b/starship/exposer/testdata/priv_validator_key.json similarity index 100% rename from exposer/testdata/priv_validator_key.json rename to starship/exposer/testdata/priv_validator_key.json diff --git a/exposer/utils.go b/starship/exposer/utils.go similarity index 100% rename from exposer/utils.go rename to starship/exposer/utils.go diff --git a/faucet/.gitignore b/starship/faucet/.gitignore similarity index 100% rename from faucet/.gitignore rename to starship/faucet/.gitignore diff --git a/faucet/Dockerfile b/starship/faucet/Dockerfile similarity index 100% rename from faucet/Dockerfile rename to starship/faucet/Dockerfile diff --git a/faucet/Makefile b/starship/faucet/Makefile similarity index 100% rename from faucet/Makefile rename to starship/faucet/Makefile diff --git a/faucet/app.go b/starship/faucet/app.go similarity index 100% rename from faucet/app.go rename to starship/faucet/app.go diff --git a/faucet/coin.go b/starship/faucet/coin.go similarity index 100% rename from faucet/coin.go rename to starship/faucet/coin.go diff --git a/faucet/config.go b/starship/faucet/config.go similarity index 100% rename from faucet/config.go rename to starship/faucet/config.go diff --git a/faucet/const.go b/starship/faucet/const.go similarity index 100% rename from faucet/const.go rename to starship/faucet/const.go diff --git a/faucet/distributor.go b/starship/faucet/distributor.go similarity index 100% rename from faucet/distributor.go rename to starship/faucet/distributor.go diff --git a/faucet/faucet/service.pb.go b/starship/faucet/faucet/service.pb.go similarity index 100% rename from faucet/faucet/service.pb.go rename to starship/faucet/faucet/service.pb.go diff --git a/faucet/faucet/service.pb.gw.go b/starship/faucet/faucet/service.pb.gw.go similarity index 100% rename from faucet/faucet/service.pb.gw.go rename to starship/faucet/faucet/service.pb.gw.go diff --git a/faucet/faucet/service_grpc.pb.go b/starship/faucet/faucet/service_grpc.pb.go similarity index 100% rename from faucet/faucet/service_grpc.pb.go rename to starship/faucet/faucet/service_grpc.pb.go diff --git a/faucet/faucet/status.pb.go b/starship/faucet/faucet/status.pb.go similarity index 100% rename from faucet/faucet/status.pb.go rename to starship/faucet/faucet/status.pb.go diff --git a/faucet/go.mod b/starship/faucet/go.mod similarity index 100% rename from faucet/go.mod rename to starship/faucet/go.mod diff --git a/faucet/go.sum b/starship/faucet/go.sum similarity index 100% rename from faucet/go.sum rename to starship/faucet/go.sum diff --git a/faucet/handler.go b/starship/faucet/handler.go similarity index 100% rename from faucet/handler.go rename to starship/faucet/handler.go diff --git a/faucet/main.go b/starship/faucet/main.go similarity index 100% rename from faucet/main.go rename to starship/faucet/main.go diff --git a/faucet/utils.go b/starship/faucet/utils.go similarity index 100% rename from faucet/utils.go rename to starship/faucet/utils.go diff --git a/go.work b/starship/go.work similarity index 65% rename from go.work rename to starship/go.work index b526737b7..bda96b5db 100644 --- a/go.work +++ b/starship/go.work @@ -1,10 +1,8 @@ go 1.21 use ( - ./clients/go/client ./cmd/starship - ./examples/upgrade-test ./exposer ./faucet ./registry diff --git a/go.work.sum b/starship/go.work.sum similarity index 100% rename from go.work.sum rename to starship/go.work.sum diff --git a/proto/Makefile b/starship/proto/Makefile similarity index 100% rename from proto/Makefile rename to starship/proto/Makefile diff --git a/proto/buf.gen.yaml b/starship/proto/buf.gen.yaml similarity index 100% rename from proto/buf.gen.yaml rename to starship/proto/buf.gen.yaml diff --git a/proto/buf.lock b/starship/proto/buf.lock similarity index 100% rename from proto/buf.lock rename to starship/proto/buf.lock diff --git a/proto/buf.yaml b/starship/proto/buf.yaml similarity index 100% rename from proto/buf.yaml rename to starship/proto/buf.yaml diff --git a/proto/exposer/mnemonic.proto b/starship/proto/exposer/mnemonic.proto similarity index 100% rename from proto/exposer/mnemonic.proto rename to starship/proto/exposer/mnemonic.proto diff --git a/proto/exposer/node.proto b/starship/proto/exposer/node.proto similarity index 100% rename from proto/exposer/node.proto rename to starship/proto/exposer/node.proto diff --git a/proto/exposer/service.proto b/starship/proto/exposer/service.proto similarity index 100% rename from proto/exposer/service.proto rename to starship/proto/exposer/service.proto diff --git a/proto/faucet/service.proto b/starship/proto/faucet/service.proto similarity index 100% rename from proto/faucet/service.proto rename to starship/proto/faucet/service.proto diff --git a/proto/faucet/status.proto b/starship/proto/faucet/status.proto similarity index 100% rename from proto/faucet/status.proto rename to starship/proto/faucet/status.proto diff --git a/proto/registry/chain.proto b/starship/proto/registry/chain.proto similarity index 100% rename from proto/registry/chain.proto rename to starship/proto/registry/chain.proto diff --git a/proto/registry/ibc.proto b/starship/proto/registry/ibc.proto similarity index 100% rename from proto/registry/ibc.proto rename to starship/proto/registry/ibc.proto diff --git a/proto/registry/mnemonic.proto b/starship/proto/registry/mnemonic.proto similarity index 100% rename from proto/registry/mnemonic.proto rename to starship/proto/registry/mnemonic.proto diff --git a/proto/registry/service.proto b/starship/proto/registry/service.proto similarity index 100% rename from proto/registry/service.proto rename to starship/proto/registry/service.proto diff --git a/registry/.gitignore b/starship/registry/.gitignore similarity index 100% rename from registry/.gitignore rename to starship/registry/.gitignore diff --git a/registry/Dockerfile b/starship/registry/Dockerfile similarity index 100% rename from registry/Dockerfile rename to starship/registry/Dockerfile diff --git a/registry/Makefile b/starship/registry/Makefile similarity index 100% rename from registry/Makefile rename to starship/registry/Makefile diff --git a/registry/app.go b/starship/registry/app.go similarity index 100% rename from registry/app.go rename to starship/registry/app.go diff --git a/registry/chain.go b/starship/registry/chain.go similarity index 100% rename from registry/chain.go rename to starship/registry/chain.go diff --git a/registry/config.go b/starship/registry/config.go similarity index 100% rename from registry/config.go rename to starship/registry/config.go diff --git a/registry/const.go b/starship/registry/const.go similarity index 100% rename from registry/const.go rename to starship/registry/const.go diff --git a/registry/go.mod b/starship/registry/go.mod similarity index 100% rename from registry/go.mod rename to starship/registry/go.mod diff --git a/registry/go.sum b/starship/registry/go.sum similarity index 100% rename from registry/go.sum rename to starship/registry/go.sum diff --git a/registry/handler.go b/starship/registry/handler.go similarity index 100% rename from registry/handler.go rename to starship/registry/handler.go diff --git a/registry/main.go b/starship/registry/main.go similarity index 100% rename from registry/main.go rename to starship/registry/main.go diff --git a/registry/model.go b/starship/registry/model.go similarity index 100% rename from registry/model.go rename to starship/registry/model.go diff --git a/registry/registry/chain.pb.go b/starship/registry/registry/chain.pb.go similarity index 100% rename from registry/registry/chain.pb.go rename to starship/registry/registry/chain.pb.go diff --git a/registry/registry/ibc.pb.go b/starship/registry/registry/ibc.pb.go similarity index 100% rename from registry/registry/ibc.pb.go rename to starship/registry/registry/ibc.pb.go diff --git a/registry/registry/mnemonic.pb.go b/starship/registry/registry/mnemonic.pb.go similarity index 100% rename from registry/registry/mnemonic.pb.go rename to starship/registry/registry/mnemonic.pb.go diff --git a/registry/registry/service.pb.go b/starship/registry/registry/service.pb.go similarity index 100% rename from registry/registry/service.pb.go rename to starship/registry/registry/service.pb.go diff --git a/registry/registry/service.pb.gw.go b/starship/registry/registry/service.pb.gw.go similarity index 100% rename from registry/registry/service.pb.gw.go rename to starship/registry/registry/service.pb.gw.go diff --git a/registry/registry/service_grpc.pb.go b/starship/registry/registry/service_grpc.pb.go similarity index 100% rename from registry/registry/service_grpc.pb.go rename to starship/registry/registry/service_grpc.pb.go diff --git a/registry/testdata/cosmoshub-4/assetlist.json b/starship/registry/testdata/cosmoshub-4/assetlist.json similarity index 100% rename from registry/testdata/cosmoshub-4/assetlist.json rename to starship/registry/testdata/cosmoshub-4/assetlist.json diff --git a/registry/testdata/cosmoshub-4/chain.json b/starship/registry/testdata/cosmoshub-4/chain.json similarity index 100% rename from registry/testdata/cosmoshub-4/chain.json rename to starship/registry/testdata/cosmoshub-4/chain.json diff --git a/registry/testdata/juno-0/assetlist.json b/starship/registry/testdata/juno-0/assetlist.json similarity index 100% rename from registry/testdata/juno-0/assetlist.json rename to starship/registry/testdata/juno-0/assetlist.json diff --git a/registry/testdata/juno-0/chain.json b/starship/registry/testdata/juno-0/chain.json similarity index 100% rename from registry/testdata/juno-0/chain.json rename to starship/registry/testdata/juno-0/chain.json diff --git a/registry/testdata/osmosis-1/assetlist.json b/starship/registry/testdata/osmosis-1/assetlist.json similarity index 100% rename from registry/testdata/osmosis-1/assetlist.json rename to starship/registry/testdata/osmosis-1/assetlist.json diff --git a/registry/testdata/osmosis-1/chain.json b/starship/registry/testdata/osmosis-1/chain.json similarity index 100% rename from registry/testdata/osmosis-1/chain.json rename to starship/registry/testdata/osmosis-1/chain.json diff --git a/scripts/build-docker.sh b/starship/scripts/build-docker.sh similarity index 100% rename from scripts/build-docker.sh rename to starship/scripts/build-docker.sh diff --git a/scripts/dev-setup.sh b/starship/scripts/dev-setup.sh similarity index 100% rename from scripts/dev-setup.sh rename to starship/scripts/dev-setup.sh diff --git a/scripts/install.sh b/starship/scripts/install.sh similarity index 100% rename from scripts/install.sh rename to starship/scripts/install.sh diff --git a/scripts/port-forward.sh b/starship/scripts/port-forward.sh similarity index 100% rename from scripts/port-forward.sh rename to starship/scripts/port-forward.sh diff --git a/tests/e2e/Makefile b/starship/tests/e2e/Makefile similarity index 100% rename from tests/e2e/Makefile rename to starship/tests/e2e/Makefile diff --git a/tests/e2e/address.go b/starship/tests/e2e/address.go similarity index 100% rename from tests/e2e/address.go rename to starship/tests/e2e/address.go diff --git a/tests/e2e/config.go b/starship/tests/e2e/config.go similarity index 100% rename from tests/e2e/config.go rename to starship/tests/e2e/config.go diff --git a/tests/e2e/configs/agoric.yaml b/starship/tests/e2e/configs/agoric.yaml similarity index 100% rename from tests/e2e/configs/agoric.yaml rename to starship/tests/e2e/configs/agoric.yaml diff --git a/tests/e2e/configs/build-chain.yaml b/starship/tests/e2e/configs/build-chain.yaml similarity index 100% rename from tests/e2e/configs/build-chain.yaml rename to starship/tests/e2e/configs/build-chain.yaml diff --git a/tests/e2e/configs/evmos.yaml b/starship/tests/e2e/configs/evmos.yaml similarity index 100% rename from tests/e2e/configs/evmos.yaml rename to starship/tests/e2e/configs/evmos.yaml diff --git a/tests/e2e/configs/injective.yaml b/starship/tests/e2e/configs/injective.yaml similarity index 100% rename from tests/e2e/configs/injective.yaml rename to starship/tests/e2e/configs/injective.yaml diff --git a/tests/e2e/configs/multi-relayer.yaml b/starship/tests/e2e/configs/multi-relayer.yaml similarity index 100% rename from tests/e2e/configs/multi-relayer.yaml rename to starship/tests/e2e/configs/multi-relayer.yaml diff --git a/tests/e2e/configs/multi-validator-starship-faucet.yaml b/starship/tests/e2e/configs/multi-validator-starship-faucet.yaml similarity index 100% rename from tests/e2e/configs/multi-validator-starship-faucet.yaml rename to starship/tests/e2e/configs/multi-validator-starship-faucet.yaml diff --git a/tests/e2e/configs/multi-validator.yaml b/starship/tests/e2e/configs/multi-validator.yaml similarity index 100% rename from tests/e2e/configs/multi-validator.yaml rename to starship/tests/e2e/configs/multi-validator.yaml diff --git a/tests/e2e/configs/neutron.yaml b/starship/tests/e2e/configs/neutron.yaml similarity index 100% rename from tests/e2e/configs/neutron.yaml rename to starship/tests/e2e/configs/neutron.yaml diff --git a/tests/e2e/configs/one-chain-cometmock.yaml b/starship/tests/e2e/configs/one-chain-cometmock.yaml similarity index 100% rename from tests/e2e/configs/one-chain-cometmock.yaml rename to starship/tests/e2e/configs/one-chain-cometmock.yaml diff --git a/tests/e2e/configs/one-chain-custom-scripts.yaml b/starship/tests/e2e/configs/one-chain-custom-scripts.yaml similarity index 100% rename from tests/e2e/configs/one-chain-custom-scripts.yaml rename to starship/tests/e2e/configs/one-chain-custom-scripts.yaml diff --git a/tests/e2e/configs/one-chain-starship-faucet.yaml b/starship/tests/e2e/configs/one-chain-starship-faucet.yaml similarity index 100% rename from tests/e2e/configs/one-chain-starship-faucet.yaml rename to starship/tests/e2e/configs/one-chain-starship-faucet.yaml diff --git a/tests/e2e/configs/one-chain.yaml b/starship/tests/e2e/configs/one-chain.yaml similarity index 100% rename from tests/e2e/configs/one-chain.yaml rename to starship/tests/e2e/configs/one-chain.yaml diff --git a/tests/e2e/configs/one-custom-chain.yaml b/starship/tests/e2e/configs/one-custom-chain.yaml similarity index 100% rename from tests/e2e/configs/one-custom-chain.yaml rename to starship/tests/e2e/configs/one-custom-chain.yaml diff --git a/tests/e2e/configs/scripts/create-custom-genesis.sh b/starship/tests/e2e/configs/scripts/create-custom-genesis.sh similarity index 100% rename from tests/e2e/configs/scripts/create-custom-genesis.sh rename to starship/tests/e2e/configs/scripts/create-custom-genesis.sh diff --git a/tests/e2e/configs/scripts/create-custom-validator.sh b/starship/tests/e2e/configs/scripts/create-custom-validator.sh similarity index 100% rename from tests/e2e/configs/scripts/create-custom-validator.sh rename to starship/tests/e2e/configs/scripts/create-custom-validator.sh diff --git a/tests/e2e/configs/scripts/transfer-custom-tokens.sh b/starship/tests/e2e/configs/scripts/transfer-custom-tokens.sh similarity index 100% rename from tests/e2e/configs/scripts/transfer-custom-tokens.sh rename to starship/tests/e2e/configs/scripts/transfer-custom-tokens.sh diff --git a/tests/e2e/configs/scripts/update-custom-config.sh b/starship/tests/e2e/configs/scripts/update-custom-config.sh similarity index 100% rename from tests/e2e/configs/scripts/update-custom-config.sh rename to starship/tests/e2e/configs/scripts/update-custom-config.sh diff --git a/tests/e2e/configs/scripts/update-custom-genesis.sh b/starship/tests/e2e/configs/scripts/update-custom-genesis.sh similarity index 100% rename from tests/e2e/configs/scripts/update-custom-genesis.sh rename to starship/tests/e2e/configs/scripts/update-custom-genesis.sh diff --git a/tests/e2e/configs/simapp.yaml b/starship/tests/e2e/configs/simapp.yaml similarity index 100% rename from tests/e2e/configs/simapp.yaml rename to starship/tests/e2e/configs/simapp.yaml diff --git a/tests/e2e/configs/three-chain.yaml b/starship/tests/e2e/configs/three-chain.yaml similarity index 100% rename from tests/e2e/configs/three-chain.yaml rename to starship/tests/e2e/configs/three-chain.yaml diff --git a/tests/e2e/configs/two-chain-cometmock.yaml b/starship/tests/e2e/configs/two-chain-cometmock.yaml similarity index 100% rename from tests/e2e/configs/two-chain-cometmock.yaml rename to starship/tests/e2e/configs/two-chain-cometmock.yaml diff --git a/tests/e2e/configs/two-chain-gorelayer.yaml b/starship/tests/e2e/configs/two-chain-gorelayer.yaml similarity index 100% rename from tests/e2e/configs/two-chain-gorelayer.yaml rename to starship/tests/e2e/configs/two-chain-gorelayer.yaml diff --git a/tests/e2e/configs/two-chain-monitoring.yaml b/starship/tests/e2e/configs/two-chain-monitoring.yaml similarity index 100% rename from tests/e2e/configs/two-chain-monitoring.yaml rename to starship/tests/e2e/configs/two-chain-monitoring.yaml diff --git a/tests/e2e/configs/two-chain.yaml b/starship/tests/e2e/configs/two-chain.yaml similarity index 100% rename from tests/e2e/configs/two-chain.yaml rename to starship/tests/e2e/configs/two-chain.yaml diff --git a/tests/e2e/e2e_test.go b/starship/tests/e2e/e2e_test.go similarity index 98% rename from tests/e2e/e2e_test.go rename to starship/tests/e2e/e2e_test.go index 7dd745784..3ae60c5f3 100644 --- a/tests/e2e/e2e_test.go +++ b/starship/tests/e2e/e2e_test.go @@ -39,6 +39,7 @@ func (s *TestSuite) SetupTest() { s.T().Log(fmt.Errorf("env var %s not set, using default value", configEnvKey)) configFile = "configs/two-chain.yaml" } + configFile = strings.Replace(configFile, "starship/", "", -1) configFile = strings.Replace(configFile, "tests/e2e/", "", -1) yamlFile, err := os.ReadFile(configFile) s.Require().NoError(err) diff --git a/tests/e2e/exposer_test.go b/starship/tests/e2e/exposer_test.go similarity index 100% rename from tests/e2e/exposer_test.go rename to starship/tests/e2e/exposer_test.go diff --git a/tests/e2e/faucet_test.go b/starship/tests/e2e/faucet_test.go similarity index 100% rename from tests/e2e/faucet_test.go rename to starship/tests/e2e/faucet_test.go diff --git a/tests/e2e/go.mod b/starship/tests/e2e/go.mod similarity index 100% rename from tests/e2e/go.mod rename to starship/tests/e2e/go.mod diff --git a/tests/e2e/go.sum b/starship/tests/e2e/go.sum similarity index 100% rename from tests/e2e/go.sum rename to starship/tests/e2e/go.sum diff --git a/tests/e2e/registry_test.go b/starship/tests/e2e/registry_test.go similarity index 100% rename from tests/e2e/registry_test.go rename to starship/tests/e2e/registry_test.go diff --git a/tests/smoke/ci/multi-validator.yaml b/starship/tests/smoke/ci/multi-validator.yaml similarity index 100% rename from tests/smoke/ci/multi-validator.yaml rename to starship/tests/smoke/ci/multi-validator.yaml diff --git a/tests/smoke/ci/one-chain.yaml b/starship/tests/smoke/ci/one-chain.yaml similarity index 100% rename from tests/smoke/ci/one-chain.yaml rename to starship/tests/smoke/ci/one-chain.yaml diff --git a/tests/smoke/ci/osmojs.yaml b/starship/tests/smoke/ci/osmojs.yaml similarity index 100% rename from tests/smoke/ci/osmojs.yaml rename to starship/tests/smoke/ci/osmojs.yaml diff --git a/tests/smoke/ci/simapp.yaml b/starship/tests/smoke/ci/simapp.yaml similarity index 100% rename from tests/smoke/ci/simapp.yaml rename to starship/tests/smoke/ci/simapp.yaml diff --git a/tools/go.mod b/starship/tools/go.mod similarity index 100% rename from tools/go.mod rename to starship/tools/go.mod diff --git a/tools/go.sum b/starship/tools/go.sum similarity index 100% rename from tools/go.sum rename to starship/tools/go.sum diff --git a/tools/main.go b/starship/tools/main.go similarity index 100% rename from tools/main.go rename to starship/tools/main.go