From e5540071b357bcca763195f5b40b2e25facb7520 Mon Sep 17 00:00:00 2001 From: Joao Garcia Date: Mon, 24 Nov 2025 16:11:38 +0000 Subject: [PATCH 1/3] Updated community links --- docusaurus.config.js | 12 ++++++++---- get-started/index.mdx | 5 +++-- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 6a241ee6..89df84e2 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -301,12 +301,12 @@ const config = { to: "https://discord.gg/cWGbyFkQ2W", }, { - label: "Medium", - to: "https://www.medium.com/cartesi", + label: "Blog", + to: "https://cartesi.io/blog/", }, { - label: "Twitter", - to: "https://www.twitter.com/cartesiproject", + label: "X", + to: "https://www.x.com/cartesiproject", }, { label: "Telegram", @@ -316,6 +316,10 @@ const config = { label: "Reddit", to: "https://www.reddit.com/r/cartesi/", }, + { + label: "More", + to: "https://linktr.ee/cartesi", + }, ], }, ], diff --git a/get-started/index.mdx b/get-started/index.mdx index 0a42d9d3..a27c3154 100644 --- a/get-started/index.mdx +++ b/get-started/index.mdx @@ -52,6 +52,7 @@ import DocCard from '@theme/DocCard'; - [Discord](https://discord.gg/cWGbyFkQ2W) - [GitHub](https://github.com/cartesi) +- [Blog](https://cartesi.io/blog/) +- [X](https://x.com/cartesiproject) - [YouTube](https://www.youtube.com/@cartesiproject) -- [Medium](https://medium.com/cartesi) -- [Twitter](https://x.com/cartesiproject) \ No newline at end of file +- [More](https://linktr.ee/cartesi) \ No newline at end of file From 9571d003b9144067bbf4d38ac21aca92f2558f0a Mon Sep 17 00:00:00 2001 From: Joao Garcia Date: Thu, 18 Dec 2025 15:14:57 +0000 Subject: [PATCH 2/3] hotfix update epoch config --- .../version-1.5/development/asset-handling.md | 2 +- .../version-1.5/rollups-apis/backend/vouchers.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cartesi-rollups_versioned_docs/version-1.5/development/asset-handling.md b/cartesi-rollups_versioned_docs/version-1.5/development/asset-handling.md index 2bc095a6..ca01d1a3 100644 --- a/cartesi-rollups_versioned_docs/version-1.5/development/asset-handling.md +++ b/cartesi-rollups_versioned_docs/version-1.5/development/asset-handling.md @@ -53,7 +53,7 @@ The dApp’s off-chain layer often requires knowledge of its address to facilita By calling [`relayDAppAddress()`](../rollups-apis/json-rpc/relays/relays.md), function of the `DAppAddressRelay` contract, it adds the dApp’s address as a new input for the Cartesi dApp to process. Next, the off-chain machine uses this address to generate a voucher for execution at the [`executeVoucher()`](../rollups-apis/json-rpc/application.md/#executevoucher) function of the `CartesiDApp` contract. :::note epoch length -By default, Cartesi nodes close one epoch every 7200 blocks. You can [manually set the epoch length](./cli-commands.md/#run) to facilitate quicker asset-handling methods. +By default, Cartesi nodes close one epoch every 7200 blocks. You can [manually set the epoch length](../../../get-started/cli-commands.md/#run) to facilitate quicker asset-handling methods. ::: Here are the function signatures used by vouchers to withdraw the different types of assets: diff --git a/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/backend/vouchers.md b/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/backend/vouchers.md index 114048c2..f39731c7 100644 --- a/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/backend/vouchers.md +++ b/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/backend/vouchers.md @@ -31,5 +31,5 @@ One everyday use of vouchers in Cartesi dApps is to withdraw assets. Users initi You can manually set the epoch length to facilitate quicker asset deposits and withdrawals. :::note epoch duration -[Refer to the documentation here](../../development/cli-commands.md/#run) to manually configure epoch length during development. +[Refer to the documentation here](../../../../get-started/cli-commands.md/#run) to manually configure epoch length during development. ::: From a3d3ee04f7f43dab021e48021b31b9e5ce379aae Mon Sep 17 00:00:00 2001 From: Joao Garcia Date: Thu, 18 Dec 2025 15:19:23 +0000 Subject: [PATCH 3/3] update for v2 --- .../version-2.0/api-reference/backend/vouchers.md | 2 +- .../version-2.0/development/asset-handling.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cartesi-rollups_versioned_docs/version-2.0/api-reference/backend/vouchers.md b/cartesi-rollups_versioned_docs/version-2.0/api-reference/backend/vouchers.md index 3c7f0639..906a6e5b 100644 --- a/cartesi-rollups_versioned_docs/version-2.0/api-reference/backend/vouchers.md +++ b/cartesi-rollups_versioned_docs/version-2.0/api-reference/backend/vouchers.md @@ -289,5 +289,5 @@ One common use of vouchers in Cartesi dApps is to withdraw assets. Users initiat You can manually set the epoch length to facilitate quicker asset deposits and withdrawals. :::note epoch duration -[Refer to the documentation here](../../development/cli-commands.md/#run) to manually configure epoch length during development. +[Refer to the documentation here](../../../../get-started/cli-commands.md/#run) to manually configure epoch length during development. ::: diff --git a/cartesi-rollups_versioned_docs/version-2.0/development/asset-handling.md b/cartesi-rollups_versioned_docs/version-2.0/development/asset-handling.md index 106a2771..54cc092a 100644 --- a/cartesi-rollups_versioned_docs/version-2.0/development/asset-handling.md +++ b/cartesi-rollups_versioned_docs/version-2.0/development/asset-handling.md @@ -143,7 +143,7 @@ const emitVoucher = async (voucher) => { ``` :::note epoch length -By default, Cartesi nodes close one epoch every 7200 blocks. You can [manually set the epoch length](./cli-commands.md/#run) to facilitate quicker asset-handling methods. +By default, Cartesi nodes close one epoch every 7200 blocks. You can [manually set the epoch length](../../../get-started/cli-commands.md#run) to facilitate quicker asset-handling methods. ::: Here are the function signatures used by vouchers to withdraw the different types of assets: