Skip to content

FraktalLabs/fraktal-vm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fraktal VM

Runs a Fraktal VM client to host compute

Stand-alone C++20 executable and library used to provide Fraktal VM compute. Fraktal VM is a superset of the EVM, which allows parallelism and concurrency in contract execution. The design is inspired by golang's goroutines & runtime.

Table of Contents

Install

make all

NOTE: Dependencies must be compiled & linked into compilation aswell.

Usage

fraktal-vm comes with one main command to run :

./bin/fraktal-vm run --stateSnapshot ./path/to/snapshot.json --txPoolSnapshot ./path/to/transactions.csv

Dependencies

Testing

This repo contains various tests under ./test/ to make sure things are working. To run use :

make run-fraktal-vm-test
# After txs run, Ctrl-C to stop VM runtime

Check the diff in ./test/snapshot.json to see if things processed properly.

Details

Running the Fraktal-VM does the following :

  1. Load the FraktalState from a snapshot
  2. Load the TxPool from a snapshot
  3. Create a pool of EVMThread objects, making the threadPool
  4. Start the TxPoolServer in its own thread to accept txs into TxPool
  5. Start spinning each thread in the threadPool
  6. Wait till Fraktal VM runtime is killed, then snapshot FraktalState + TxPool

Each EVMThread does the following :

  1. Get transaction from pool, if none available then spin
  2. Run the transaction using CallContext on a FraktalAccount.
  3. Remove Tx from pool
  4. Repeat

NOTE: Not currently implemented, but Tx processing will be changed to coroutines processing.

Media

Fraktal VM Runtime

Maintainer

Brandon Roberts @b-j-roberts

License

MIT