Quick Start
Installing
npm i -g etherlimeRunning embedded ganache-cli
etherlime ganacheDeploying with etherlime
Initialize etherlime
etherlime initDeployer Example
const etherlime = require('etherlime-lib');
// Path to your etherlime compiled contract json file
const TestContract = require('../build/TestContract.json');
const deploy = async (network, secret) => {
const deployer = new etherlime.EtherlimeGanacheDeployer();
// Add params separated with ,
const result = await deployer.deploy(TestContract, {});
}
module.exports = { deploy }Verifying Smart Contract Example
Deploying

History of your deploys
Last updated
Was this helpful?