Deploy on Truffle
Last updated
Last updated
2 years agoUnfollowNot yet followed by anyone
There are a few technical requirements before we start. Please install the following: Requirements:
Windows, Linux or Mac OS X
Recommendations for Windows
If you're running Truffle on Windows, you may encounter some naming conflicts that could prevent Truffle from executing properly. Please see the section on resolving naming conflicts for solutions.
Once we have those installed, we only need one command to install Truffle:
To verify that Truffle is installed properly, type truffle version
on a terminal. If you see an error, make sure that your npm modules are added to your path.
The first step is to create a Truffle project. We'll use the *MegaCoin as an example, which creates a token that can be transferred between accounts:
Create a new directory for your Truffle project
Intialize your project:
Once this operation is completed, you'll now have a project structure with the following items:
contracts/: Directory for Solidity contracts
migrations/: Directory for scriptable deployment files
test/: Directory for test files for testing your application and contracts
truffle-config.js: Truffle configuration file
You can write your own smart contract or download the BRC20 token smart contract template.
To compile a Truffle project, change to the root of the directory where the project is located and then type the following into a terminal:
Go to truffle-config.js
Update the truffle-config with nc-network-crendentials.
Notice, it requires mnemonic to be passed in for Provider, this is the seed phrase for the account you'd like to deploy from. Create a new .secret file in root directory and enter your 12 word mnemonic seed phrase to get started. To get the seedwords from metamask wallet you can go to Metamask Settings, then from the menu choose Security and Privacy where you will see a button that says reveal seed words.
Run this command in root of the project directory:
Contract will be deployed on Brise Chain Chapel Testnet, it look like this:
Remember your address, transaction_hash and other details provided would differ, Above is just to provide an idea of structure.
Congratulations! You have successfully deployed BRC20 Smart Contract. Now you can interact with the Smart Contract.
You can check the deployment status here: or https://testnet-explorer.brisescan.com/