Skip to content
Open
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
15 changes: 15 additions & 0 deletions .github/workflows/check_markdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Check Markdown links

on:
pull_request:
push:
branches: [main]

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: 'ci_mk_check_config.json'
6 changes: 3 additions & 3 deletions AboutAxonv1.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Axon-cli is an all-in-one client that enables operating Axon fast and easy. It c

### Install Axon-cli From GitHub

1. Start by cloning the Axon-cli GitHub repo from [GitHub](https://github.com/axonweb3/axon-devops/tree/main/axon-cli)
<!-- 1. Start by cloning the Axon-cli GitHub repo from [GitHub](https://github.com/axonweb3/axon-devops/tree/main/axon-cli) -->

$ `git clone git@github.com:axonweb3/axon-cli.git`

Expand Down Expand Up @@ -260,8 +260,8 @@ After the setting up the right config and successfully starting `apm`, you can a
Now you can see the `axon-node` Dashboard displayed as below. Grafana provides time range control which is 7 days by default. Click on the time units on the top navbar to change the range. (I select **Last 1 hour** as shown below.)

![dash1 last 1 hour](/Users/sss/Downloads/dash1 last 1 hour.png)

![dash2](/Users/sss/Downloads/dash2.png)
<!--
![dash2](/Users/sss/Downloads/dash2.png) -->

You can also view the benchmark in the Dashboard `axon-benchmark` displayed as below.

Expand Down
10 changes: 10 additions & 0 deletions ci_mk_check_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"ignorePatterns": [
{
"pattern": "^http://172.17.0.1:8000"
},
{
"pattern": "http://localhost*"
}
]
}
2 changes: 1 addition & 1 deletion docs/contract/_category_.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"label": "Contracts",
"label": "Contract Info",
"position": 4,
"collapsed": false,
"link": {
Expand Down
4 changes: 3 additions & 1 deletion docs/contract/genesis_contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ sidebar_position: 3

import useBaseUrl from "@docusaurus/useBaseUrl";

See [insert nonce difference](https://github.com/axonweb3/axon/blob/main/core/mempool/src/lib.rs#L114-L123).

## Genesis Contracts

🛠 This page is a work in progress. 🚧
🛠 This page is a work in progress. 🚧
2 changes: 1 addition & 1 deletion docs/getting-started/for-contributor/icsc.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This article focuses on the storage of CKB cells in Axon, that is ICSC, and will

The Forcerelay sends ETH transactions to Axon, which packs CKB cells.

To view the transaction details, let's examine the [definition](https://github.com/axonweb3/axon/blob/main/core/executor/src/system_contract/image_cell/contract/contracts/ImageCell.sol) of ICSC.
<!-- To view the transaction details, let's examine the [definition](https://github.com/axonweb3/axon/blob/main/core/executor/src/system_contract/image_cell/contract/contracts/ImageCell.sol) of ICSC. -->

```solidity
contract ImageCell {
Expand Down