1.0.3 • Published 5 years ago

eosio-operator v1.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

eosio-operator

This package installs an executable for managing your local EOSIO testnet from Docker, as well as for compiling EOSIO smart contracts. It can be installed globally for ease of access to the executable, or installed inside a project as a dependency to access utility functions for creating seed data, or running the executable from your package.json scripts section.

Installing

Globally

Install globally with npm install -g eosio-operator. Then simply run eosio-operator anywhere.

Inside a project

Install as a dependency of your project with npm install eosio-operator. Then, run eosio-operator from your package.json scripts, like this:

"scripts": {
  "testnet": "eosio-operator testnet"
},

Usage

Run eosio-operator --help to get info on the specific commands and options.

In the current version, this tool uses EOSIO version 1.8.0 and eosio.cdt version 1.6.1. Block.one doesn't provide the packages in a package registry that allows for simple version selection yet, so for using other versions, a new release of eosio-operator will be necessary. Please open an issue in this repository if you require such update.

Testnet

Run eosio-operator testnet to start a local single-node testnet and load the eosio.bios and eosio.token contracts, and create the EOS token with 1 billion supply. The process will start printing the nodeos output. When you terminate it, it will stop the Docker container and clean up the blockchain files.

Managing testnet programatically

You can also use the DockerTestnet class from your code by importing this package, giving you more control over the management of your testnet.

const Operator = require('eosio-operator');
const DockerTestnet = Operator.DockerTestnet;

async function testnetExample() {
  const testnet = new DockerTestnet({
    printOutput: false,
    extraParams: '--verbose-http-errors'
  })
  await testnet.setup() // This makes sure the Docker image is ready
  testnet.loadExitHandler() // Kill the testnet when killing the current process
  await testnet.start()
  // ...
  await testnet.stop()
}

Loading seeds

You can run eosio-operator testnet -c "node loadSeeds.js" for example, which will run the specified command (node loadSeeds.js) right after the testnet becomes operational and ready to receive transactions. This allows you to, for example, use TypeScript for loading the seeds (ts-node loadSeeds.ts), or run anything else you want.

Additionally, the Operator class provides various useful functions for creating accounts, loading contracts, giving eosio.code permissions, and more. You can use these for loading seed data into your testnet, or running automated tests against your contracts on the blockchain. Documentation pending, please open an issue in this repository if you need information about these functions.

Compiling contracts

Run eosio-operator compile <inputFile> <outputFile> to compile smart contracts using eosio.cdt (even in Windows). It also supports a --contract <name> option to specify the contract name to be used for generating the ABI.

Compiling contracts programatically

The Operator class provides a static function for compiling contracts from your code.

const Operator = require('eosio-operator');

async function compileExample() {
  await Operator.compile({
    input: './inputFile.cpp',
    output: './outputFile.wasm',
    contract: 'mycontract'
  })
}

Contributing

  • Please report any bugs you find.
  • Pull requests welcome. Maybe open an issue first to discuss it before you work on new features.
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.9.2

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago

0.8.2

5 years ago

0.8.1

5 years ago

0.8.0

5 years ago

0.7.0

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.6

5 years ago

0.5.5

5 years ago

0.5.4

5 years ago

0.5.3

5 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago