Skip to content

Commit

Permalink
Release 11-02-2025 (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschakki authored Feb 13, 2025
2 parents 4f1b45e + d8c13fd commit 7850b7b
Show file tree
Hide file tree
Showing 49 changed files with 2,932 additions and 1,545 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
id: bridged-tokens
title: Bridged Token Addresses
sidebar_position: 2
slug: /bridged-tokens
description: 'A reference page listing all tokens bridged to Lisk.'
keywords:
[
Expand All @@ -11,14 +10,14 @@ keywords:
]
---

# Bridged tokens
# Bridged Token Addresses

This page summarizes officially reviewed tokens deployed on Lisk and their corresponding L1 addresses.

The list is based on the [Superchain Token List](https://github.com/ethereum-optimism/ethereum-optimism.github.io).

:::tip
If you want to add a token to the list, please check out the guide [Bridging an L1 token to Lisk](add-token-to-lisk/index.md).
If you want to add a token to the list, please check out the guide [Bridging an L1 token to Lisk](/building-on-lisk/add-token-to-lisk/index.md).
:::

## Lisk Mainnet
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
id: contracts
title: Contracts
sidebar_position: 1
slug: /contracts
description: 'A reference page listing all the contracts deployed concerning Lisk.'
keywords:
[
Expand Down
2 changes: 1 addition & 1 deletion docs/building-on-lisk/add-token-to-lisk/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ To add your token to the list, perform the following steps.

### Step 1: Deploy your token on Lisk
Select your preferred bridging framework and use it to deploy an ERC-20 for your token on Lisk.
We recommend you use the framework provided by Lisk's [standard bridge](#the-standard-bridge) contracts and, furthermore, deploy your token using the [OptimismMintableERC20Factory](../contracts.mdx#lisk-network-l2).
We recommend you use the framework provided by Lisk's [standard bridge](#the-standard-bridge) contracts and, furthermore, deploy your token using the [OptimismMintableERC20Factory](/about-lisk/contracts.mdx#lisk-network-l2).
Deploying your token on Lisk in this manner provides us with guarantees that will smooth the approval process.
If you choose a different bridging framework, its interface must be compatible with that of the standard bridge.
Otherwise, it may be difficult for us to support them.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ However, for this guide, we will mainly talk about the [thirdweb Explore](https:
- [Build (Solidity SDK)](https://portal.thirdweb.com/contracts/build/overview): Write custom smart contracts.
- [Deploy](https://portal.thirdweb.com/contracts/deploy/overview): Support for contract deployment built for any use case.
- [Publish](https://portal.thirdweb.com/contracts/publish/overview): Publish your contracts onchain.
- [Interact](https://portal.thirdweb.com/contracts/interact/overview): Interact with smart contracts and integrate smart contracts directly into your app.

## Deploying pre-built contracts via thirdweb Explore
In case you want to deploy a pre-built contract without any customization, thirdweb offers a convenient way to do so with **Explore**.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ The `0x` prefix indicates that the following string is a hexadecimal number.
</Tabs>

:::info
In addition to making a JSON-RPC request (`eth_requestAccounts`) to get an Account, viem provides various helper methods for creating an `Account`, including: [`privateKeyToAccount`](https://viem.sh/docs/accounts/privateKey.html), [`mnemonicToAccount`](https://viem.sh/docs/accounts/mnemonic.html), and [`hdKeyToAccount`](https://viem.sh/docs/accounts/hd.html).
In addition to making a JSON-RPC request (`eth_requestAccounts`) to get an Account, viem provides various helper methods for creating an `Account`, including: [`privateKeyToAccount`](https://viem.sh/docs/accounts/local/privateKeyToAccount), [`mnemonicToAccount`](https://viem.sh/docs/accounts/local/mnemonicToAccount), and [`hdKeyToAccount`](https://viem.sh/docs/accounts/local/hdKeyToAccount).

{ /* To use Lisk Sepolia (testnet), replace `lisk` with `liskSepolia`.
*/}
Expand Down
2 changes: 1 addition & 1 deletion docs/building-on-lisk/run-a-lisk-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ $( curl -s -d '{"id":0,"jsonrpc":"2.0","method":"optimism_syncStatus"}' -H "Cont
```
[partners]: /lisk-tools/api-providers
[partners]: /lisk-tools/node-providers
[lisk node]: https://github.com/LiskHQ/lisk-node
337 changes: 337 additions & 0 deletions docs/building-on-lisk/web3-app-development.mdx

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: API Providers
slug: /lisk-tools/api-providers
title: Node providers
slug: /lisk-tools/node-providers
description: Documentation for Node Providers for the Lisk network. Including details on their services, supported networks, and pricing plans.
keywords:
[
Expand All @@ -24,28 +24,21 @@ keywords:
]
---

# API Providers
# Node providers

Lisk nodes expose an RPC API that allows other parties to interact with the blockchain by invoking requests.

If you're just getting started and need an RPC URL, you can use our [free endpoints](#lisk-rpc).
If you're looking to strengthen your app and avoid rate-limiting for your users, please check out our available RPC node providers like [dRPC](#drpc).

## API reference

:::tip[API reference]
The available endpoints for Lisk nodes include all [Geth RPC endpoints](https://geth.ethereum.org/docs/interacting-with-geth/rpc), which also include all standard [JSON-RPC API endpoints](https://ethereum.github.io/execution-apis/api-documentation/) of Ethereum.

:::

## Lisk RPC

Free, rate limited RPC endpoints for the Lisk networks.


<!-- | | Lisk Sepolia Testnet |
| :------ | :------ |
|**HTTP RPC** | https://rpc.sepolia-api.lisk.com |
|**WS RPC** | `wss://ws.sepolia-api.lisk.com` | -->

| | Lisk Sepolia Testnet | Lisk |
| :------ | :------ | :----------------------- |
|**HTTP RPC** | https://rpc.sepolia-api.lisk.com | https://rpc.api.lisk.com |
Expand All @@ -65,7 +58,7 @@ They provide a free tier that allows for an unlimited amount of requests over pu

You can also check the available endpoints for Lisk directly under [https://drpc.org/public-endpoints/lisk](https://drpc.org/public-endpoints/lisk).

dRPC also provides a [faucet for Lisk Sepolia](faucets.md#drpc-faucet).
dRPC also provides a [faucet for Lisk Sepolia](./faucets.md#drpc-faucet).

:::note[How to create API keys for dRPC]
In order to use the provided endpoints, you need to [get the corresponding API keys](https://docs.drpc.org/gettingstarted/createaccount).
Expand All @@ -92,3 +85,11 @@ To use the Moralis RPC Nodes, follow these steps:
2. **Set up your node:** Visit the [Setting Up RPC Nodes](https://docs.moralis.com/get-your-node-api-key) guide to create and configure your RPC node.
3. **Make your first RPC call:** Once you have your node set up, follow the [tutorial](https://docs.moralis.com/make-your-first-rpc-call) to make your first JSON-RPC call using ethers.js.

## Tenderly

[Tenderly](https://tenderly.co/) is a Web3 development platform that offers its tools and infrastructure across 79+ networks. Some networks, like Lisk, also have node RPC support.

- [Lisk Mainnet nodes by Tenderly](https://docs.tenderly.co/node/rpc-reference/lisk)
- [Lisk Sepolia Testnet nodes by Tenderly](https://docs.tenderly.co/node/rpc-reference/lisk-sepolia)

Tenderly provides a [free trier](https://tenderly.co/pricing) to user their RPC nodes.
29 changes: 19 additions & 10 deletions i18n/ind/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
"Explore our comprehensive knowledge base tailored for both developers and users! Find in-depth technical information and helpful guides all about the Lisk blockchain.": {
"message": "Jelajahi basis pengetahuan komprehensif kami yang dirancang khusus untuk pengembang dan pengguna! Temukan informasi teknis mendalam dan panduan bermanfaat tentang blockchain Lisk."
},
"Welcome to the Lisk Documentation 🎉": {
"Welcome to the Lisk documentation 🎉": {
"message": "Selamat datang di Dokumentasi Lisk 🎉"
},
"Let's build with Lisk 🛠": {
Expand All @@ -449,23 +449,32 @@
"Lisk offers a highly efficient, lightning-fast, and easily scalable Layer 2 (L2) network built on Optimism (OP) and secured by Ethereum.": {
"message": "Lisk menawarkan jaringan Layer 2 (L2) yang sangat efisien, sangat cepat, dan mudah diskalakan yang dibangun di atas Optimism (OP) dan diamankan oleh Ethereum."
},
"EXPLORE": {
"message": "MENGEKSPLORASI"
"Explore": {
"message": "Jelajahi"
},
"Lisk offers low-cost transactions, EVM compatibility, and support for all major developer frameworks, making it the top choice for developers. Join Lisk to access essential technical materials for your development journey.": {
"message": "Lisk menawarkan transaksi berbiaya rendah, kompatibilitas EVM, dan dukungan untuk semua kerangka kerja pengembang utama, menjadikannya pilihan utama bagi para pengembang. Bergabunglah dengan Lisk untuk mengakses materi teknis penting bagi perjalanan pengembangan Anda."
"message": "Lisk menawarkan transaksi berbiaya rendah, kompatibilitas EVM, dan dukungan untuk semua framework pengembang utama, menjadikannya pilihan utama bagi para pengembang. Bergabunglah dengan Lisk untuk mengakses materi teknis penting bagi perjalanan pengembangan Anda."
},
"GET STARTED": {
"message": "MEMULAI"
"Get started": {
"message": "Mulai"
},
"to support the development of products and advocate for the principles of a decentralized world and inclusivity.": {
"message": "untuk mendukung pengembangan produk dan mengadvokasi prinsip-prinsip dunia yang terdesentralisasi dan inklusivitas."
"message": "untuk mendukung pengembangan produk dan mengadvokasi prinsip-prinsip dunia yang terdesentralisasi dan inklusiv."
},
"LEARN MORE": {
"message": "PELAJARI LEBIH LANJUT"
"Learn more": {
"message": "Pelajari lebih lanjut"
},
"Lisk embraces the superchain framework, offering decentralized governance and an interoperable ecosystem. We provide": {
"message": "Lisk menggunakan kerangka kerja superchain, menawarkan tata kelola yang terdesentralisasi dan ekosistem yang dapat dioperasikan bersama. Kami menyediakan"
"message": "Lisk menggunakan framework superchain, menawarkan tata kelola yang terdesentralisasi dan ekosistem yang dapat dioperasikan bersama. Kami menyediakan"
},
"Lisk embraces the superchain framework, offering decentralized ": {
"message": "Lisk menggunakan framework superchain, menawarkan "
},
"governance": {
"message": "tata kelola"
},
"and an interoperable ecosystem. We provide ": {
"message": "yang terdesentralisasi dan ekosistem yang dapat dioperasikan bersama. Kami menyediakan"
},
"grant programs": {
"message": "program hibah"
Expand Down
6 changes: 3 additions & 3 deletions i18n/ind/docusaurus-plugin-content-docs/current.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"description": "The generated-index page title for category Building on Lisk in sidebar documentationSidebar"
},
"sidebar.documentationSidebar.category.Building on Lisk.link.generated-index.description": {
"message": "Guides for developers to start building dApps on Lisk L2.",
"message": "Panduan untuk pengembang memulai membangun dApps di Lisk L2.",
"description": "The generated-index page description for category Building on Lisk in sidebar documentationSidebar"
},
"sidebar.documentationSidebar.category.Deploying a Smart Contract": {
"message": "Menerapkan Kontrak Cerdas",
"message": "Menerapkan Smart Contract",
"description": "The label for category Deploying a Smart Contract in sidebar documentationSidebar"
},
"sidebar.documentationSidebar.category.Bridging an L1 token to Lisk": {
"message": "Menjembatani token L1 ke Lisk",
"message": "Bridge token L1 ke Lisk",
"description": "The label for category Bridging an L1 token to Lisk in sidebar documentationSidebar"
},
"sidebar.documentationSidebar.category.Interacting with the blockchain": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"label": "About Lisk",
"label": "Tentang Lisk",
"position": 2,
"link": {
"type": "generated-index",
"description": "A short introduction to Lisk."
"description": "Pengenalan singkat tentang Lisk."
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
id: bridged-tokens
title: Bridged Token Addresses
sidebar_position: 2
description: 'A reference page listing all tokens bridged to Lisk.'
keywords:
[
'Lisk',
'Bridged tokens'
]
---

# Bridged Token Addresses

This page summarizes officially reviewed tokens deployed on Lisk and their corresponding L1 addresses.

The list is based on the [Superchain Token List](https://github.com/ethereum-optimism/ethereum-optimism.github.io).

:::tip
If you want to add a token to the list, please check out the guide [Bridging an L1 token to Lisk](/building-on-lisk/add-token-to-lisk/index.md).
:::

## Lisk Mainnet

| Bridged Tokens Mainnet | Symbol | L1 Token | L2 Token |
| :----------------- | :----- |:----------------- | :----------------- |

## Lisk Sepolia

| Bridged Tokens Sepolia | Symbol | L1 Token | L2 Token |
| :----------------- | :----- |:----------------- | :----------------- |
Loading

0 comments on commit 7850b7b

Please sign in to comment.