Skip to content

Commit

Permalink
feat: improve buf rate limit (#4133)
Browse files Browse the repository at this point in the history
* draft improvements

* use --path flag mutilple times

* remove `Build.Proto.ThirdPartyPaths` from the config

* add logic for run buf by folder or by file

* update cosmos-sdk

* fix exclude files for swagger

* fix buf cache

* add changelog

* update buf deps

* fix unit test

* fix wrong proto go path

* clear buf cache

* fix doctor tests and remove `third_party_paths` from the docs

* improve Test_extractRootModulePath test cases

* Update ignite/pkg/cosmosbuf/cache.go

Co-authored-by: Jerónimo Albi <[email protected]>

* fix changelog.md

* improve cache logic

* create a dircache pkg

* add comments

* rename methods `CopyCache` to `CopyTo` and `SaveCache` to `Save`

---------

Co-authored-by: Pantani <Pantani>
Co-authored-by: Jerónimo Albi <[email protected]>
(cherry picked from commit 0b41262)

# Conflicts:
#	ignite/cmd/cmd.go
#	ignite/config/chain/base/config.go
#	ignite/config/chain/v1/testdata/config.yaml
#	ignite/config/chain/v1/testdata/config2.yaml
#	ignite/internal/analytics/analytics.go
#	ignite/pkg/cosmosbuf/buf.go
#	ignite/pkg/cosmosgen/generate_go.go
#	ignite/pkg/cosmosgen/generate_openapi.go
#	integration/doctor/testdata/config-need-migrate.txt
  • Loading branch information
Pantani authored and mergify[bot] committed Jun 21, 2024
1 parent 8cebfc3 commit 86a2568
Show file tree
Hide file tree
Showing 30 changed files with 596 additions and 285 deletions.
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@
### Features

- [#4183](https://github.com/ignite/cli/pull/4183) Set `chain-id` in the client.toml
- [#3707](https://github.com/ignite/cli/pull/3707) and [#4094](https://github.com/ignite/cli/pull/4094) Add collections support.
- [#3977](https://github.com/ignite/cli/pull/3977) Add `chain lint` command to lint the chain's codebase using `golangci-lint`
- [#3770](https://github.com/ignite/cli/pull/3770) Add `scaffold configs` and `scaffold params` commands
- [#4001](https://github.com/ignite/cli/pull/4001) Improve `xgenny` dry run
- [#3967](https://github.com/ignite/cli/issues/3967) Add HD wallet parameters `address index` and `account number` to the chain account config
- [#4004](https://github.com/ignite/cli/pull/4004) Remove all import placeholders using the `xast` pkg
- [#4076](https://github.com/ignite/cli/pull/4076) Remove the ignite `relayer` and `tools` commands with all ts-relayer logic
- [#4071](https://github.com/ignite/cli/pull/4071) Support custom proto path
- [#3718](https://github.com/ignite/cli/pull/3718) Add `gen-mig-diffs` tool app to compare scaffold output of two versions of ignite
- [#4077](https://github.com/ignite/cli/pull/4077) Merge the swagger files manually instead use nodetime `swagger-combine`
- [#4100](https://github.com/ignite/cli/pull/4100) Set the `proto-dir` flag only for the `scaffold chain` command and use the proto path from the config
- [#4111](https://github.com/ignite/cli/pull/4111) Remove vuex generation
- [#4133](https://github.com/ignite/cli/pull/4133) Improve buf rate limit
- [#4113](https://github.com/ignite/cli/pull/4113) Generate chain config documentation automatically
- [#4131](https://github.com/ignite/cli/pull/4131) Support `bytes` as data type in the `scaffold` commands

### Changes

Expand Down
6 changes: 0 additions & 6 deletions docs/docs/02-guide/06-ibc.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,9 +432,6 @@ version: 1
build:
proto:
path: proto
third_party_paths:
- third_party/proto
- proto_vendor
accounts:
- name: alice
coins:
Expand Down Expand Up @@ -463,9 +460,6 @@ version: 1
build:
proto:
path: proto
third_party_paths:
- third_party/proto
- proto_vendor
accounts:
- name: alice
coins:
Expand Down
6 changes: 0 additions & 6 deletions docs/docs/02-guide/07-interchange/02-init.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,6 @@ version: 1
build:
proto:
path: proto
third_party_paths:
- third_party/proto
- proto_vendor
accounts:
- name: alice
coins:
Expand Down Expand Up @@ -164,9 +161,6 @@ version: 1
build:
proto:
path: proto
third_party_paths:
- third_party/proto
- proto_vendor
accounts:
- name: alice
coins:
Expand Down
11 changes: 0 additions & 11 deletions docs/docs/08-references/02-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,6 @@ build:
path: "myproto"
```

Ignite comes with required third-party proto out of the box. Ignite also looks
into `third_party/proto` and `proto_vendor` directories for extra proto files.
If your project keeps third-party proto files in a different directory, you
should tell Ignite about this:

```yml
build:
proto:
third_party_paths: ["my_third_party/proto"]
```

## Faucet

The faucet service sends tokens to addresses.
Expand Down
1 change: 0 additions & 1 deletion docs/versioned_docs/version-v0.25/kb/03-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ build:
| Key | Required | Type | Description |
| ----------------- | -------- | --------------- | ------------------------------------------------------------------------------------------ |
| path | N | String | Path to protocol buffer files. Default: `"proto"`. |
| third_party_paths | N | List of Strings | Path to third-party protocol buffer files. Default: `["third_party/proto", "proto_vendor"]`. |

## client

Expand Down
8 changes: 0 additions & 8 deletions docs/versioned_docs/version-v0.25/kb/06-proto.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,3 @@ Third-party proto files, including those of Cosmos SDK and Tendermint, are bundl
```protobuf
import "cosmos/base/query/v1beta1/pagination.proto";
```

You can also manually add third-party proto files. By default, Ignite CLI imports proto files from these directories: `third_party/proto` and `proto_vendor`. You can define third-party paths of the import directory in `config.yml`:

```yaml
build:
proto:
third_party_paths: ["my_third_party_proto"]
```
24 changes: 24 additions & 0 deletions ignite/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"github.com/spf13/cobra"
flag "github.com/spf13/pflag"

<<<<<<< HEAD

Check failure on line 15 in ignite/cmd/cmd.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

missing import path
"github.com/ignite/cli/v28/ignite/config"
"github.com/ignite/cli/v28/ignite/pkg/cache"
"github.com/ignite/cli/v28/ignite/pkg/cliui"
Expand All @@ -20,6 +21,26 @@ import (
"github.com/ignite/cli/v28/ignite/pkg/gitpod"
"github.com/ignite/cli/v28/ignite/pkg/goenv"
"github.com/ignite/cli/v28/ignite/version"
=======
"github.com/ignite/cli/v29/ignite/config"
chainconfig "github.com/ignite/cli/v29/ignite/config/chain"
"github.com/ignite/cli/v29/ignite/pkg/cache"
"github.com/ignite/cli/v29/ignite/pkg/cliui"
uilog "github.com/ignite/cli/v29/ignite/pkg/cliui/log"
"github.com/ignite/cli/v29/ignite/pkg/dircache"
"github.com/ignite/cli/v29/ignite/pkg/errors"
"github.com/ignite/cli/v29/ignite/pkg/gitpod"
"github.com/ignite/cli/v29/ignite/pkg/goenv"
"github.com/ignite/cli/v29/ignite/pkg/gomodulepath"
"github.com/ignite/cli/v29/ignite/version"
)

type key int

const (
keyChainConfig key = iota
keyChainConfigPath key = iota
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))
)

const (
Expand Down Expand Up @@ -228,6 +249,9 @@ func newCache(cmd *cobra.Command) (cache.Storage, error) {
if err := storage.Clear(); err != nil {
return cache.Storage{}, err
}
if err := dircache.ClearCache(); err != nil {
return cache.Storage{}, err
}
}

return storage, nil
Expand Down
8 changes: 8 additions & 0 deletions ignite/config/chain/base/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,15 @@ type Build struct {
// Proto holds proto build configs.
type Proto struct {
// Path is the relative path of where app's proto files are located at.
<<<<<<< HEAD

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type

Check failure on line 50 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

syntax error: unexpected <<, expected field name or embedded type
Path string `yaml:"path"`

// ThirdPartyPath is the relative path of where the third party proto files are
// located that used by the app.
ThirdPartyPaths []string `yaml:"third_party_paths"`
=======

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type

Check failure on line 56 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

syntax error: unexpected ==, expected field name or embedded type
Path string `yaml:"path" doc:"Relative path where the application's proto files are located."`
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

syntax error: unexpected >>, expected field name or embedded type

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 58 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

invalid character U+0023 '#'
}

// Client configures code generation for clients.
Expand Down Expand Up @@ -204,8 +208,12 @@ func DefaultConfig() Config {
return Config{
Build: Build{
Proto: Proto{
<<<<<<< HEAD

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

syntax error: unexpected <<, expected expression

Check failure on line 211 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

syntax error: unexpected <<, expected expression
Path: "proto",
ThirdPartyPaths: []string{"third_party/proto", "proto_vendor"},

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }

Check failure on line 213 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

syntax error: unexpected ] in composite literal; possibly missing comma or }
=======
Path: defaults.ProtoDir,
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test chain on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test app on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test relayer on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test ibc on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test node on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test account on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test tx on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test plugin on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test other_components on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test map on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test list on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test doctor on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test cosmosgen on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test faucet on macos-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / Lint Go code

invalid character U+0023 '#' (typecheck)

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test simulation on ubuntu-latest

invalid character U+0023 '#'

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

invalid digit '4' in binary literal

Check failure on line 216 in ignite/config/chain/base/config.go

View workflow job for this annotation

GitHub Actions / test single on ubuntu-latest

invalid character U+0023 '#'
},
},
Faucet: Faucet{
Expand Down
3 changes: 1 addition & 2 deletions ignite/config/chain/v1/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ func TestConfigDecode(t *testing.T) {
Build: base.Build{
Binary: "evmosd",
Proto: base.Proto{
Path: "proto",
ThirdPartyPaths: []string{"third_party/proto", "proto_vendor"},
Path: "proto",
},
},
Accounts: []base.Account{
Expand Down
3 changes: 3 additions & 0 deletions ignite/config/chain/v1/testdata/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ build:
binary: evmosd
proto:
path: proto
<<<<<<< HEAD
third_party_paths:
- third_party/proto
- proto_vendor
=======
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))
accounts:
- name: alice
coins:
Expand Down
3 changes: 3 additions & 0 deletions ignite/config/chain/v1/testdata/config2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ build:
binary: evmosd
proto:
path: proto
<<<<<<< HEAD
third_party_paths:
- third_party/proto
- proto_vendor
=======
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))
accounts:
- name: alice
coins:
Expand Down
16 changes: 12 additions & 4 deletions ignite/internal/analytics/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,25 @@ import (
"github.com/manifoldco/promptui"
"github.com/spf13/cobra"

<<<<<<< HEAD

Check failure on line 15 in ignite/internal/analytics/analytics.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

missing import path
"github.com/ignite/cli/v28/ignite/pkg/gitpod"
"github.com/ignite/cli/v28/ignite/pkg/matomo"
"github.com/ignite/cli/v28/ignite/pkg/randstr"
"github.com/ignite/cli/v28/ignite/version"
=======
"github.com/ignite/cli/v29/ignite/config"
"github.com/ignite/cli/v29/ignite/pkg/gacli"
"github.com/ignite/cli/v29/ignite/pkg/gitpod"
"github.com/ignite/cli/v29/ignite/pkg/randstr"
"github.com/ignite/cli/v29/ignite/version"
>>>>>>> 0b412628 (feat: improve buf rate limit (#4133))
)

const (
telemetryEndpoint = "https://matomo-cli.ignite.com"
envDoNotTrack = "DO_NOT_TRACK"
envCI = "CI"
envGitHubActions = "GITHUB_ACTIONS"
igniteDir = ".ignite"
igniteAnonIdentity = "anon_identity.json"
)

Expand Down Expand Up @@ -106,14 +113,15 @@ func checkDNT() (anonIdentity, error) {
return anonIdentity{DoNotTrack: true}, nil
}

home, err := os.UserHomeDir()
globalPath, err := config.DirPath()
if err != nil {
return anonIdentity{}, err
}
if err := os.Mkdir(filepath.Join(home, igniteDir), 0o700); err != nil && !os.IsExist(err) {
if err := os.Mkdir(globalPath, 0o700); err != nil && !os.IsExist(err) {
return anonIdentity{}, err
}
identityPath := filepath.Join(home, igniteDir, igniteAnonIdentity)

identityPath := filepath.Join(globalPath, igniteAnonIdentity)
data, err := os.ReadFile(identityPath)
if err != nil && !os.IsNotExist(err) {
return anonIdentity{}, err
Expand Down
Loading

0 comments on commit 86a2568

Please sign in to comment.