Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 881 Bytes

layout.md

File metadata and controls

24 lines (21 loc) · 881 Bytes

open-transaction-pool layout

open-transaction-pool
├── otx-format 
├── otx-plugin-protocol 
├── otx-pool 
├── utils 
├── src
│   └── main.rs
├── docs
│   └── layout.md
└── integration-test

A brief description:

  • otx-format contains the implementation of the data structure of CKB Open Transaction Format and the surrounding tools.
  • otx-plugin-protocol defines the protocol for extensible plug-ins.
  • otx-pool open transaction pool implementation, it supports plug-in extension.
  • utils contains various utilities that are used both on the server side and on the wallet side.
  • src contains main.rs, the entry point of the service program.
  • docs contains project documentations.
  • integration-test is the integration tests for this project.