Skip to content

Commit

Permalink
fixed docs main page
Browse files Browse the repository at this point in the history
  • Loading branch information
olegfomenko committed Oct 26, 2023
1 parent ccf1743 commit b67de2e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 23 deletions.
10 changes: 10 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
lsi: false
safe: true
source: ./
incremental: false
highlighter: rouge
gist:
noscript: false
kramdown:
math_engine: mathjax
syntax_highlighter: rouge
12 changes: 6 additions & 6 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ Based on Tendermint + Cosmos SDK blockchain core the main goal is to provide val

## Documentation

### 1. :open_file_folder: [Core Modules](./x/README.md)
### 1. 📂 [Core Modules](./x/README.md)

### 2. :telescope: [Oracles Overview](./docs/common/oracles/001-oracles.md)
### 2. 🔭 [Oracles Overview](./docs/common/oracles/001-oracles.md)

### 3. :chart_with_upwards_trend: [Bridge Contracts](./docs/common/contracts/001-contracts.md)
### 3. 📈 [Bridge Contracts](./docs/common/contracts/001-contracts.md)

### 4. :rocket: [Bridging Overview](./docs/common/bridging/001-bridging.md)
### 4. rocket [Bridging Overview](./docs/common/bridging/001-bridging.md)

## Chains

### 1. :earth_americas: [Mainnet information](./docs/common/mainnet/001-mainnet.md)
### 1. 🌎 [Mainnet information](./docs/common/mainnet/001-mainnet.md)

### 2. :globe_with_meridians: [Testnet (Mainnet-beta) information](./docs/common/testnet/001-testnet.md)
### 2. 🌐 [Testnet (Mainnet-beta) information](./docs/common/testnet/001-testnet.md)
35 changes: 18 additions & 17 deletions x/bridge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,24 +42,25 @@ is the target of minting, and the amount of tokens to mint. And also BurnTokens
### Params

Definition:
```protobuf
message Params {
option (gogoproto.goproto_stringer) = false;
string withdrawDenom = 1;
}
```
```protobuf
message Params {
option (gogoproto.goproto_stringer) = false;
string withdrawDenom = 1;
}
```

<details>
<summary>Example</summary>

```json
{
"params": {
"withdrawDenom": "stake"
}
}
```

<details>
<summary>Example</summary>

```json
{
"params": {
"withdrawDenom": "stake"
}
}
```
</details>
</details>

### Hash

Expand Down

0 comments on commit b67de2e

Please sign in to comment.