0.0.38 • Published 3 years ago

@orbs-network/orbs-ethereum-contracts-v2 v0.0.38

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Version Licence

orbs-ethereum-contracts-v2

Orbs PoS V2 contracts and testkit

To use the test-kit

npm install @orbs-network/orbs-ethereum-contracts-v2

Known issues

  • many capabilities are still not exported. Please be patient and tell us about needed features
  • currently the Driver object does not shutdown correctly, sometimes calling process.exit() will be required, until we expose a shutdown method

setup ganache

Ganache must run in order for the testkit to function. By default the test-kit will assume Ganache is running locally with these default settings:

ganache-cli -p 7545 -i 5777 -a 100 -m  "vanish junk genuine web seminar cook absurd royal ability series taste method identify elevator liquid"
alternative options to running ganache:
  • Launch Ganache programatically:
import { ganache } from "@orbs-network/orbs-ethereum-contracts-v2";
...
await ganache.startGanache()
...
await ganache.stopGanache()
  • Access a remote Ethereum node/network:
    • ETHEREUM_MNEMONIC (default: vanish junk genuine web seminar cook absurd royal ability series taste method identify elevator liquid)
    • ETHEREUM_URL (default: http://localhost:7545)

Usage Example - javascript:

const BN = require('bn.js').BN;
const Driver = require('@orbs-network/orbs-ethereum-contracts-v2').Driver;

async function createVC() {
    const d = await Driver.new(); // deploys all contracts and returns a driver object

    const monthlyRate = new BN(1000);
    const firstPayment = monthlyRate.mul(new BN(2));

    const subscriber = await d.newSubscriber('defaultTier', monthlyRate);

    // buy subscription for a new VC
    const appOwner = d.newParticipant();

    await d.erc20.assign(appOwner.address, firstPayment); // mint fake ORBS

    await d.erc20.approve(subscriber.address, firstPayment, {
        from: appOwner.address
    });

    return subscriber.createVC(firstPayment, "main", {
        from: appOwner.address
    });
}


// just print the tx Hash and exit

createVC().then((r)=>{
    console.log('Success, txHash', r.transactionHash);
    process.exit(0);
}).catch((e)=>{
    console.error(e);
    process.exit(1);
});
0.0.38

3 years ago

0.0.37

3 years ago

0.0.34

4 years ago

0.0.35

4 years ago

0.0.36

4 years ago

0.0.33

4 years ago

0.0.32

4 years ago

0.0.31

4 years ago

0.0.30

4 years ago

0.0.29

4 years ago

0.0.28

4 years ago

0.0.27

4 years ago

0.0.26

4 years ago

0.0.25

4 years ago

0.0.24

4 years ago

0.0.22

4 years ago

0.0.23

4 years ago

0.0.21

4 years ago

0.0.20

4 years ago

0.0.19

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.15

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago