0.0.38 • Published 5 years ago
@orbs-network/orbs-ethereum-contracts-v2 v0.0.38
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
5 years ago
0.0.37
5 years ago
0.0.34
5 years ago
0.0.35
5 years ago
0.0.36
5 years ago
0.0.33
5 years ago
0.0.32
5 years ago
0.0.31
5 years ago
0.0.30
5 years ago
0.0.29
5 years ago
0.0.28
5 years ago
0.0.27
5 years ago
0.0.26
5 years ago
0.0.25
5 years ago
0.0.24
5 years ago
0.0.22
5 years ago
0.0.23
5 years ago
0.0.21
5 years ago
0.0.20
5 years ago
0.0.19
5 years ago
0.0.18
5 years ago
0.0.17
5 years ago
0.0.15
5 years ago
0.0.14
5 years ago
0.0.13
5 years ago
0.0.12
5 years ago
0.0.11
5 years ago
0.0.9
5 years ago
0.0.8
5 years ago
0.0.7
5 years ago
0.0.6
5 years ago
0.0.5
5 years ago
0.0.4
5 years ago
0.0.3
5 years ago
0.0.2
5 years ago
0.0.1
5 years ago