Acropolis Testnet Specification
Table Of Contents
Document
The purpose of this document is to serve as a starting point for the implementation phase of the given testnet. It is only a starting point in the sense that the implementation effort will always depart from the up front specification to some, possibly substantial, extent, but no effort is made to synchronise the specification at any time. Instead, the any such synchronisation would be done in the specification of a future network. The value of such a specification is primarily to establish a relatively precise shared understanding among all contributors to a testnet release.
Caveat
Parts of the specification are not well harmonised with the rest, in particular the storage system, due to time constraints. Read graciously, this will be resolved later. Also, a substantial number of modules are not yet specced, as already implemented modules from prior testnets are being reused. Full specs will eventually be available as future networks are released where changes are made to these modules. Lastly, a number off communication protocols are not captured in this spec due to time constraints, they will be introduced for later networks.
Glossary
Substrate: A blockchain SDK, used for this testnet, that abstracts away concerns about consensus and p2p communication.
Runtime: Application specific consensus code written for the Substrate SDK. Includes state and transaction rules specific to the application, but excludes consensus algorithm and p2p networking.
Substrate Module: A substrate runtime is partitioned into functionality integrated units, called modules, which have their own local state, transaction types and events.
SRML: Substrate standard runtime library (SRML), is a set of highly reusable Substrate modules.
AURA: Component of consensus responsible for block authoring.
GRANDPA: Component of consensus responsible for block finality.
Overview
The Acropolis testnet features the following roles
- Validator: Block producer and validator.
- Council Member: Council participant, currently only involved in voting on runtime upgrades.
- Storage Provider: Does storage and distribution of content, peer provider synchronisation, as well as upload liaison.
- Forum Moderator: A single actor role for managing the new on-chain forum.
This release also sees the introduction of a new storage infrastructure based on IPFS for distribution and synchronisation, and IPNS for host resolution. A generalised host resolution module is also introduced as part of making the latter functionality possible, and it will be reused for host resolution across the platform.
A full featured hierarchical topic based, and single moderator, membership forum is also introduced.
Substrate Runtime
Runtime Version
- spec_name:
joystream-node
- impl_name:
joystream-node
- authoring_version:
5
- spec_version:
4
- impl_version:
0
- apis:
RUNTIME_API_VERSIONS
Native Version
Substrate Version
1.0.0
Modules
These are the Joystream specific modules, for each module, there is either a link to a module specification document, or no link, for already implemented modules (see caveat). Standard configurations, for example based on values from the System module, are omitted.
An integrated explanation of the modules constituting the storage system is found here.
Forum
- Description: An on-chain discussion forum for members.
- Specification: READ HERE
- Status: New.
- Configuration:
- ForumUserRegistry: Proxy call to
get_profile
on Membership module.
Proposals
- Description: Proposal system, currently only supports runtime upgrades.
- Specification: NA
- Status: Unchanged from Athens.
- Configuration:
CouncilElection
- Description: Council election manager for council system.
- Specification: NA
- Status: Unchanged from Athens.
- Configuration:
Council
- Description: Council system.
- Specification: NA
- Status: Unchanged from Athens.
- Configuration:
Memo
- Description: Account based public message field.
- Specification: NA
- Status: Unchanged from Athens.
- Configuration: Standard only.
Membership
- Description: Membership registry.
- Specification: NA
- Status: Unchanged from Athens.
- Configuration:
- Roles: Actors module
- MemberId:
u64
- PaidTermId:
u64
- SubscriptionId:
u64
Discovery
- Description: Host resolution system for public keys.
- Specification: READ-HERE
- Status: New.
- Configuration:
- Roles: Shim trait which enables account lookup and by proxying to Actors module. Keeping this brief, since it will change.
Migration
- Description: Runs migration & initialisation routines after on-chain upgrade from past testnet (Athens).
- Specification: READ HERE
- Status: Updated to include initialisation of new forum after upgrade.
- Configuration: Standard only.
Actors
- Description: Staking manager for storage system.
- Specification: READ HERE
- Status: Unchanged from Athens.
- Configuration:
DataObjectTypeRegistry
- Description:
- Specification: READ HERE
- Status: Unchanged from Athens.
- Configuration:
DataDirectory
- Description:
- Specification: READ HERE
- Status: Unchanged from Athens.
- Configuration:
DataObjectStorageRegistry
- Description:
- Specification: READ HERE
- Status: Unchanged from Athens.
- Configuration:
DownloadSessions
- Description: Manages download sessions in storage system.
- Specification: NA
- Status: Not used.
- Configuration:
SRML Modules
These modules are part of the runtime, but are already implemented part of the SRML.
- System: The system module provides low-level access to core types and cross-cutting utilities.
- Timestamp: The Timestamp module provides functionality to get and set the on-chain time.
- Consensus: The consensus module manages the authority set for the native code.
- Aura: The Aura module extends Aura consensus by managing offline reporting.
- Indices: An index is a short form of an address. This module handles allocation of indices for a newly created accounts.
- Balances: The balances module provides functionality for handling accounts and balances.
- Session: Is told the validators and allows them to manage their session keys for the consensus module.
- Staking: The staking module is the means by which a set of network maintainers (known as authorities in some contexts and validators in others) are chosen based upon those who voluntarily place funds under deposit.
- Sudo: The sudo module allows for a single account (called the "sudo key") to execute dispatchable functions that require a
Root
call or designate a new account to replace them as the sudo key.
- Grandpa: This manages the GRANDPA authority set ready for the native code.
Runtime APIs
The runtime implements the following set of APIs.
- version: Return Runtime Version
- execute_block: Executive module
execute_block
routine.
- initialize_block: Executive module
initialize_block
routine.
- authorities: Executive module
apply_extrinsic
routine.
- metadata: Runtime
metadata
routine.
- apply_extrinsic: Executive module
apply_extrinsic
routine.
- finalize_block: Executive module
finalize_block
routine.
- inherent_extrinsics:
create_extrinsics
routine on inherent data.
- check_inherents: Inherent
check_extrinsics
routine on block.
- random_seed: System module
random_seed
routine.
- validate_transaction: Executive module
validate_transaction
routine.
- offchain_worker: Executive module
offchain_worker
routine.
- grandpa_pending_change, grandpa_forced_change, grandpa_authorities: Default.
- slot_duration: Aura module
slot_duration
routine.
AuthoritiesApi
- authorities: Consensus module
authorities
routine.