Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs chiado changes #1030

Merged
merged 8 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ Now you can [compile](deploy-a-wasm-contract#4-compile-the-contract) and [optimi
```

:::tip
Buenavista uses the `cosmos.crypto.secp256k1` module for cryptographic operations. If your key is created with the `ethermint.crypto.v1.ethsecp256` module, downgrade your node to `v0.4.1` and create a key with `cosmos.crypto.secp256k1`.
Buenavista uses the `cosmos.crypto.secp256k1` module for cryptographic operations. If your key is created with the `ethermint.crypto.v1.ethsecp256k1` module, downgrade your node to `v0.4.1` and create a key with `cosmos.crypto.secp256k1`.
:::

2. Get the code ID that identifies your WASM contract:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_position: 1
# Chiado overview

:::important
Chiado is our new and improved testnet. Please make sure to transition all your testing and development processes here. Also note that on Chiado we've changed the denomination to `award`.
Chiado is our new and improved testnet. Please make sure to transition all your testing and development processes here.
:::

## Version history
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sidebar_position: 2
# Join Chiado

:::important
Chiado is our new and improved testnet. Please make sure to transition all your testing and development processes here. Also note that on Chiado we've changed the denomination to `award`.
Chiado is our new and improved testnet. Please make sure to transition all your testing and development processes here.
:::

## Overview
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
sidebar_position: 1.5
---

# What's new?

:::important
Chiado is our new and improved testnet. Please make sure to transition all your testing and development processes here.
:::

## Key features

Chiado represents a crucial milestone in our journey towards mainnet launch. Here are the key features of the update:

### Consensus AI readiness

By laying the groundwork for AI integration at the consensus level, Chiado makes it possible for [AIBI](/learn/aibi)’s AI-based inferences and decisions to be directly incorporated into the blockchain's execution layer.

### Dual VM architecture

Chiado now supports EVM Solidity contracts alongside CosmWasm. This dual VM architecture makes it easier to integrate AI inferences with smart contracts, and users can connect directly to EVM apps.

Learn how to deploy a Solidity contract: [Deploy an EVM contract](/build-an-app/deploy-smart-contracts-on-warden/deploy-an-evm-contract).


### Price feed oracles
Chiado introduces consensus-validated price feed [oracles](/learn/oracle-services) to Warden, ensuring reliable data essential to a vast range of DeFi applications.

### Mainnet readiness
Chiado is prepared for real-world asset integration. As we transition to mainnet, developers will have a smooth experience bringing their projects from test environments into live deployments.

## Key changes

When migrating ot Chiado, please keep in mind the following key changes:

### New denomination

On Chiado, we've changed the denomination from `uward` to `award`.

### A new signature scheme

To be EVM-compatible, keys on Chiado are generated with the `ethermint.crypto.v1.ethsecp256k1` module, while Buenavista uses `cosmos.crypto.secp256k1`.

### New public addresses

As a result of switching to a new signature scheme, the existing private keys now produce new public addresses.

To continue using your private key created on Buenavista, take these steps:

1. Restore the key using the [node command](/operate-a-node/node-commands) below. Replace `my-key-name` with a key name of your choice.

```bash
wardend keys add my-key-name --recover
```

You'll be prompted to enter your mnemonic seed phrase.

2. Get your new address by key name:

```bash
wardend keys show my-key-name --address
```

Your funds will be automatically transferred to the new address.

### EVM wallets support

We encourage users and application builders to store and delegate their test WARD with EVM wallets.
2 changes: 1 addition & 1 deletion docs/developer-docs/docs/tokens/ward-token/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Note that WARD distribution will be characterized by the following:
| Public goods | 10% | Incentivized testnet and genesis airdrop, and public good initiatives |Available at genesis
|Ecosystem & community | 20%| Allocated for initiatives that contribute to the Warden Protocol's ecosystem and community projects|Available at genesis locked to governance
| Developer incentives|16%|Developer and builder incentives | Available at genesis locked to governance
| Validators and operators |10%| Initial delegated WARD to Mainnet and Operator Validators |Available at genesis but bonded
| Validators and operators |10%| Initial amount delegated to mainnet validators and operators | Available at genesis but bonded
| Treasury & R&D | 24% |Long term treasury and research programmes | 10M available at genesis, linear unlock two year weekly vest
| Core contributors | 20% | Reserved for the development team, advisors and early contributors | 6 month cliff, two year linear weekly vest

Expand Down
Loading