Commit Graph

1797 Commits

Author SHA1 Message Date
mergify[bot] 7cda0dcee0
docs: replace `Tendermint` references in docs with `CometBFT` (backport #15339) (#15401)
Co-authored-by: cipherZ <dev@cipherz.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-03-14 20:58:17 +01:00
mergify[bot] b63e55b157
docs: fix ordering (backport #15387) (#15389)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-03-14 14:10:06 +01:00
mergify[bot] 5d41589912
docs: create autocli documentation (backport #15353) (#15386)
Co-authored-by: samricotta <37125168+samricotta@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-03-14 12:21:26 +00:00
mergify[bot] 818f6a047e
feat: Create ABCI++ Verfication Methods (backport #15298) (#15314)
Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
Co-authored-by: Aleksandr Bezobchuk <aleks.bezobchuk@gmail.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-03-08 21:20:38 +00:00
Julien Robert 6ec0e519e0
docs: update swagger link (#15242) 2023-03-02 13:04:06 +01:00
mergify[bot] 9c328732a8
feat(mempool): priority nonce mempool option with tx replacement (backport #14484) (#15126)
Co-authored-by: JayT106 <JayT106@users.noreply.github.com>
2023-02-22 15:16:46 +00:00
mergify[bot] 3af691327d
ci: update release slack channel and algolia api key (backport #14942) (#14944)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-02-07 15:32:59 +01:00
mergify[bot] 1db77c48fc
docs: update baseapp docs (part 2/2) (backport #14790) (#14865)
Co-authored-by: samricotta <37125168+samricotta@users.noreply.github.com>
2023-02-01 10:33:10 +00:00
mergify[bot] 9fae1507cf
docs: update baseapp docs (part 1/2) (backport #14596) (#14737)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-01-23 18:26:05 +00:00
mergify[bot] ffff320426
docs: fix typos (backport #14708) (#14709)
Co-authored-by: omahs <73983677+omahs@users.noreply.github.com>
2023-01-20 12:38:57 +01:00
mergify[bot] 8df686ea06
chore: simplify ADR-028 and address.Module (backport #14017) (#14632)
Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-01-16 10:07:58 -05:00
mergify[bot] 1a23b7c324
docs: add small disclaimer about go version (backport #14627) (#14628) 2023-01-16 09:18:35 +00:00
mergify[bot] 42aa3e15dd
feat(app): Update post handlers to incorporate the `runMsg` success bool (backport #13940) (#14586)
Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
2023-01-13 17:49:26 +01:00
mergify[bot] caa0c0b752
docs: added fixes to the node interaction docs (backport #14602) (#14607)
Co-authored-by: cipherZ <dev@cipherz.com>
2023-01-12 21:09:50 +00:00
mergify[bot] 9186a1e3eb
docs: update docs links to v0.47 (backport #14572) (#14591)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-01-12 15:46:55 +01:00
mergify[bot] e9fe7ec6da
docs: new key type for keyring (backport #14573) (#14577)
Co-authored-by: Julián Toledano <JulianToledano@users.noreply.github.com>
2023-01-11 10:27:53 +01:00
mergify[bot] 0a1d0b9124
fix: keyring-backend flag usage (backport #14509) (#14515)
Co-authored-by: Robert Zaremba <robert@zaremba.ch>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-01-05 22:02:49 +00:00
mergify[bot] 22e8aaad44
chore: Clean up `{accept,implement}_interface` (backport #14476) (#14478)
Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
Co-authored-by: Marko <marbar3778@yahoo.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-01-04 18:33:09 +01:00
mergify[bot] cdc438f442
docs: update mempool/ABCI docs (backport #14393) (#14395) 2022-12-22 17:15:35 +01:00
mergify[bot] 7e7e7f7e43
refactor: revert API breaking change on Slash (backport #14363) (#14365)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-12-20 12:36:37 -05:00
mergify[bot] 15a817cf5d
docs: improve mempool docs (backport #14282) (#14319) 2022-12-15 16:21:28 +01:00
mergify[bot] 50f8de4b0f
feat(simapp): Genesis related commands under one `genesis` command (backport #14149) (#14199)
Co-authored-by: Ruslan Akhtariev <46343690+RusAkh@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-12-07 21:08:40 +01:00
mergify[bot] e7afcca232
fix: state listener observe writes at wrong time (backport #13516) (#14137)
* fix: state listener observe writes at wrong time (#13516)

* fix: state listener observe writes at wrong time

Closes: #13457

Currently state listener is notified when the cache store write, which happens in commit event only, which breaks the current design.
The solution (as discussed in the issue) is to listen state writes on rootmulti store only.

It also changes the file streamer to output single data file for the writes in the whole block, since we can't distinguish writes from different stage of abci events.

It adds new config items for file streamer:
- streamers.file.output-metadata
- streamers.file.stop-node-on-error
- streamers.file.fsync

* synchronous abci call, and format doc

* fix comment

* update file streamer readme and fix typos

* typo

* fix: state listener observe writes at wrong time

Closes: #13457

Currently state listener is notified when the cache store write, which happens in commit event only, which breaks the current design.
The solution (as discussed in the issue) is to listen state writes on rootmulti store only.

It also changes the file streamer to output single data file for the writes in the whole block, since we can't distinguish writes from different stage of abci events.

It adds new config items for file streamer:
- streamers.file.output-metadata
- streamers.file.stop-node-on-error
- streamers.file.fsync

synchronous abci call, and format doc

fix comment

update file streamer readme and fix typos

typo

* improve UX of file streamer, make it immediately usable after enabled

- set default value to write_dir.
- make write_dir based on home directory by default.
- auto-create the directory if not exists.

* get homePage from opts

Co-authored-by: Marko <marbar3778@yahoo.com>
(cherry picked from commit 1f91ee2ee941fd9a1dd4bc3acecd753e3cb7e237)

# Conflicts:
#	CHANGELOG.md
#	baseapp/streaming.go
#	store/streaming/constructor.go
#	store/streaming/file/service.go

* fix changelog

* fix conflicts

Co-authored-by: yihuang <huang@crypto.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-12-05 22:23:03 +00:00
mergify[bot] 3a51a153d8
feat: add tx limit to mempool (backport #14014) (#14131)
* feat: add tx limit to mempool  (#14014)

* feat: add bounding max tx to mempool

* add bounded condition

* sligh improvement on generator

* remove unbouded option

* add test

* added mempool options mechanism

* mising test

* seting mempool

* change function name

* change function name

* failing test

* Revert "failing test"

This reverts commit d527982b0d4ec826ff680afb8f43ac1d71809ccf.

* fix import block

* changelog entries

* add ability to do unbounded mempool

* remove unesesary variable

* small comments

* change 0 to mean unbounded

* t

* small test fix

* add the ability to be bounded unbounded and disabled

* t

* set default maxtx

* Update docs/docs/building-apps/02-app-mempool.md

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* example for opts

* remove superflues logs entry

* add mempool to configurations

* fix more understandable name

* remove table in favor of bulletpoints

* sender nonce to unbounded

* Update docs/docs/building-apps/02-app-mempool.md

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* Update types/mempool/sender_nonce.go

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* Update types/mempool/sender_nonce.go

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* Update docs/docs/building-apps/02-app-mempool.md

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* Update server/config/config.go

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>

* t

* add comment for options

* fix inport

* fix inport

Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
(cherry picked from commit 754ca3169e3ea75267d09f0ff591e5c1e17ec848)

# Conflicts:
#	server/start.go

* fix conflicts

Co-authored-by: Jeancarlo Barrios <JeancarloBarrios@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-12-02 13:07:56 +00:00
mergify[bot] 2e77eafba3
docs: add docs about `x/auth/tx` (backport #14021) (#14034)
* docs: add docs about `x/auth/tx` (#14021)

* docs: add docs about `x/auth/tx`

* updates

* updates

* updates

* updates

* updates

* updates

* updates

Co-authored-by: Marko <marbar3778@yahoo.com>
(cherry picked from commit 6f329d70c6cc128c14189a6aa82b79add9798677)

# Conflicts:
#	api/cosmos/auth/v1beta1/query.pulsar.go
#	go.sum
#	simapp/go.sum
#	tests/go.sum
#	x/auth/types/query.pb.go

* bump deps (#14035)

* updates

* updates

Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-27 23:01:15 +01:00
mergify[bot] 2b20990f8a
docs: appside mempool (#13875) (#14025)
(cherry picked from commit 67b2b34bc7ca191f6fae74541b9a782bda4a42ee)

Co-authored-by: Marko <marbar3778@yahoo.com>
2022-11-27 12:34:19 +01:00
mergify[bot] fc9b70fb42
fix(group): migrate group policy account to base accounts with credentials (backport #13742) (#13962)
* fix(group): migrate group policy account to base accounts with credentials (#13742)

(cherry picked from commit d6da7037b63ab17caa63b93716cafd943f180878)

* update changelog

* updates

Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-22 12:26:44 +01:00
mergify[bot] e5d7937bb0
chore: rename `app_legacy` & add sims for 0.47 (#13950) (#13957)
* docs: rename `app_legacy`

* add sims for 0.47

* update concurrency group

Co-authored-by: Marko <marbar3778@yahoo.com>
(cherry picked from commit 3bb27795742dab2451b232bab02b82566d1a0192)

Co-authored-by: Julien Robert <julien@rbrt.fr>
2022-11-21 19:35:41 +01:00
mergify[bot] 1725103454
refactor(x/nft): remove class&nft id validation (#13836) (#13870)
(cherry picked from commit 5f4350d41859e5cbefd7514abe1b6461dc637c24)

Co-authored-by: Dreamer <745124335@qq.com>
2022-11-15 15:11:46 +01:00
mergify[bot] 3f2266a81a
refactor!: migrate to core appmodule.AppModule extension interfaces (#13794) (#13866)
(cherry picked from commit ec27c5384b76427bf46a194a94ba4b4eed487e4d)

Co-authored-by: Aaron Craelius <aaron@regen.network>
2022-11-15 13:25:12 +01:00
mergify[bot] 02a0d82bdb
docs: add a running in production section (#13807) (#13862)
- add a running in production section
- link to existing tutorial as well.

Co-authored-by: Julien Robert <julien@rbrt.fr>
(cherry picked from commit 81209e688a6dc7f19118342a92b0f101a8b6c124)

Co-authored-by: Marko <marbar3778@yahoo.com>
2022-11-14 18:29:54 +00: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
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
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 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
Julien Robert 4b26d9e27d
chore: use tagged rosetta version (#13765)
* chore: use tagged rosetta version

* add unit test in CI, bump tm and update changelog

* update rosetta data

* update action
2022-11-04 15:41:21 +01:00
sleepy ramen 39c5c079cd
fix: misc fixes for cosmos-rosetta (#13583)
### Description

Closes:
https://github.com/cosmos/cosmos-sdk/issues/13083
https://github.com/cosmos/cosmos-sdk/issues/11402
https://github.com/cosmos/cosmos-sdk/issues/10678
https://github.com/cosmos/cosmos-sdk/issues/12358
https://github.com/cosmos/cosmos-sdk/issues/10776
https://github.com/cosmos/cosmos-sdk/issues/12934

### 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
- [x] 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)
- [x] updated the relevant documentation or specification
- [x] 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-04 11:48:45 +00:00
Julien Robert 0e421d8295
docs: add documentation on documentation deployment (#13739) 2022-11-03 17:23:52 +01:00
Aaron Craelius 1c3e74104a
docs: update ADR 057 app wiring (#13736)
* docs: update ADR 057 app wiring

* remove ADR 061 ref
2022-11-02 21:19:53 +01:00
Julien Robert 3e2504510f
docs: fix algolia (#13729) 2022-11-02 13:30:03 +01:00
dependabot[bot] 608ee16370
build(deps): Bump @docusaurus/core from 2.1.0 to 2.2.0 in /docs (#13708)
* build(deps): Bump @docusaurus/core from 2.1.0 to 2.2.0 in /docs

Bumps [@docusaurus/core](https://github.com/facebook/docusaurus/tree/HEAD/packages/docusaurus) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/facebook/docusaurus/releases)
- [Changelog](https://github.com/facebook/docusaurus/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/docusaurus/commits/v2.2.0/packages/docusaurus)

---
updated-dependencies:
- dependency-name: "@docusaurus/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* bump docusaurus

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-10-31 18:04:37 +01:00
dependabot[bot] fac504ed43
build(deps): Bump autoprefixer from 10.4.12 to 10.4.13 in /docs (#13687)
Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.12 to 10.4.13.
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.12...10.4.13)

---
updated-dependencies:
- dependency-name: autoprefixer
  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-10-28 18:16:41 +02:00
Julien Robert dd78ce9ca4
docs: add auth tx commands documentation (#13682) 2022-10-28 13:01:34 +00:00
Jemimah O 5b7edd2329
docs: Cosmos SDK Basic topics - apply present tense and technical content styles (#10182) (#12971)
* docs: apply present tense to Basic topics

* docs: apply present tense to Basic topics

* Apply suggestions from code review

Co-authored-by: Barrie Byron <barriebyron@gmail.com>

* Update docs/basics/tx-lifecycle.md

* docs: apply technical content styles to Basic topics

* docs: apply technical content styles to Basic topics

* docs: apply present tense to Basic topics

* docs: apply present tense to Basic topics

* Apply suggestions from code review

Co-authored-by: Barrie Byron <barriebyron@gmail.com>

* docs: apply technical content styles to Basic topics

* docs: apply technical content styles to Basic topics

Co-authored-by: Julien Robert <julien@rbrt.fr>
Co-authored-by: Barrie Byron <barriebyron@gmail.com>
Co-authored-by: Marko <marbar3778@yahoo.com>
2022-10-27 11:25:16 +00:00
Julien Robert c303d7f341
chore: small improvements (#13672)
* ci: update buf

* add recommended vscode extension

* update gh username

* follow-up #13613

* add more sugestions

* remove atlas github action
2022-10-26 22:47:28 +00:00
atheeshp 8848f2cff1
docs: deterministic query tests (#13613)
* docs: deterministic tests

Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
2022-10-26 21:15:46 +02:00
dependabot[bot] b809f7129e
build(deps): Bump tailwindcss from 3.2.0 to 3.2.1 in /docs (#13628) 2022-10-25 00:22:40 +02:00
Jim Larson c484a0dc0f
docs: Textual ADR minor fixes (#13608)
## Description

Refs: #11970

Minor fixups to architecture docs. No major semantic changes are intended.

---

### Author Checklist

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
- [x] 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)
- [x] updated the relevant documentation or specification
- [x] reviewed "Files changed" and left comments if necessary
- [x] 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-10-23 00:52:06 +00:00