@0xfutures/protocol

1.0.2 • Public • Published

npm version Build Status

0xFutures protocol

0xFutures protocol implementation

Setup

> npm i -g truffle
> npm i

Test

npm run publish-abi
npm test

Deploy Contracts (local node)

This deployment command will recompile contracts, update ABI, run tests and deploy contracts to the blockchain using a local synchronised Ethereum node.

// eg. kovan
> npm run deploy-kovan

NOTE: the very first time the contracts are deployed to a new network the deployer should run 'npm run deploy-<network>-first-time' instead of 'npm run deploy-<network>' as this will install the permanent Registry contract that all future deployments share. It contains a mapping of all CFDs ever created as well as the address of the most recent CFDFactory contract.

Deploy Contracts (Infura)

Runs the same steps as the 'local node' deploy above but will deploy using a remote infura node.

See config.kovan.infura.json.template for an example configuration. Put your Infura apikey and HD wallet mnemonic phrase in the config file.

// eg. kovan with infura config
> npm run deploy-kovan-infura

See the note about 'first-time' deployment above. This applies to Infura deployment also.

Publish NPM

// ensure repo has latest abi
> npm run publish-abi
> git add abi && git commit -m "updated ABI" abi

// ensure tests are passing
> npm test

// publish NPM
> npm version patch     # bumps the version number and tags the commit
> npm publish           # see package.json scripts prepare - this will run the tests before publishing
> git push --tags

npm

The package is published with the contract ABI JSON files (abi/) and js libraries (lib/) to @0xfutures/protocol.

Package Sidebar

Install

npm i @0xfutures/protocol

Weekly Downloads

8

Version

1.0.2

License

GPL-3.0

Unpacked Size

885 kB

Total Files

61

Last publish

Collaborators

  • chatch
  • julien-regnier