From ceb44507a3c2339c8d780659bdabadf06836e304 Mon Sep 17 00:00:00 2001 From: 0xward <0xward.dev@gmail.com> Date: Wed, 17 Jun 2026 12:05:13 +0700 Subject: [PATCH 1/2] fix: update Alfajores references to Celo Sepolia and fix http links --- .../release-process/base-cli-contractkit-dappkit-utils.mdx | 2 +- tooling/libraries-sdks/contractkit/usage.mdx | 2 +- tooling/libraries-sdks/viem/index.mdx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contribute-to-celo/release-process/base-cli-contractkit-dappkit-utils.mdx b/contribute-to-celo/release-process/base-cli-contractkit-dappkit-utils.mdx index b30bd62a6..8c89f2ed6 100644 --- a/contribute-to-celo/release-process/base-cli-contractkit-dappkit-utils.mdx +++ b/contribute-to-celo/release-process/base-cli-contractkit-dappkit-utils.mdx @@ -17,7 +17,7 @@ For the most up-to-date information, refer to our [Celo L2 documentation](/build ## Versioning -Use the standard MAJOR.MINOR.PATCH semantic versioning scheme described at [semver.org](http://semver.org). +Use the standard MAJOR.MINOR.PATCH semantic versioning scheme described at [semver.org](https://semver.org). New releases can be expected as follows: diff --git a/tooling/libraries-sdks/contractkit/usage.mdx b/tooling/libraries-sdks/contractkit/usage.mdx index 0651e18c0..18c0acfbb 100644 --- a/tooling/libraries-sdks/contractkit/usage.mdx +++ b/tooling/libraries-sdks/contractkit/usage.mdx @@ -46,7 +46,7 @@ let totalBalance = await kit.getTotalBalance(myAddress); Deploying a contract with the default account already set. Simply send a transaction with no `to:` field. See more about sending custom transactions below. -You can verify the deployment on the [Alfajores block explorer here](https://celo-alfajores.blockscout.com/). Wait for the receipt and log it to get the transaction details. +You can verify the deployment on the [Celo Sepolia block explorer here](https://celo-sepolia.blockscout.com/). Wait for the receipt and log it to get the transaction details. ```ts let bytecode = "0x608060405234..."; // compiled Solidity deployment bytecode diff --git a/tooling/libraries-sdks/viem/index.mdx b/tooling/libraries-sdks/viem/index.mdx index 6535222e2..8d63d65f9 100644 --- a/tooling/libraries-sdks/viem/index.mdx +++ b/tooling/libraries-sdks/viem/index.mdx @@ -23,7 +23,7 @@ The TLDR is that passing a celo chain from `viem/chains` into the config of `cre const client = createWalletClient({ account, // Passing chain is how viem knows to try serializing tx as cip42. - chain: celoAlfajores, + chain: celoSepolia, transport: http(), }); @@ -33,7 +33,7 @@ client.writeContract({ functionName: "contractMethod", args: [to, parseEther(value)], // set the fee currency on the contract write call - feeCurrency: FEE_CURRENCIES_ALFAJORES["cusd"], + feeCurrency: FEE_CURRENCIES_ALFAJORES["cusd"]feeCurrency: FEE_CURRENCIES_SEPOLIA["cusd"],, }); ``` From bf6e1c85bf5e9e23386ed38e3156f1f2eb57f370 Mon Sep 17 00:00:00 2001 From: 0xward <0xward.dev@gmail.com> Date: Fri, 19 Jun 2026 12:44:38 +0700 Subject: [PATCH 2/2] fix: correct feeCurrency to use FEE_CURRENCIES_SEPOLIA --- tooling/libraries-sdks/viem/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/libraries-sdks/viem/index.mdx b/tooling/libraries-sdks/viem/index.mdx index 8d63d65f9..30bd32f8b 100644 --- a/tooling/libraries-sdks/viem/index.mdx +++ b/tooling/libraries-sdks/viem/index.mdx @@ -33,7 +33,7 @@ client.writeContract({ functionName: "contractMethod", args: [to, parseEther(value)], // set the fee currency on the contract write call - feeCurrency: FEE_CURRENCIES_ALFAJORES["cusd"]feeCurrency: FEE_CURRENCIES_SEPOLIA["cusd"],, + feeCurrency: FEE_CURRENCIES_SEPOLIA["cusd"], }); ```