From 7638031ee02a55da8ee9b93fd058e1e8e4fa14a4 Mon Sep 17 00:00:00 2001 From: kmurphypolygon Date: Mon, 8 Jan 2024 10:28:51 +0100 Subject: [PATCH 1/4] remove vscode folder --- .vscode/settings.json | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 4467eee14..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "cSpell.words": [ - "Merkle", - "Miden", - "rollups" - ] -} \ No newline at end of file From 5fe63fda58928397a3356db44e5dc33fa19a4771 Mon Sep 17 00:00:00 2001 From: kmurphypolygon Date: Mon, 8 Jan 2024 10:29:38 +0100 Subject: [PATCH 2/4] update gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 600c3dd66..7890ceb74 100755 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -.vscode/ +.vscode .code .idea site/ From 58fed938791a09573c87022674645ec13e8b1b7b Mon Sep 17 00:00:00 2001 From: kmurphypolygon Date: Mon, 8 Jan 2024 10:58:40 +0100 Subject: [PATCH 3/4] add CDK testnet info --- docs/cdk/get-started/connect-testnet.md | 15 +++++++++++++++ mkdocs.yml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 docs/cdk/get-started/connect-testnet.md diff --git a/docs/cdk/get-started/connect-testnet.md b/docs/cdk/get-started/connect-testnet.md new file mode 100644 index 000000000..1b4d44492 --- /dev/null +++ b/docs/cdk/get-started/connect-testnet.md @@ -0,0 +1,15 @@ +## Stavanger + +The [CDK Stavanger testnet](https://polygon.technology/cdk-stavanger-testnet) is a validium testnet based on Sepolia. + +- Add the RPC network details to your wallet by navigating to the add network input and entering the data as given in the table below. +- Use the faucet to get test ETH. +- Bridge assets from Sepolia to Stavanger using the bridge. +- Confirm your transactions with the block explorer. + +| Use case | URL | Usage | +| ------- | ----------- | --------- | +| JSON RPC | https://sn2-stavanger-rpc.eu-north-2.gateway.fm | Make remote procedure calls to the CDK testnet. | +| Faucet | https://sn2-stavanger-faucet.eu-north-2.gateway.fm | Get testnet tokens. | +| Bridge | https://sn2-stavanger-bridge.eu-north-2.gateway.fm | Bridge tokens from Sepolia. | +| Block explorer | https://sn2-stavanger-blockscout.eu-north-2.gateway.fm | Confirm transactions with the explorer. | \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index fc578f8d7..0b9dc787c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -43,6 +43,7 @@ nav: - CDK: cdk/index.md - Overview: cdk/overview.md - Get started: + - Connect testnet: cdk/get-started/connect-testnet.md - Quickstart: - Validium: cdk/get-started/quickstart-validium.md - Rollup: cdk/get-started/quickstart-rollup.md @@ -58,7 +59,6 @@ nav: - Rollup: cdk/concepts/rollup.md - Validium: cdk/concepts/validium.md - Data availability: cdk/concepts/dac.md - # - API/SDK: - Additional resources: - CDK repos: cdk/resources/cdk-repo-reference.md - zkEVM: From de4ae129264cc556f6e130f8854f268eb2f76bc7 Mon Sep 17 00:00:00 2001 From: kmurphypolygon Date: Mon, 8 Jan 2024 11:21:38 +0100 Subject: [PATCH 4/4] add info about public/local deploy --- docs/cdk/get-started/deploy-validium.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/cdk/get-started/deploy-validium.md b/docs/cdk/get-started/deploy-validium.md index 81f467fbe..db74c8d6d 100644 --- a/docs/cdk/get-started/deploy-validium.md +++ b/docs/cdk/get-started/deploy-validium.md @@ -9,12 +9,19 @@ Follow the steps below to deploy a CDK validium instance. ## 1. Deploy validium-specific contracts +!!! important + - Follow this step if you are deploying to a public testnet. + - For a local deploy, follow step 2 instead which deploys a local L1 network plus CDK contracts. + First, deploy the relevant contracts. Follow the steps in the [CDK validium contracts repository's README](https://github.com/0xPolygon/cdk-validium-contracts). ## 2. Run the CDK validium node +!!! important + - If you are deploying to a public testnet, follow the previous step 1. + Next, set up and run the CDK validium node. Follow the instructions in the [CDK validium node repository's README](https://github.com/0xPolygon/cdk-validium-node).