Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haderech/vert
Execution Environments Emulator
https://github.com/haderech/vert
Last synced: about 1 month ago
JSON representation
Execution Environments Emulator
- Host: GitHub
- URL: https://github.com/haderech/vert
- Owner: haderech
- License: mit
- Archived: true
- Created: 2021-07-15T13:58:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T16:52:53.000Z (over 2 years ago)
- Last Synced: 2024-10-14T01:31:19.888Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 221 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-eosio - haderech/vert - JavaScript EOS-VM emulation RunTime for WASM-based blockchain contracts. Run and test smart contracts. (Developers / Libraries and Frameworks)
README
# VeRT
**VM emulation RunTime for WASM-based blockchain contracts**
VeRT is a blockchain virtual machine emulator for WASM-based contracts like EOSIO. (CosmWasm and Substrate will be supported.)
It uses the built-in WebAssembly object in JavaScript, so can be executed on any modern browsers or runtime environments without additional dependencies.
It doesn't support the full specification of each blockchain state-machine, but can be used to run and test smart contracts before deployment.
The focus of VeRT is on the better compatibility than the performance, so it can be integrated with development pipelines.- Run and test smart contracts
- Minimum dependencies (No native wrapper, docker or remote connection)
- Volatile key-value store with state rollback## Requirement
- WebAssembly binary with the exported memory ([blanc](https://github.com/haderech/blanc) v0.9.2 or higher)
- JavaScript runtime with WebAssembly BigInt support (nodejs v16 or higher)## Installation
```shell
npm install vert
```## Test
- nodejs v16 or higher
```shell
npm run test
```- nodejs v14
```shell
node --experimental-wasm-bigint node_modules/mocha/bin/_mocha src/**/*.spec.ts -r ts-node/register
```## License
[MIT](./LICENSE)
[@greymass-eosio](./src/eos/@greymass-eosio/LICENSE)