Build the future of DeFi Gaming
bepro-js is available as npm package.
// with npm
$ npm i bepro-js
Before try to install, make sure your working directory has Python 2
and the recommended NVM
version setted on. To do, so:
- Setting of Python 2:
// Install it via bash terminal globally
$ sudo apt install python2
// Check the installed version.
// Must shown Python 2.7.18rc1 on terminal to the install be OK
$ python2 --version
// Verify Python 2.7 path
$ ls /usr/bin/python*
// Set Python 2 as alternative 1
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
// Confirm Python 2 as alternative priority 1
$ sudo update-alternatives --config python
// Confirm the procedure.
// Must shown Python 2.7.18rc1 on terminal to the install be OK
$ python --version
// On the working directory, run the cmd below to set Python locally
$ npm config set python python
- Setting of Node:
// Install NVM recommended version for bepro-js
$ nvm install 14.17.0
// Set it on the working directory
$ nvm alias default v14.17.0
// Use the settled as default
$ nvm use default
Now, your work directory is able to install and run bepro-js.
- Docker CE - 19.03.3+
- Docker Compose - 1.19.0+
sudo curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh
Notice:If you already have Docker installed, this script can cause trouble. If you installed the current Docker package using this script and are using it again to update Docker. Or use official installation instructions: Mac, Windows, Ubuntu, Other.
For linux:
sudo curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
For Mac or Windows take a look on: official guides.
You can use docker-compose directly, or the nifty make
that comes bundled.
make build
make up
make watch
make test
make down
docker-compose up
https://bepronetwork.github.io/bepro-js/
/* Note : WEB3_LINK should be get from Infura/Quicknode or any other Web3 Provider - ETH, BSC, Moonbeam and others are supported */
import moment from 'moment';
import {
Application, DexStorage, ERC20Contract, StakingContract,
ERC20TokenLock, ERC721Collectibles, ERC721Standard
} from 'bepro-js';
/* 1.1 - Instantiate the App for Metamask functionality (MAINNET) */
let app = new Application({ opt : { web3Connection : 'WEB3_LINK' } });
/* 1.2 - Instantiate StakingContract Object or any other in a similar way (Staking, ERC20 etc..) */
// - MAINNET
let staking = new StakingContract({ contractAddress : null, /* Contract Address (optional) */
opt : { web3Connection : 'WEB3_LINK' } });
// - TEST net e.g. Rinkeby
let stakingTest = new StakingContract({ test : true, contractAddress : /* Contract Address (optional) */ });
/* 2 - Connect the App/Contract to the Metamask Web3 Injected wallet*/
await app.login();
await staking.login();
/* or instantiate with the provided web3Connection, for tests it was already done at object creation */
await app.start();
await staking.start();
/* 4 - Assert all object data */
await staking.__assert();
await stakingTest.__assert();
/* or deploy the contract*/
await staking.deploy();
await stakingTest.deploy();
/* 5 - Access other Methods */
await staking.availableTokens();
await stakingTest.availableTokens();
Contributions are welcomed but we ask to red existing code guidelines, specially the code format. Please review Contributor guidelines
The usage of ETH in all methods or params means using the native currency of that blockchain, example BSC in Binance Chain would still be nominated as ETH