Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion tooling/libraries-sdks/contractkit/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tooling/libraries-sdks/viem/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
});

Expand All @@ -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"],
});
```

Expand Down