Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 70063fc

Browse files
committedMar 6, 2025
Merge remote-tracking branch 'origin/main' into dev/moul/docs-ci
2 parents 3deabdc + 9d1be86 commit 70063fc

File tree

4 files changed

+16
-21
lines changed

4 files changed

+16
-21
lines changed
 

‎README.md

+12-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Tendermint
22

3+
_UPDATE: TendermintCore featureset is frozen for LTS, see issue https://github.com/tendermint/tendermint/issues/9972_<br/>
4+
_This is the latest stable release used by cosmoshub-4, version 0.34.24_<br/>
5+
_The previous main branch (v0.38.xx) can now be found under "main_backup"_<br/>
6+
37
![banner](docs/tendermint-core-image.jpg)
48

59
[Byzantine-Fault Tolerant][bft] [State Machine Replication][smr]. Or
@@ -42,20 +46,15 @@ since we are making breaking changes to the protocol and the APIs. See below for
4246
more details about [versioning](#versioning).
4347

4448
In any case, if you intend to run Tendermint in production, we're happy to help.
45-
You can contact us [over email](mailto:hello@interchain.io) or [join the
46-
chat](https://discord.gg/cosmosnetwork).
49+
You can contact us [over email](mailto:hello@newtendermint.org) or [join the
50+
chat](https://discord.gg/gnoland).
4751

4852
More on how releases are conducted can be found [here](./RELEASES.md).
4953

5054
## Security
5155

52-
To report a security vulnerability, see our [bug bounty
53-
program](https://hackerone.com/cosmos). For examples of the kinds of bugs we're
54-
looking for, see [our security policy](SECURITY.md).
55-
56-
We also maintain a dedicated mailing list for security updates. We will only
57-
ever use this mailing list to notify you of vulnerabilities and fixes in
58-
Tendermint Core. You can subscribe [here](http://eepurl.com/gZ5hQD).
56+
To report a security vulnerability, please [email us](mailto:security@newtendermint.org).
57+
For examples of the kinds of bugs we're looking for, see [our security policy](SECURITY.md).
5958

6059
## Minimum requirements
6160

@@ -145,14 +144,10 @@ Upgrading instructions can be found in [UPGRADING.md](./UPGRADING.md).
145144

146145
## Join us!
147146

148-
Tendermint Core is maintained by [Interchain GmbH](https://interchain.berlin).
149-
If you'd like to work full-time on Tendermint Core,
150-
[we're hiring](https://interchain-gmbh.breezy.hr/)!
151-
152-
Funding for Tendermint Core development comes primarily from the
153-
[Interchain Foundation](https://interchain.io), a Swiss non-profit. The
154-
Tendermint trademark is owned by [Tendermint Inc.](https://tendermint.com), the
155-
for-profit entity that also maintains [tendermint.com](https://tendermint.com).
147+
The development of Tendermint Core was led primarily by All in Bits, Inc. The
148+
Tendermint trademark is owned by New Tendermint, LLC. If you'd like to work
149+
full-time on Tendermint2 or [gno.land](https://gno.land), [we're
150+
hiring](mailto:hiring@newtendermint.org)!
156151

157152
[bft]: https://en.wikipedia.org/wiki/Byzantine_fault_tolerance
158153
[smr]: https://en.wikipedia.org/wiki/State_machine_replication

‎docs/.vuepress/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module.exports = {
9292
}
9393
],
9494
smallprint:
95-
'The development of Tendermint Core is led primarily by [Interchain GmbH](https://interchain.berlin/). Funding for this development comes primarily from the Interchain Foundation, a Swiss non-profit. The Tendermint trademark is owned by Tendermint Inc, the for-profit entity that also maintains this website.',
95+
'The development of Tendermint Core was led primarily by All in Bits, Inc. The Tendermint trademark is owned by New Tendermint, LLC.'
9696
links: [
9797
{
9898
title: 'Documentation',

‎docs/app-dev/abci-cli.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ the same results as for the Go version.
349349

350350
Want to write the counter app in your favorite language?! We'd be happy
351351
to add you to our [ecosystem](https://github.com/tendermint/awesome#ecosystem)!
352-
See [funding](https://github.com/interchainio/funding) opportunities from the
353-
[Interchain Foundation](https://interchain.io/) for implementations in new languages and more.
352+
353+
TODO link to bounties page.
354354
355355
The `abci-cli` is designed strictly for testing and debugging. In a real
356356
deployment, the role of sending messages is taken by Tendermint, which

‎docs/tendermint-core/validators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ More Information can be found at these links:
9797

9898
### Validator keys
9999

100-
Protecting a validator's consensus key is the most important factor to take in when designing your setup. The key that a validator is given upon creation of the node is called a consensus key, it has to be online at all times in order to vote on blocks. It is **not recommended** to merely hold your private key in the default json file (`priv_validator_key.json`). Fortunately, the [Interchain Foundation](https://interchain.io/) has worked with a team to build a key management server for validators. You can find documentation on how to use it [here](https://github.com/iqlusioninc/tmkms), it is used extensively in production. You are not limited to using this tool, there are also [HSMs](https://safenet.gemalto.com/data-encryption/hardware-security-modules-hsms/), there is not a recommended HSM.
100+
Protecting a validator's consensus key is the most important factor to take in when designing your setup. The key that a validator is given upon creation of the node is called a consensus key, it has to be online at all times in order to vote on blocks. It is **not recommended** to merely hold your private key in the default json file (`priv_validator_key.json`).
101101

102102
Currently Tendermint uses [Ed25519](https://ed25519.cr.yp.to/) keys which are widely supported across the security sector and HSMs.
103103

0 commit comments

Comments
 (0)
Failed to load comments.