Crates.io | pchain-runtime |
lib.rs | pchain-runtime |
version | 0.4.3 |
source | src |
created_at | 2024-04-26 11:38:34.594293 |
updated_at | 2024-04-26 11:38:34.594293 |
description | parallelchain-runtime: ParallelChain Mainnet Runtime for state transition in ParallelChain Mainnet |
homepage | |
repository | https://github.com/parallelchain-io/pchain-runtime |
max_upload_size | |
id | 1221336 |
size | 737,017 |
ParallelChain Runtime is a State Transition Function to transit from an input state of the blockchain to next state. It is also the sole system component to handle Smart Contract that is primarily built from Rust code by using ParallelChain F Smart Contract Development Kit (SDK).
f(WS, BD, TX) -> (WS', R)
WS = World state represented by set of key-value pairs
BD = Blockchain Data
TX = Transaction, which is essentially a sequence of Commands
R = Receipt, which is a sequence of Command Receipts correspondingly.
The current version of this library (pchain-runtime v0.4.x) implements the Transition V1 function as specified in v0.4 of the ParallelChain Protocol.
Major modules of this repository are organized as following:
Execution:
transition
: Entry point of state transition function.execution
: Implementation of execution process.wasmer
: Implementation of components to use wasmer as Smart Contract Execution Runtime.contract
: Implementation of components related Smart Contract, such as instantiation, host/guess function interface, etc.Types and Data Model:
types
: General data types used in Runtime.read_write_set
: Implementation of data read-write operations to World State.Constants:
formulas
: General constants and equations used in Runtime.gas
: Specific to gas calculation functions and constants.High level description on implementation of pchain-runtime
can refer to ParallelChain Protocol.
Data types related to blockchain that are frequently used can be found on the crate ParallelChain Types.
Blockchain State model (World State) can refer to the crate ParallelChain World State.
The mentioned Smart Contract Development Kit can refer to the crate ParallelChain Smart Contract SDK.
Open an issue in GitHub if you:
Please try to label your issues appropriately.