Julien Robert
f82775ba1f
docs: add documentation for nft module ( #13871 )
2022-11-15 14:45:19 +00:00
Dreamer
5f4350d418
refactor(x/nft): remove class&nft id validation ( #13836 )
2022-11-15 13:47:38 +01:00
Likhita Polavarapu
bcff22a376
feat: Add tx encode and decode endpoints ( #13789 )
...
* add grpc endpoint for encoding proto tx's
2022-11-15 04:55:27 +00:00
Aaron Craelius
ec27c5384b
refactor!: migrate to core appmodule.AppModule extension interfaces ( #13794 )
2022-11-14 21:23:55 +00:00
Aleksandr Bezobchuk
14c582f30e
fix: Allow underscores in EventRegex ( #13861 )
2022-11-14 18:49:59 +00:00
Marko
81209e688a
docs: add a running in production section ( #13807 )
...
- add a running in production section
- link to existing tutorial as well.
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-14 19:27:46 +01:00
dependabot[bot]
39754dd7cc
build(deps): Bump postcss from 8.4.18 to 8.4.19 in /docs ( #13857 )
...
Bumps [postcss](https://github.com/postcss/postcss ) from 8.4.18 to 8.4.19.
- [Release notes](https://github.com/postcss/postcss/releases )
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md )
- [Commits](https://github.com/postcss/postcss/compare/8.4.18...8.4.19 )
---
updated-dependencies:
- dependency-name: postcss
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-14 16:50:10 +00:00
dependabot[bot]
5e1635ed9d
build(deps): Bump github.com/otiai10/copy in /tools/cosmovisor ( #13859 )
...
Bumps [github.com/otiai10/copy](https://github.com/otiai10/copy ) from 1.7.0 to 1.9.0.
- [Release notes](https://github.com/otiai10/copy/releases )
- [Commits](https://github.com/otiai10/copy/compare/v1.7.0...v1.9.0 )
---
updated-dependencies:
- dependency-name: github.com/otiai10/copy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-14 17:42:54 +01:00
Julien Robert
394f6633d4
build: fix empty cname ( #13860 )
2022-11-14 17:32:02 +01:00
dependabot[bot]
ab9ecd5a26
build(deps): Bump tailwindcss from 3.2.2 to 3.2.4 in /docs ( #13856 )
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss ) from 3.2.2 to 3.2.4.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.2.2...v3.2.4 )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-14 17:22:11 +01:00
Julien Robert
d9bc5acac8
fix: .String() panics when pubkey is set on a BaseAccount ( #13838 )
2022-11-14 14:56:18 +00:00
Julien Robert
f1fc44efd4
docs: add 0.47 to docs ( #13852 )
2022-11-14 15:06:20 +01:00
Julien Robert
fc21215803
feat: add vscode e2e config ( #13851 )
2022-11-14 11:26:28 +01:00
Aleksandr Bezobchuk
78886bc8de
chore: ADR-060 Updates ( #13844 )
2022-11-14 07:05:56 +00:00
Marko
7e69187e24
extra check ( #13846 )
2022-11-12 21:09:06 +00:00
Julián Toledano
b00cc29baa
fix: populate oldest_block_identifier and wrap jsonrpc errors ( #13832 )
...
## Description
Closes:
#13830
#13827
- Rosetta `/network/status` response:
* populates `oldest_block_identifier` with `EarliestBlockHeight` from rpc syncInfo
* tries to populate `genesis_block_identifier` with block of height 1
* if block is not queryable, sets value of `InitialHeight` from genesis doc
* if not queryable sets same value as `oldest_block_identifier`
- Wrap `github.com/tendermint/tendermint/rpc/jsonrpc/types` errors to rosetta errors
- Split services into its own go files (account, block, mempool, network)
---
### Author Checklist
*All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.*
I have...
- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json ) in the PR title
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting ))
- [x] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules )
- [x] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing )
- [x] added a changelog entry to `CHANGELOG.md`
- [x] included comments for [documenting Go code](https://blog.golang.org/godoc )
- [ ] updated the relevant documentation or specification
- [ ] reviewed "Files changed" and left comments if necessary
- [ ] confirmed all CI checks have passed
### Reviewers Checklist
*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*
I have...
- [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json ) in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [ ] confirmed all author checklist items have been addressed
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed documentation is accurate
- [ ] reviewed tests and test coverage
- [ ] manually tested (if applicable)
2022-11-12 10:39:37 +00:00
Aleksandr Bezobchuk
a926be1c13
chore: update .mergify.yml #13841
2022-11-11 18:49:36 +00:00
Aleksandr Bezobchuk
f8353f8a7b
chore: Update .mergify.yml #13840
2022-11-11 19:45:32 +01:00
Matt Kocubinski
d66b7fa189
feat: Settable PrepareProposal handler ( #13831 )
...
Co-authored-by: Jeancarlo Barrios <JeancarloBarrios@users.noreply.github.com>
2022-11-11 11:57:53 -06:00
dependabot[bot]
d725be5915
build(deps): Bump actions/dependency-review-action from 2 to 3 ( #13839 )
...
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action ) from 2 to 3.
- [Release notes](https://github.com/actions/dependency-review-action/releases )
- [Commits](https://github.com/actions/dependency-review-action/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/dependency-review-action
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-11 17:16:08 +01:00
Rootul P
4ff588d084
docs: improve keyring package docs ( #13835 )
2022-11-10 22:03:11 +01:00
Federico Kunze Küllmer
f001b467a0
feat(types): set custom GasConfig on Context for GasKVStore ( #13826 )
2022-11-10 19:10:09 +00:00
dependabot[bot]
d32d89663f
build(deps): Bump github.com/btcsuite/btcd/btcec/v2 from 2.3.0 to 2.3.1 ( #13828 )
...
* build(deps): Bump github.com/btcsuite/btcd/btcec/v2 from 2.3.0 to 2.3.1
Bumps [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd ) from 2.3.0 to 2.3.1.
- [Release notes](https://github.com/btcsuite/btcd/releases )
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES )
- [Commits](https://github.com/btcsuite/btcd/compare/btcec/v2.3.0...btcec/v2.3.1 )
---
updated-dependencies:
- dependency-name: github.com/btcsuite/btcd/btcec/v2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
* build(deps): Bump github.com/btcsuite/btcd/btcec/v2 from 2.3.0 to 2.3.1 for all modules
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2022-11-10 16:27:56 +00:00
billy rennekamp
d314a12e68
fix: bank store migration ( #13821 )
2022-11-10 16:02:17 +00:00
Marko
a5e8e2db4b
bump golang.org/x/crypto version ( #13822 )
2022-11-10 12:52:20 +00:00
Matt Kocubinski
61effe8260
feat: ABCI 1.0 baseapp integration ( #13453 )
2022-11-09 09:50:27 -06:00
Damian Nolan
90fd3e9f42
fix: propagate events in x/group through sdk.Results ( #13808 )
2022-11-09 14:32:13 +00:00
Aaron Craelius
bcdf81cbaf
feat: add basic autocli config to every module ( #13786 )
...
* feat: add autocli configs to every module
* auto-discover config
* tests + gov, auth config tweaks
* docs
* Update x/auth/autocli.go
Co-authored-by: Julien Robert <julien@rbrt.fr>
* Update x/auth/autocli.go
Co-authored-by: Julien Robert <julien@rbrt.fr>
* cleanup
Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
2022-11-09 11:44:42 +00:00
Julien Robert
4f7d9ea233
refactor: clean-up test helpers and tmcli ( #13805 )
2022-11-09 11:13:27 +00:00
Julien Robert
76be73022a
fix: fix proto files created as super-user ( #13801 )
...
* chore: bump proto-builder
* updates
* fix root issue
Co-authored-by: Marko <marbar3778@yahoo.com>
2022-11-09 10:37:07 +00:00
Marko
50e8961bb8
remove extra unneeded log ( #13806 )
2022-11-09 11:17:00 +01:00
Jacob Kim
8bfc3bf769
feat: add --output-document flag to export CLI command to allow writing genesis state to a file instead of STDOUT ( #13802 )
2022-11-09 08:04:43 +00:00
Jacob Kim
f8e40d7c05
refactor: remove client/keys.KeysCdc ( #13781 )
2022-11-09 07:23:55 +00:00
yihuang
22f3261285
refactor: add error log when iavl set failed ( #13803 )
...
* add error log when iavl set failed
Ref: #12012
* Update CHANGELOG.md
* play safe
2022-11-09 14:53:53 +08:00
dependabot[bot]
a785bf5af6
build(deps): Bump loader-utils from 2.0.2 to 2.0.3 in /docs ( #13800 )
...
Bumps [loader-utils](https://github.com/webpack/loader-utils ) from 2.0.2 to 2.0.3.
- [Release notes](https://github.com/webpack/loader-utils/releases )
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.3/CHANGELOG.md )
- [Commits](https://github.com/webpack/loader-utils/compare/v2.0.2...v2.0.3 )
---
updated-dependencies:
- dependency-name: loader-utils
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-08 21:22:09 +01:00
Facundo Medica
0d288e935c
test: Add some tests and remove dead code in store ( #13614 )
2022-11-08 20:20:18 +00:00
dependabot[bot]
ff168c2738
build(deps): Bump github.com/prometheus/client_golang from 1.13.1 to 1.14.0 ( #13796 )
2022-11-08 19:40:32 +00:00
dependabot[bot]
79add5e4ff
build(deps): Bump github.com/spf13/viper from 1.13.0 to 1.14.0 ( #13798 )
...
* build(deps): Bump github.com/spf13/viper in /simapp
Bumps [github.com/spf13/viper](https://github.com/spf13/viper ) from 1.13.0 to 1.14.0.
- [Release notes](https://github.com/spf13/viper/releases )
- [Commits](https://github.com/spf13/viper/compare/v1.13.0...v1.14.0 )
---
updated-dependencies:
- dependency-name: github.com/spf13/viper
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
* build(deps): Bump github.com/spf13/viper from 1.13.0 to 1.14.0 in /simapp for all modules
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2022-11-08 18:22:03 +01:00
Damian Nolan
645df3127f
adding clang-extra-tools for clang-format proto-fmt ( #13791 )
2022-11-08 14:20:59 +01:00
Aaron Craelius
74e9d542d2
feat!: integrate autocli and reflection services with simapp legacy ( #13746 )
...
* feat!: integrate autocli and reflection services with simapp legacy
* rename alias
* update UPGRADING.md
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-08 12:32:49 +00:00
Julián Toledano
a3e1b99f6a
test: integrate rosetta-cli into rosetta-ci ( #13785 )
...
* add: rosetta-cli to rosetta-ci image
* update: rosetta readme
* doc: rosetta readme
* update: rosetta-cli v0.10.0
* Update contrib/rosetta/README.md
Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-08 09:24:27 +01:00
Julien Robert
b4b4e4a096
chore: remove useless dotfiles ( #13784 )
2022-11-08 08:05:27 +01:00
Amaury
b49f948b36
feat: Add proto annotations for Amino JSON ( #13501 )
...
* add legacy_amino_name
* make-proto-gen
* remove useless omitempty
* add annotations
* Add proto annotations
* Add more annotations
* update cosmos-proto
* Add message scalar?
* Add comments
* Fix comment
* lint proto files
* proto-gen
* go mod tidy
* Add multisig encoding
* Add field name
* Format proto
* proto-gen
* Update proto/cosmos/msg/v1/msg.proto
Co-authored-by: Aaron Craelius <aaron@regen.network>
* Add dont_omitempty whenever we have nullable=false
* proto-gen
* Remove problematic annotations
* put legacy_amino in subpackage
* proto-gen
* Fixes
* legacy_amino.v1
* add non-working proto
* Generate in separate package
* Remove `cosmos.msg` prefix
* make proto-gen
* remove v1 too
* make proto-format
* Add field option
* format
* proto-gen
* Use underscores
* update legacy_amino -> amino
* update to `key_field`
* make proto-format
* make proto-gen
Co-authored-by: Aaron Craelius <aaron@regen.network>
2022-11-07 22:51:51 +00:00
Julien Robert
c85447cdb9
docs: add documentation about depinject and app wiring ( #13683 )
2022-11-07 19:19:07 +00:00
dependabot[bot]
5af7b5993c
build(deps): Bump tailwindcss from 3.2.1 to 3.2.2 in /docs ( #13783 )
...
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss ) from 3.2.1 to 3.2.2.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases )
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md )
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.2.1...v3.2.2 )
---
updated-dependencies:
- dependency-name: tailwindcss
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-07 17:20:01 +01:00
Emmanuel T Odeke
0c5c53600d
chore: [types/bech32] add a fuzzer for DecodeAndConvert ( #13775 )
2022-11-07 16:01:42 +00:00
Marko
6ae5641233
docs: set api endpoints to localhost by default ( #13778 )
...
* Default GRPC and REST endpoints to localhost. Add documentation on recommended ways to expose it.
Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-07 11:06:06 +00:00
Julien Robert
7efeb826e0
refactor: rename migrations from v42, v43, v{SDK} to v1, v2, v{Consensus} ( #13772 )
...
* chore: rename migrations from v42, v43 to v1, v2
* group migration should be in #13742
* updates
2022-11-07 11:32:56 +01:00
Julien Robert
d6e5bb3669
docs: fix toc links ( #13770 )
2022-11-04 15:35:22 +00:00
Julien Robert
d2e4154298
docs: update spec structure ( #13768 )
2022-11-04 14:55:04 +00:00