CrossPoly
  • Welcome to Crosspoly
  • Crosspoly Litepaper
  • Crosspoly Assets Mapping
  • Resources
  • Tech Weekly Report
    • Crosspoly Techteam Weekly Report(Aug 21-Aug27)
    • Crosspoly Techteam Weekly Report(Aug 14-Aug20)
    • Crosspoly Techteam Weekly Report(Aug 7-Aug13)
    • Crosspoly Techteam Weekly Report(Aug 1-Aug6)
    • Crosspoly Techteam Weekly Report (Jul 24 -Jul 30)
    • Crosspoly Techteam Weekly Report(Jul 19-Jul 23)
  • AMA Review
    • [AUG 3 AMA] The Details About Crosspoly Trading Contest
    • [July,28 AMA]The Telescope of DeFi,Crosspoly is now online
  • Partners
  • Crosspoly user guide
    • How to start crosspoly
  • Contact us
    • Contact Us
    • Gallery
    • Video Stream
    • Team Information
  • Github
  • Twitter
  • Medium
  • Discord
Powered by GitBook
On this page
  • 【Technical Progress】
  • Completed
  • Work in progress:

Was this helpful?

  1. Tech Weekly Report

Crosspoly Techteam Weekly Report(Aug 1-Aug6)

Crosspoly Techteam Weekly Report(Aug 1-Aug6)

PreviousCrosspoly Techteam Weekly Report(Aug 7-Aug13)NextCrosspoly Techteam Weekly Report (Jul 24 -Jul 30)

Last updated 3 years ago

Was this helpful?

【Technical Progress】

Completed

  1. Updated the Smart Contract integrated development environment

# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

#include <cassert>
#include "leveldb/db.h"

leveldb::DB* db;
leveldb::Options options;
options.create_if_missing = true;
leveldb::Status status = leveldb::DB::Open(options, "/tmp/testdb", &db);
assert(status.ok());
...
  • Data is stored sorted by key.

  • Callers can provide a custom comparison function to override the sort order.

  • The basic operations are Put(key,value), Get(key), Delete(key).

  • Users can create a transient snapshot to get a consistent view of data.

Work in progress:

  1. Test in integration in cross-chain communication as well as cross-chain transactions.

  2. To add core stats including TVL on the TRON network and stablecoin transactions

  3. To optimize services like resource management, information inquiry and data analysis

  4. Test in Metauniverse Aggegator operation

is online and bundled with the source code.

2. LevelDB library documentation