Skip to content

Commit

Permalink
Merge branch 'main' into julien/collections-map
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored May 8, 2024
2 parents ef3292c + 5f2ffb2 commit 90264ef
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 323 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Integration
on:
pull_request:
push:
paths-ignore:
- "**.md"
branches:
- main
- release/*
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Lint
on:
pull_request:
push:
paths-ignore:
- '**.md'
branches:
- main
- release/*
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Test
on:
pull_request:
push:
paths-ignore:
- "**.md"
branches:
- main
- release/*
Expand All @@ -18,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v6.1.2
Expand All @@ -33,7 +31,7 @@ jobs:
- uses: actions/setup-go@v5
if: env.GIT_DIFF
with:
go-version: 'stable'
go-version: "stable"
cache: true
cache-dependency-path: go.sum

Expand Down
167 changes: 4 additions & 163 deletions docs/docs/08-references/01-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ To get started, create a blockchain:
* [ignite node](#ignite-node) - Make requests to a live blockchain node
* [ignite relayer](#ignite-relayer) - Connect blockchains with an IBC relayer
* [ignite scaffold](#ignite-scaffold) - Create a new blockchain, module, message, query, and more
* [ignite tools](#ignite-tools) - Tools for advanced users
* [ignite version](#ignite-version) - Print the current build information


Expand Down Expand Up @@ -1008,7 +1007,6 @@ meant to be edited by hand.
* [ignite generate openapi](#ignite-generate-openapi) - OpenAPI spec for your chain
* [ignite generate proto-go](#ignite-generate-proto-go) - Compile protocol buffer files to Go source code required by Cosmos SDK
* [ignite generate ts-client](#ignite-generate-ts-client) - TypeScript frontend client
* [ignite generate vuex](#ignite-generate-vuex) - *DEPRECATED* TypeScript frontend client and Vuex stores


## ignite generate composables
Expand Down Expand Up @@ -1176,35 +1174,6 @@ ignite generate ts-client [flags]
* [ignite generate](#ignite-generate) - Generate clients, API docs from source code


## ignite generate vuex

*DEPRECATED* TypeScript frontend client and Vuex stores

```
ignite generate vuex [flags]
```

**Options**

```
-h, --help help for vuex
-o, --output string Vuex store output path
-y, --yes answers interactive yes/no questions with yes
```

**Options inherited from parent commands**

```
--clear-cache clear the build cache (advanced)
--enable-proto-vendor enable proto package vendor for missing Buf dependencies
-p, --path string path of the app (default ".")
```

**SEE ALSO**

* [ignite generate](#ignite-generate) - Generate clients, API docs from source code


## ignite network

Launch a blockchain in production
Expand Down Expand Up @@ -2876,80 +2845,19 @@ ignite node tx bank send [from_account_or_address] [to_account_or_address] [amou

Connect blockchains with an IBC relayer

**Options**

```
-h, --help help for relayer
```

**SEE ALSO**

* [ignite](#ignite) - Ignite CLI offers everything you need to scaffold, test, build, and launch your blockchain
* [ignite relayer configure](#ignite-relayer-configure) - Configure source and target chains for relaying
* [ignite relayer connect](#ignite-relayer-connect) - Link chains associated with paths and start relaying tx packets in between


## ignite relayer configure

Configure source and target chains for relaying

```
ignite relayer configure [flags]
ignite relayer [flags]
```

**Options**

```
-a, --advanced advanced configuration options for custom IBC modules
-h, --help help for configure
--keyring-backend string keyring backend to store your account keys (default "test")
--keyring-dir string accounts keyring directory (default "/home/runner/.ignite/accounts")
--ordered set the channel as ordered
-r, --reset reset the relayer config
--source-account string source Account
--source-client-id string use a custom client id for source
--source-faucet string faucet address of the source chain
--source-gaslimit int gas limit used for transactions on source chain
--source-gasprice string gas price used for transactions on source chain
--source-port string IBC port ID on the source chain
--source-prefix string address prefix of the source chain
--source-rpc string RPC address of the source chain
--source-version string module version on the source chain
--target-account string target Account
--target-client-id string use a custom client id for target
--target-faucet string faucet address of the target chain
--target-gaslimit int gas limit used for transactions on target chain
--target-gasprice string gas price used for transactions on target chain
--target-port string IBC port ID on the target chain
--target-prefix string address prefix of the target chain
--target-rpc string RPC address of the target chain
--target-version string module version on the target chain
```

**SEE ALSO**

* [ignite relayer](#ignite-relayer) - Connect blockchains with an IBC relayer


## ignite relayer connect

Link chains associated with paths and start relaying tx packets in between

```
ignite relayer connect [<path>,...] [flags]
```

**Options**

```
-h, --help help for connect
--keyring-backend string keyring backend to store your account keys (default "test")
--keyring-dir string accounts keyring directory (default "/home/runner/.ignite/accounts")
-h, --help help for relayer
```

**SEE ALSO**

* [ignite relayer](#ignite-relayer) - Connect blockchains with an IBC relayer
* [ignite](#ignite) - Ignite CLI offers everything you need to scaffold, test, build, and launch your blockchain


## ignite scaffold
Expand Down Expand Up @@ -3101,6 +3009,7 @@ ignite scaffold chain [name] [flags]
--no-module create a project without a default module
--params strings add default module parameters
-p, --path string create a project in a specific path
--proto-dir string chain proto directory (default "proto")
--skip-git skip Git repository initialization
--skip-proto skip proto generation
```
Expand Down Expand Up @@ -3738,74 +3647,6 @@ ignite scaffold vue [flags]
* [ignite scaffold](#ignite-scaffold) - Create a new blockchain, module, message, query, and more


## ignite tools

Tools for advanced users

**Options**

```
-h, --help help for tools
```

**SEE ALSO**

* [ignite](#ignite) - Ignite CLI offers everything you need to scaffold, test, build, and launch your blockchain
* [ignite tools ibc-relayer](#ignite-tools-ibc-relayer) - TypeScript implementation of an IBC relayer
* [ignite tools ibc-setup](#ignite-tools-ibc-setup) - Collection of commands to quickly setup a relayer


## ignite tools ibc-relayer

TypeScript implementation of an IBC relayer

```
ignite tools ibc-relayer [--] [...] [flags]
```

**Examples**

```
ignite tools ibc-relayer -- -h
```

**Options**

```
-h, --help help for ibc-relayer
```

**SEE ALSO**

* [ignite tools](#ignite-tools) - Tools for advanced users


## ignite tools ibc-setup

Collection of commands to quickly setup a relayer

```
ignite tools ibc-setup [--] [...] [flags]
```

**Examples**

```
ignite tools ibc-setup -- -h
ignite tools ibc-setup -- init --src relayer_test_1 --dest relayer_test_2
```

**Options**

```
-h, --help help for ibc-setup
```

**SEE ALSO**

* [ignite tools](#ignite-tools) - Tools for advanced users


## ignite version

Print the current build information
Expand Down
11 changes: 3 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ replace (

require (
cosmossdk.io/math v1.3.0
cosmossdk.io/x/circuit v0.1.0
cosmossdk.io/x/evidence v0.1.0
cosmossdk.io/x/feegrant v0.1.0
cosmossdk.io/x/nft v0.1.1
cosmossdk.io/x/upgrade v0.1.0
github.com/99designs/keyring v1.2.2
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/DATA-DOG/go-sqlmock v1.5.2
Expand All @@ -38,8 +33,6 @@ require (
github.com/cosmos/cosmos-sdk v0.50.6
github.com/cosmos/go-bip39 v1.0.0
github.com/cosmos/gogoproto v1.4.12
github.com/cosmos/ibc-go/modules/capability v1.0.0
github.com/cosmos/ibc-go/v8 v8.2.0
github.com/emicklei/proto v1.12.2
github.com/emicklei/proto-contrib v0.15.0
github.com/go-delve/delve v1.21.0
Expand Down Expand Up @@ -169,7 +162,6 @@ require (
github.com/cilium/ebpf v0.11.0 // indirect
github.com/ckaznocha/intrange v0.1.1 // indirect
github.com/cloudflare/circl v1.3.7 // indirect
github.com/cockroachdb/apd/v2 v2.0.2 // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/pebble v1.1.0 // indirect
github.com/cockroachdb/redact v1.1.5 // indirect
Expand Down Expand Up @@ -294,6 +286,7 @@ require (
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-metrics v0.5.3 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
Expand Down Expand Up @@ -376,6 +369,7 @@ require (
github.com/oklog/run v1.1.0 // indirect
github.com/oklog/ulid v1.3.1 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.0 // indirect
Expand Down Expand Up @@ -441,6 +435,7 @@ require (
github.com/tomarrell/wrapcheck/v2 v2.8.3 // indirect
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce // indirect
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
github.com/ultraware/funlen v0.1.0 // indirect
github.com/ultraware/whitespace v0.1.0 // indirect
github.com/uudashr/gocognit v1.1.2 // indirect
Expand Down
Loading

0 comments on commit 90264ef

Please sign in to comment.