# Crosspoly Techteam Weekly Report(Aug 1-Aug6)

![](https://miro.medium.com/max/1400/1*rNU1FIiVZgNojAxeiN3ZyA.jpeg)

## 【Technical Progress】 <a href="#dc92" id="dc92"></a>

## Completed <a href="#id-60e1" id="id-60e1"></a>

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
```

![](/files/-MgQa6EyNvGLd67D6vFO)

[**2. LevelDB library documentation**](https://github.com/google/leveldb/blob/master/doc/index.md) **is online and bundled with the source code.**

> 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: <a href="#id-7c08" id="id-7c08"></a>

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

![](/files/-MgEENffpLF2PL6lGD_7)

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://crosspoly.gitbook.io/crosspoly/crosspoly-techteam-weekly-report/crosspoly-techteam-weekly-report-aug-1-aug6.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
