Skip to content

A tool for automatically deploying Ethereum smart contracts to various networks.

License

Notifications You must be signed in to change notification settings

SKaaalper/evm-auto-deploy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EVM Auto Deploy

A tool for automatically deploying Ethereum smart contracts to various networks.

Table of Contents

Getting Started

To use EVM Auto Deploy, follow these steps:

  1. Clone the repository:
git clone https://github.com/SKaaalper/evm-auto-deploy.git && cd evm-auto-deploy
  1. Install the dependencies:
npm install
  1. Create a .env file in the root directory with the following variables:
  • PRIVATE_KEY: Your Ethereum private key
nano .env
  • Format:
PRIVATE_KEY=1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
  1. Add your desired chain configuration to chains/testnet.json or chains/mainnet.json.
  • For Testnet use:
nano chains/testnet.json
  • For Mainnet use:
nano chains/mainnet.json
  • Format:
[
    {
        "name": "Nexus",
        "rpcUrl": "https://rpc.nexus.xyz/http",
        "chainId": "392",
        "symbol": "NEX",
        "explorer": "https://explorer.nexus.xyz"
    }
]
  1. Run the script:
npm start

Prerequisites

  • Node.js (version 14 or higher)
  • npm (version 6 or higher)
  • Ethereum private key
  • Ethereum RPC node URL

Installation

To install the dependencies, run the following command:

npm install

Usage

To use EVM Auto Deploy, simply run the script:

npm start

Follow the prompts to select the network, enter the token name, symbol, and supply, and deploy the contract.

License

EVM Auto Deploy is licensed under the MIT License. See the LICENSE file for more information.

About

A tool for automatically deploying Ethereum smart contracts to various networks.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%