🏁
Concurrent Programming Guide
  • Welcome
  • Overview
  • data structure
    • Cumulative Integer
    • Base
    • Arrays
    • Ordered Maps
  • utility
    • Multiprocessor
    • Runtime
    • Storage
  • Examples
    • Contract Examples
Powered by GitBook
On this page
  1. Examples

Contract Examples

Parallelized Smart Contracts

PreviousStorage

Last updated 8 months ago

This section contains examples to help developers better understand how the concurrent tools provided can be used. The examples are specifically designed to work on the Arcology Network. To run them, you need to start a first.

On what and how to write parallel smart contract please refer to the concurrent programming guide

Example

, a naturally parallelizable without needing modification.

Utilizes Arcology's concurrent library to handle parallel like calls to the same contract

Counts the number of visits to a contract, can handle concurrent calls.

Parallelized version of an to demonstrate how a standard Ethereum contract can be parallelized using the Arcology Network's concurrent libraries.

A parallelized . Another example to demonstrate how to parallelize a standard Ethereum contract.

The It is a simple and sufficient ERC20 implementation. The new version allows concurrent mint and burn.

Subcurrency
From Solidity's official document
Parallel Like
Concurrent Counter
Simple Auction
Ethereum official example
Parallelized Voting
Ethereum example
Parallel dstoken
original implementation is available
here.
DevNet