subsembly
  • Introduction
  • Getting Started
    • Overview
    • Substrate Essentials
    • CLI
      • subsembly init
      • subsembly compile
      • subsembly spec
  • Development
    • Runtime Development
    • Chain Specification
    • Runtime Execution
  • Modules
    • Core
      • System
      • Executive
      • Crypto
      • Log
    • Pre-built
      • Aura
      • Balances
      • Timestamp
      • TransactionPayment
  • Advanced
    • as-scale-codec
    • subsembly-core
    • Metadata
      • Dispatcher
  • Guides
    • Create Your First Subsembly Runtime
      • Set Up
      • Start the Node
      • PolkadotJS
    • Start Your Network
      • Prepare the Network
      • Launch Validator Nodes
      • Launch the Third Node
    • Create a New Module
      • Nicks Module
      • Launch the Node
      • PolkadotJs
Powered by GitBook
On this page
  • Overview
  • Models
  • Modules
  • Utils

Was this helpful?

  1. Advanced

subsembly-core

Types and modules for Subsembly

Previousas-scale-codecNextMetadata

Last updated 4 years ago

Was this helpful?

Overview

subsembly-core is a library that provides the core components and types for the Subsembly framework.

Models

Folder consists of commonly used types in Subsembly, such as, Header, Extrinsic, Block, etc. All the models implement Codec interface from and have corresponding SCALE encoding and decoding methods.

Modules

Folder consists of commonly used modules inside Subsembly runtime. For instance, Log class to display messages to the Host.

Utils

Folder consists of commonly used utility functions in Subsembly. For instance, it includes methods for serialising and deserialising data incoming from the Host.

as-scale-codec