@0xcert/ethereum-sandbox
TypeScript icon, indicating that this package has built-in type declarations

2.1.1 • Public • Published

Test server for local running testing of modules on the Ethereum blockchain.

You can use it as a standalone server.

import { Sandbox } from '@0xcert/ethereum-sandbox';

const sandbox = new Sandbox();
await sandbox.listen();

You can integrate it with Specron.

import { Spec } from '@specron/spec';
import { Protocol } from '@0xcert/ethereum-sandbox';

const spec = new Spec();

spec.before(async (stage) => {
  stage.set('protocol', await Protocol.deploy(stage.web3));
});

export default spec;

You can integrate it with Hayspec.

import { Spec } from '@hayspec/spec';
import { Sandbox } from '@0xcert/ethereum-sandbox';

interface Data {
  sandbox: Sandbox;
}

const spec = new Spec<Data>();

spec.before(async (stage) => {
  stage.set('sandbox', await Sandbox.listen());
  stage.set('protocol', stage.get('sandbox').protocol);
});

spec.after(async (stage) => {
  await stage.get('sandbox').close();
});

export default spec;

The 0xcert Framework is a free and open-source JavaScript library that provides tools for building powerful decentralized applications. Please refer to the official documentation for more details.

This module is one of the bricks of the 0xcert Framework. It's written with TypeScript and it's actively maintained. The source code is available on GitHub where you can also find our issue tracker.

Package Sidebar

Install

npm i @0xcert/ethereum-sandbox

Weekly Downloads

0

Version

2.1.1

License

MIT

Unpacked Size

176 kB

Total Files

42

Last publish

Collaborators

  • xpepermint
  • moman