Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 543 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 543 Bytes

Start Ganache

Simple tool for starting own Ethereum network simulator.

import { startGanache, privateKeys, Multicall } from 'start-ganache'
import { Wallet, constants } from 'ethers'
import { deployContract } from 'ethereum-waffle'


async function main() {
    const port = 8545
    
    const provider = await startGanache(port)

    const wallet = new Wallet(privateKeys[0], provider)
    await wallet.sendTransaction({ to: constants.AddressZero })
    const multicall = await deployContract(wallet, Multicall, [])
}
main()