Truffle - Develop | Test | Compile and Deploy Smart contracts

preview_player
Показать описание
In this video I've explained how to create a project using truffle, how to use the pre built truffle boxes to save time and get things done faster, how to compile a solidity smart contract and generate ABI files, how to deploy your smart contracts to your local blockchain ( ganache ) and how to interact with truffle console.
Рекомендации по теме
Комментарии
Автор

Thank you brother, great video, keep them coming🔥

johnkinabo
Автор

I've been following the for dummies book. I was having a difficult time understanding how to edit the truffle-config.js. Thank you.

johnathanoverton
Автор

Great video Tamim.
Really useful.

By the way, what tool are you using to make those notes on the screen?

priyankgupta
Автор

Just to be sure. truffle init and truffle unbox metacoin were two independent processes and could have been done without the other. The real matter in this tutorial was using the unbox command a deploying the contracts.

Thank You.

I had my own contract file and I had to add it to the migrations file by doing this before running migrate:

const ConvertLib =
const MetaCoin =
const voteContract =

module.exports = function(deployer) {
deployer.deploy(ConvertLib);
deployer.link(ConvertLib, MetaCoin, voteContract);
deployer.deploy(MetaCoin);

};

ibtehaj
Автор

Its a very nice video✌ but sir could you make a video on how to connect it to infura as well.

Madiha
Автор

bro i have issue in truffle test and get using " network development" in terminal for passed

muhammadfirdauskurniawan
Автор

What about testing with custom error messages in javascript? For example in sol contract I can define error ZeroAddress(); then in my code do if(msg.sender==0) revert ZeroAddress(); How do I test against this in javascript? No one seems to be talking about this :|

adriandeveraaa