You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+37-1Lines changed: 37 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,5 +6,41 @@ This is the documentation repository for the [Casper Network](https://casper.net
6
6
7
7
The documentation site itself may be viewed at this address: https://docs.casper.network/.
8
8
9
-
For instructions on how to build, run, edit and contribute to this documentation please refer to the [developer documentation](./README/INDEX.md).
9
+
For instructions on how to build, run, edit and contribute to this documentation, please refer to the [developer documentation](./README/INDEX.md).
10
10
11
+
**Important Note: A complete rework of the documentation is currently underway. While fixes and improvements to this legacy version are welcome, please avoid making major or structural changes.**
12
+
13
+
## Quick Local Run Instructions
14
+
15
+
To run the documentation site locally, follow these steps:
Create a file named `.env`in the root of the `docs-redux` directory with the following content:
27
+
28
+
```
29
+
URL=http://localhost:3000
30
+
BASE_URL=/
31
+
ALGOLIA_APP_ID=your_algolia_app_id
32
+
ALGOLIA_INDEX_NAME=your_algolia_index_name
33
+
ALGOLIA_API_KEY=your_algolia_api_key
34
+
```
35
+
36
+
*(Note: Replace `your_algolia_app_id`, `your_algolia_index_name`, and `your_algolia_api_key` with actual values if you intend to use Algolia search; otherwise, placeholders are sufficient forlocal development.)*
37
+
38
+
3. **Install dependencies, build, and serve:**
39
+
40
+
```bash
41
+
npm install
42
+
npm run build
43
+
npm run serve
44
+
```
45
+
46
+
This will install the necessary packages, build the static site, and start a local server. You can then access the documentation in your browser at `http://localhost:3000/`.
description: Introduction to Block Lanes in the Casper v2.0 Release
4
+
slug: block-lanes
5
+
date: 2025-04-28T22:00
6
+
authors: [ core-team ]
7
+
tags: [v2]
8
+
hide_table_of_contents: false
9
+
---
10
+
11
+
In Casper 2.0 as part of the changes to the block structure, the body of the block now contains several distinct lanes which contain different transaction variants. Each lane has the following five properties:
12
+
13
+
An identifier for the lane represented as number, this identifier is simply a label. However, the system does reserve the 0 and 1 lane identifiers for native mint and auction interactions respectively.
14
+
1. Max serialized length of the entire transaction in bytes for a given transaction in a certain lane
15
+
2. Max args length size in bytes for a given transaction in a certain lane
16
+
3. Transaction gas limit for a given transaction in a certain lane
17
+
4. The maximum number of transactions the lane can contain
18
+
19
+
In 2.0, there are three distinct systemic lanes - lanes that must be present and defined. These required lanes are for native transactions (e.g., native transfer and native add-bid), and for the installation and upgrading of stored Wasm. In addition to these three lanes, a Casper network can be set up with a range of user-defined lanes for Wasm transactions. The number of user defined lanes is specific to a given network and is defined in the chainspec for that given network.
20
+
21
+
The assignment of a given transaction is determined by comparing the transaction's properties against those of a specific lane. If any of the transaction's properties exceed the lane's specified limits, the transaction is deemed ineligible to be part of that lane. It should be noted that during lane determination, the gas limit is determined based on the pricing mode.
22
+
23
+
In payment-limited mode, the gas limit for a given transaction is determined by the payment amount as specified by the user.
24
+
In fixed mode, lane determination first estimates the lane based on the size of the transaction, measured in bytes, and the additional computational factor as specified by the user.
Copy file name to clipboardExpand all lines: condor/devnet-info.md
+20-24Lines changed: 20 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## What is Devnet?
4
4
5
-
The Casper Condor release is being rolled out in a phased fashion, allowing people to test their code, SDKs and smart contracts, before migrating to Mainnet. The first phase of this is rolling out to Devnet.
5
+
The Casper 2.0 release is being rolled out in a phased fashion, allowing people to test their code, SDKs and smart contracts, before migrating to Mainnet. The first phase of this is rolling out to Devnet.
6
6
7
7
This article/FAQ is a guide to the process for gaining access to Devnet, what to expect when you do access Devnet, and any other concerns.
8
8
@@ -17,54 +17,50 @@ Once your request has been processed, you will be notified and provided with a l
17
17
18
18
## What is the latest commit/release candidate deployed on to the Devnet?
- New NCTL image with `v200-rc6` available on Docker Hub:
36
-
-`makesoftware/casper-nctl:v200-rc6`
35
+
- New NCTL image with `v200-rc10` available on Docker Hub:
36
+
-`makesoftware/casper-nctl:v200-rc10`
37
37
38
38
**CEP-18:**
39
-
- A version of CEP-18 compatible with Condor RC5/6 is available in the forked repository [here](https://github.com/davidatwhiletrue/cep18-limited/tree/casper-2.0.0-rc5)
39
+
- A version of CEP-18 compatible with Casper 2.0 is available in the forked repository [here](https://github.com/casper-ecosystem/cep18/tree/feat-2.0)
40
40
41
-
- Please note that this is meant for testing SDKs and scripts
42
41
43
42
**CEP-78:**
44
-
- Work in progress
43
+
- A version of CEP-78 compatible with Casper 2.0 is available in the forked repository [here](https://github.com/casper-ecosystem/cep-78-enhanced-nft/tree/feat-2.0)
0 commit comments