Want to land your dream programming job in 3 - 6 months? ⭐ JSM Masterclass Experience - jsmastery.pro/masterclass Become a Software Engineer. Guaranteed.
Bro your content is literary better than university classes, practical, step by step and straight to the point and real world results. Thanks for providing so much of this top notch quality content.
strongly agree . After studying 4 years I realize that academy degree has zero value in real life and most of things are taught in cse are out dated now.
dude you're amazing! one tip - before you start building the app, you can provide the viewers with a list of components you will be using and relevant resources, so that they can try building it by themselves. then when they're stuck they can use your video to unblock :)
thank you for ur suggestion , i was thinking the same ... So can you do it for him in here , in the comment please sorry for my english i am learning ... thanks
Adrian your voice is naturally soothing 😂😂 and I am actually hooked to your videos, since the explanations are so clear, concise, and can be kept as notes. You are truly a gifted teacher.
That is some awesome stuff right there seriously!!! Loved every moment while watching your video and side by side developing it...Thank you so much for your selfless effort and keep up with the good work and such awesome projects in future too.....
Hello there. Just wanted to shout out a huge THANK YOU for all the content you've been posting lately. You're amazing and so are your tutorials. Additionally, I just wanted to point out as well that the create app from thirdweb u used in the video is not offering the vite option anymore, so for those who've noticed and have any issues regarding the creation of the app using vite the following command does the trick: npx thirdweb create --template vite-javascript-starter. Kind regards
i run into an error using your suggestionss. "Could not locate the repository for "emplate". Please check that the repository exists and try again" how to resolve this? The Template spelling is correct,i dont know why visual studio is saying its "emplate"😢Thanks
The tutorial you provide is very useful and easy to understand, I started learning from you since I was 11 years old and I can understand it well. Thank you very much
you're on the right path in life lil one!!! i'm a blockchain dev at 25 yrs old. I wish this stuff existed when I was 11. You can be jeff bezo before you even come 18. stay focus lil one and stay away from FAMILY & FRIENDS that don't have dreams like you! That can be your biggest downfall
Wooaaaww ! looked 4 about 10 minutes and that was so clear , well explained , precise , .... I just know nothing about your job but it's look like great. I'm going to look for the suit. THX 4 that.
Are we going to get the second version for this project as I believe a lot of the major functionalities are yet to be coded, for example the theme feature, logout feature and a lot more!!! But, loved the way you teach Adrian, you make project building so easy and interactive!!!!
Great work Adrian, I'm still going throught the tutorial, but it has been amazing so far (only half way) I can see why a lot of frontend knowledge is needed initially if you want to be a fullstack web3 dev as a lot the time spent in this tutorial from the looks is building the frontend and connecting it to the backend.
hii can you please help me out to run project locally getting too many issues can you please provide your code and you linkedIn profile it will really helpful please do consider
@@javascriptmastery yeah, but we haven't heard anything big about web3 except this twitter alternative, and that because of twitter itself. and crypto currencies showed to be not what they claimed to be
Awesome content. I'm using your videos to get up to date with web3 and upgrade my React. Thank you for the great straight to the point content (Although i would've loved if the client used Typescript with React )
Great job Adrian, a heads up on the build. There is a problem with chunksize which caused the build to fail. In the Vite.config file, I added { build: { chunkSizeWarningLimit: 1600} ) to resolve the issue.
The video is not understandable as most of the prerequisites are not mentioned, no clear instructions. Most of the things don't work even after following the steps.
That's bcoz in blockchain, there are major updates as well as deprications in technologies that's why u should also know how to code so u can change any new substitutes in place of old versions or techs
8/14/2024 I have decided to pursue a career in Blockchain. I see this video is from a year ago but I hope it still applies. Looking forward to the next three hours of learning and creating my first Web3 project
This is great dude. I might have missed it but how would you handle things like only paying out if the target is reached, so if the target is not reached by the deadline donars are refunded (minus gas fees I guess). Or handle something like a platform cut, ie I setup a campaign on your site and you get say 1%, then have when you create the goal amount some sort of info that says to get $$$ remember we take 1% so you should up $$$ to $$$$ to insure you get the full amount.
At 2:09:55, I faced this error "createCampaign accepts 6 arguments but provided 0" - something like that. I found a fix for this error. Follow the below steps: STEP 1) Navigate your way back to "context" folder in Project's "client" directory & open "index.jsx" file. STEP 2) In the "publishCampaign" function, replace your "try-catch" block with the below one: try { const data = await createCampaign({ args: [ address, form.title, form.description, form.target, new Date(form.deadline).getTime(), form.image ] }); console.log("contract call success", data) } catch (error) { console.log("contract call failure", error) } So as you'll can understand, it was a simple "args" to be added before providing those arguments and passing it like an object. Cheers!
Error: Could not resolve metadata for contract at 0x3eBEDD08D5c789aDCaB093DfbAAdbE99a8457cae at fetchContractMetadataFromAddress do you know how to solve this ? create campaign is not working
In the sidebar component, you forgot to add the "onClick={handleClick}" for it to work properly, and I noticed that the Icon component in the code is not returning any JSX. You need to add a return statement to return the JSX markup. Thanks for the tutorial!
Hi there!!! :) In the createCampaign function, I think the deadline should be "bigger" than block.timestamp. When you write your require, you are comparing with a variable (campaign.deadline) that it is not assigned yet (you make this a few lines later). At the moment of the require the value of the deadline is still 0 for that new campaign. Doing a functional analysis, the target doesnt have any sense if the owner of the campaign receives always the "ethers" on each donation transaction. If we suppose the target is not reached when the deadlines arrives, then every donator should recover what he had donated... and if the target is reached, the owner of the campaign should claim the amount collected (that should have been saved in the contract at this moment)... Idont you think this could be better?
Right, I also don't see any logic or explanation about how to return funds to donators' addresses in case of expired deadline. I hope we get an answer to that. Also, this "campaign details page" logic is flawed, the way the state is passed down to page is not good, if you open the same url in other window, it will fail because route "state" will be undefined. I suggest adding a function getCampaignById(_id) to smart contract.
hey Adrian, can we rebuild this project... as it is almost 1.5yrs old, things has changed a lot. can you come up with the new one i.e., Web3 Crowdunding Platform 2.0
@@cherishkansara7851 the gas fee deploying on sepolia or goerli testnet is too high for the smart contract even if it’s not real money. I had to use hardhat local network on my system.
Hello, the function daysLeft is not correct. Here is an update adding a condition that check if is less of 0 export const daysLeft = (deadline: string | number): string => { const now = new Date().getTime() const deadlineTime = new Date(deadline).getTime() const difference = deadlineTime - now if (difference
I am not able to send campaign details to contract deployed on thirdweb, so do we need to use API or it can only be done by contract address as done in video
BROOOO !!!! YOU ARE THE BESTT 🔥🔥❤️....Can we get more react app project videos ??? I have purchased ur FILMPIRE course and get addicted to ittt......want more videos like that. We are missing itt ❤️
Than you for your work, great video. Little note. I was a bit confused by the expression "on small devices ...." and the syntax of tailwindcss as "sm:....", it means NOT on small devices but from small devices (min-width: 640px and large).
wow just wow. Your tutorials have been amazing. I've learned so much from watching. Maybe you can do a SaaS tutorial next. Would be cool to learn how to make a Saas Product in typescript
Hi! Why didn't you show any testing using hardhat? As testing is a very important part of building a blockchain application so... Was expecting that too man! But great development video apart from that, literally!
Want to land your dream programming job in 3 - 6 months?
⭐ JSM Masterclass Experience - jsmastery.pro/masterclass
Become a Software Engineer. Guaranteed.
Can you please create one NFT marketplace video. I want to know how the process works. Please 🥺
Im getting this error: contract call failure Error: Function "createCampaign" requires 6 arguments, but 0 were provided.
Source hithub bro
Is this your own course, I’m very curious?
@@Smurfis yes
love the way everything started from scratch without any pre-build template
Glad to hear that! :)
I see your comments on almost every web3 realted videos on YT🙄🤗
OMGGG!!! DUDEEE NO WAY YOU ARE GIVING THESE CONTENTS FOR FREE! BRO YOU ARE THE BESTTTT
Yesss
Areee bhai sahi me...🤦
I am 😲 shocked.....
@@rachitsen Ha bro...Jai Shri Mahakaal
@@javascriptmastery please tell is it good and have full detailed for final year project of Computer science
Bro i was just saying that out loud came to check in and seen this
Bro your content is literary better than university classes, practical, step by step and straight to the point and real world results. Thanks for providing so much of this top notch quality content.
Thank you soo much! :)
strongly agree . After studying 4 years I realize that academy degree has zero value in real life and most of things are taught in cse are out dated now.
@@javascriptmasteryf
@@alifhasanshahOfficial true bro
💯
Seriously how this type of content is Free? Love your JSM. please upload more beginner-friendly blockchain projects.
LOVE YOU 3000.
Will do!
dude you're amazing! one tip - before you start building the app, you can provide the viewers with a list of components you will be using and relevant resources, so that they can try building it by themselves. then when they're stuck they can use your video to unblock :)
thank you for ur suggestion , i was thinking the same ...
So can you do it for him in here , in the comment please
sorry for my english i am learning ...
thanks
Adrian your voice is naturally soothing 😂😂 and I am actually hooked to your videos, since the explanations are so clear, concise, and can be kept as notes. You are truly a gifted teacher.
This is gem. This channel is literally the main reason I stay long on UA-cam. I'm hoping to take your premium courses soon
Did you complete the app?
Best practices for starters, and well explained topics, love the teaching styles and the contents!!. Well Done Adrian!! 💙
Glad you like them!
You REALLY MAKE my day i've been try to study do to something simular from a long time... Ur amazing. God bless you!
Best of the Best … just finished my Degree, finally a good time to dig in.. ❤
i just watched a dozen of your videos all your way through. bravo im hooked.
My favorite teacher, genius !
You're the best!
Your projects are always beginner friendly.You are Great
Thanks
As soon as I hear the "Hi there," I get pumped for another quality video.
I'm glad to hear that!:)
A brilliant tutorial Adrian. You sure know your stuff. Well done and keep up the great work.
You are nothing but the best. Please 🙏 keep uploading videos like this
Wow, man. Great job, as always. I wanna dive right into web3 and am so so grateful for your content!
You can do it!
From the project, can you actually donate to a campaign...does it have that functionality??
That is some awesome stuff right there seriously!!! Loved every moment while watching your video and side by side developing it...Thank you so much for your selfless effort and keep up with the good work and such awesome projects in future too.....
Lol nope
Hello there. Just wanted to shout out a huge THANK YOU for all the content you've been posting lately. You're amazing and so are your tutorials.
Additionally, I just wanted to point out as well that the create app from thirdweb u used in the video is not offering the vite option anymore, so for those who've noticed and have any issues regarding the creation of the app using vite the following command does the trick: npx thirdweb create --template vite-javascript-starter.
Kind regards
DUDE thank you!! was running into a lot of obstacles trying to use next
Thank you so much
i run into an error using your suggestionss. "Could not locate the repository for "emplate". Please check that the repository exists and try again" how to resolve this? The Template spelling is correct,i dont know why visual studio is saying its "emplate"😢Thanks
It is there for me but does not build all the packages and errors out
I made METVERSUS from your previous video and now I excited for doing this new project ❤.
Hope you enjoy it!
@@javascriptmastery Not only enjoyed but also learn many new things thanks for that.
The tutorial you provide is very useful and easy to understand, I started learning from you since I was 11 years old and I can understand it well. Thank you very much
Keep it up
now how old r u?
@@thechief4568 13 years old
you're on the right path in life lil one!!! i'm a blockchain dev at 25 yrs old. I wish this stuff existed when I was 11. You can be jeff bezo before you even come 18. stay focus lil one and stay away from FAMILY & FRIENDS that don't have dreams like you! That can be your biggest downfall
Wooaaaww ! looked 4 about 10 minutes and that was so clear , well explained , precise , .... I just know nothing about your job but it's look like great. I'm going to look for the suit. THX 4 that.
Are we going to get the second version for this project as I believe a lot of the major functionalities are yet to be coded, for example the theme feature, logout feature and a lot more!!!
But, loved the way you teach Adrian, you make project building so easy and interactive!!!!
Wow....been waiting for dis for a long time.God bless u endlessly.ur projects are topnotched 🤗🤗🤗🤗🤗🤗
My pleasure 😊
Great work Adrian, I'm still going throught the tutorial, but it has been amazing so far (only half way) I can see why a lot of frontend knowledge is needed initially if you want to be a fullstack web3 dev as a lot the time spent in this tutorial from the looks is building the frontend and connecting it to the backend.
hii can you please help me out to run project locally getting too many issues can you please provide your code and you linkedIn profile it will really helpful please do consider
@@shubhampatel_2704 xddddddddddddddddddddddddddddddddddddddddd wtf, stop begging
This kind of Tutorial for free? I wish I can do more than to say Thank you. This is indeed life changing. Thanks Adrian
Thanks as always Adrian for the smart contract one. Very detailed and presice video tutorial ever
Best channel for professional projects.
Loved ur explanation.❤️
Thank you so much 😀
it's good to keep an eye on this web3. but it will not become mainstream, neither replace centralized apps. and that's good
It will work alongside centralized apps
@@javascriptmastery yeah, but we haven't heard anything big about web3 except this twitter alternative, and that because of twitter itself. and crypto currencies showed to be not what they claimed to be
Awesome content. I'm using your videos to get up to date with web3 and upgrade my React. Thank you for the great straight to the point content (Although i would've loved if the client used Typescript with React )
When I have more money that what I need, I will come back here and donate you. You deserve billions of followers!
Great job Adrian, a heads up on the build. There is a problem with chunksize which caused the build to fail. In the Vite.config file, I added { build: {
chunkSizeWarningLimit: 1600} ) to resolve the issue.
WEB3 Is future. I works with company building the NFT marketplace on Near blockchain..
Awesome, congrats!
You are at it again. Love your work 👍
Thank you so much 😀
Best tutorial on internet till date ⚡🔥
Thank you!
NOTE: For (u)int256 numbers, you can just use (u)int without the number, it defaults to 256 bits
Keep these web 3 projects coming! I was looking to get started in web 3
Will do!
Masterful display of Javascript by JS Mastery
Thank you Sicario!
The video is not understandable as most of the prerequisites are not mentioned, no clear instructions. Most of the things don't work even after following the steps.
this channel looks cool but i hate this.
That's bcoz in blockchain, there are major updates as well as deprications in technologies that's why u should also know how to code so u can change any new substitutes in place of old versions or techs
A lot of things are deprecated now like the Mumbai network and all
True
This guy is truely a blessing
Omg ... another best project sir 👏👏
Thank you so much 😀
Im so happy right now ^_^ ... because this is totally free course
one of the best channels on youtube
Your courses are absolutely INSANEEE! Can we get a WEB 3.0 SUPPLY CHAIN DAPP for tracking the entire process?
Great idea!
8/14/2024 I have decided to pursue a career in Blockchain. I see this video is from a year ago but I hope it still applies. Looking forward to the next three hours of learning and creating my first Web3 project
Hey did you started or had completed it?
This is great dude. I might have missed it but how would you handle things like only paying out if the target is reached, so if the target is not reached by the deadline donars are refunded (minus gas fees I guess). Or handle something like a platform cut, ie I setup a campaign on your site and you get say 1%, then have when you create the goal amount some sort of info that says to get $$$ remember we take 1% so you should up $$$ to $$$$ to insure you get the full amount.
JSM is always lit and making it everytime!, Well Done bro! always supporting.
Appreciate it!
At 2:09:55, I faced this error "createCampaign accepts 6 arguments but provided 0" - something like that.
I found a fix for this error. Follow the below steps:
STEP 1) Navigate your way back to "context" folder in Project's "client" directory & open "index.jsx" file.
STEP 2) In the "publishCampaign" function, replace your "try-catch" block with the below one:
try {
const data = await createCampaign({
args: [
address,
form.title,
form.description,
form.target,
new Date(form.deadline).getTime(),
form.image
]
});
console.log("contract call success", data)
}
catch (error) {
console.log("contract call failure", error)
}
So as you'll can understand, it was a simple "args" to be added before providing those arguments and passing it like an object.
Cheers!
Error: Could not resolve metadata for contract at 0x3eBEDD08D5c789aDCaB093DfbAAdbE99a8457cae
at fetchContractMetadataFromAddress do you know how to solve this ? create campaign is not working
@@siddheshpandey6382 I fixed it by again deploying the Smart Contract to thirdweb and replacing the old address with the new one.
@@siddheshpandey6382 You're welcome 🤗
thanks bro needed that. :)
@@papa-fy3pv Wow, I am happy for you 🎉
I was waiting for this video
This will my project for college
Perfect
In the sidebar component, you forgot to add the "onClick={handleClick}" for it to work properly, and I noticed that the Icon component in the code is not returning any JSX. You need to add a return statement to return the JSX markup. Thanks for the tutorial!
can u please elaborate further as im very new to this and i noticed something was off with the sidebar but i thought it was something i did wrong
This worked. Thanks. I was wondering why my icons weren't showing up.
I just finished this project, thank you for all of your explanation😉
Have you faced any errors while making it? If so how did you solved it. Would be helpful if you reply . Thanks :)
Please let me know if your code is working
thank u mate💪 can you create a tutorial about how to control a dapp with database o somthing like database in the future ?
Cool idea!
i like to see that as well
Excelent VIdeo Teacher ! Congrats for has the best Courses in all UA-cam
Hi there!!! :)
In the createCampaign function, I think the deadline should be "bigger" than block.timestamp. When you write your require, you are comparing with a variable (campaign.deadline) that it is not assigned yet (you make this a few lines later). At the moment of the require the value of the deadline is still 0 for that new campaign.
Doing a functional analysis, the target doesnt have any sense if the owner of the campaign receives always the "ethers" on each donation transaction.
If we suppose the target is not reached when the deadlines arrives, then every donator should recover what he had donated... and if the target is reached, the owner of the campaign should claim the amount collected (that should have been saved in the contract at this moment)... Idont you think this could be better?
Right, I also don't see any logic or explanation about how to return funds to donators' addresses in case of expired deadline. I hope we get an answer to that. Also, this "campaign details page" logic is flawed, the way the state is passed down to page is not good, if you open the same url in other window, it will fail because route "state" will be undefined. I suggest adding a function getCampaignById(_id) to smart contract.
👆 questions can come in.
I did not find the part about returning funds to donors' addresses in case of an expired deadline. Can you explain this further?
When doing the create campaign function did you ever come across an error about receiving metadata from thirdweb?
@@KetanKandola I encountered the same error. Have you resolve it yet?
Rất may mắn được là một pioneer , cảm ơn đội ngũ PCT
hey Adrian, can we rebuild this project... as it is almost 1.5yrs old, things has changed a lot. can you come up with the new one i.e., Web3 Crowdunding Platform 2.0
Yap have you try it out
Have you tried it out
Have you tried it out
Now it works or not
Hey, Can you please share your GITHUB repo, for the latest updated code?
Thankyou so much for this project. I coded it completely with you and I learned a lot. Thankyou so much for this amazing project!!
it did not work for me
@@mandavasathvik6574 was ur os windows /?? i doubt it will not work for me too
useMetamask command is deprecated. what should be used instead of it?
This guy is a gift from God. Never could I imagine this
Teleqram me 👆⬆️
why is it so expensive now in 2024 to deploy and even interact with the smart contract
its completly free bro
@@cherishkansara7851 the test ETHs needed to deploy the contract is high with thirdweb. I had to use hardhat local network
@@cherishkansara7851 the gas fee deploying on sepolia or goerli testnet is too high for the smart contract even if it’s not real money. I had to use hardhat local network on my system.
@@cherishkansara7851 was about to say that
@@cherishkansara7851 was about to say that
I’ll do everything from here, and a little more, and then will try to reach this guy his scores. I promise.
Teleqram me 👆⬆️
Can I use Ganache instead of Goerli, I can't connect to Goerli the way you do in the video and I don't know what to do
same here, I can not add it to the extension if you have found out how to do it? then please let me know.
@@speed7717 It's been discontinued , use sepolia instead
Hello, the function daysLeft is not correct. Here is an update adding a condition that check if is less of 0
export const daysLeft = (deadline: string | number): string => {
const now = new Date().getTime()
const deadlineTime = new Date(deadline).getTime()
const difference = deadlineTime - now
if (difference
I am not able to send campaign details to contract deployed on thirdweb, so do we need to use API or it can only be done by contract address as done in video
I am facing the same issue
same here
Did you find solution for this ?
@@yogeshraut2071 have you set up a thirdweb client id? If not, you won't be able to access any of the thirdweb features
Same issue
Я уже год смотрю твои бесплатные связки, в принципе и без приватки можно обойтись, несколько связок в месяц мне хватает)))
Now Geroli requires 0.01ETH top-up, is Seplolia okay to test?
Did you use sepolia testnet
@@gsravya3039 giving error while uploading Smart contract to hardhat.
Saying Error uploading Metadata
Fetch is not defined
@@gsravya3039bro did you completed the entire project
@@gsravya3039 I used sepolia
Great!! Please make a part 2 of this where the refunding of amount will take place and is shown on the application.
contract interaction notification is not popped up after clicking on "submit new campaign"
now what should i do??
Same issue brother,did you get it resolved?
@@kalashjha7997 NO? is your error resolved?
Any solution for this error?
thx in advance, decide to pull an all-nighter to finish this one
Best of luck!
thank u so much sir you are the best teacher web dev and blockchain
Thank you!
How to solve the npm error for creating the solidity environment?
Bahut bura hua vmro😔
@@shashank8779 aisa mat bolo vro
@@shashank8779 I got solution...
@@disunique6107 Hey, Can you please share your GITHUB repo, for the latest updated code?
can see your efforts, hard work just completed this project! tysm
but the goerli test net is shut down so i am stuck right now any adive
Yea mee too, i try to use sepolia instead but it doesn’t work
Try sepoli
@yongayaa4067 it worked for me
You’re just simply amazing. Thanks for everything you do. God bless your household
Thank you!
Goerli faucet is not working any other solutions
Use sepolia instead of goerli
Another one ( in DJ Khaled's voice) ,my best teacher ,what would I have done in programming if I hadn't found your channel
Happy to help!
Anyone who completed whole project and resolved every issue??
Great content. But it remembers me how much I hated React, with the routers, navigate, ... Damn! Long life to NextJs
BROOOO !!!! YOU ARE THE BESTT 🔥🔥❤️....Can we get more react app project videos ??? I have purchased ur FILMPIRE course and get addicted to ittt......want more videos like that. We are missing itt ❤️
Coming soon!
Coming soon!
Excited , will do it after exams
Awesome!
Great video! Some key points were highlighted that I hadn't heard anyone else discuss. Thank you!
Now your talking, Thanks God, God bless you
So nice of you
I just finished I will send to the net later today, it was great project
your videos are special, you're special
Thank you!!
Adrian never disappoint us
Glad to hear that!
Than you for your work, great video. Little note. I was a bit confused by the expression "on small devices ...." and the syntax of tailwindcss as "sm:....", it means NOT on small devices but from small devices (min-width: 640px and large).
👆 questions can come in.
Bro you are a awesome man. and divine developer. keep going and make your audience wow full. 👍
Bro... I really appreciated your work bro. This amazing.. Hope God bless you broo..
Bro your content is literary best and love to get more web3 projects
I have ever seen teachers like you you are the best can you work with me plzzzz
I am thankful to you for this video and please also make other content videos on blockchain and web 3... thanks❣
wow just wow. Your tutorials have been amazing. I've learned so much from watching. Maybe you can do a SaaS tutorial next. Would be cool to learn how to make a Saas Product in typescript
Thank you! Will do!
I love thisss and I haven't even watched it yet
Thanks!
Wake up babe new Ethan Mayer video just dropper
Amazing content! Better than paid courses.
Hi! Why didn't you show any testing using hardhat? As testing is a very important part of building a blockchain application so... Was expecting that too man! But great development video apart from that, literally!
Damn , I just love you man , thanks for amazing content
Thank you! :)
The Goooooaaaatt !!!!!!!!! Da Goaaaat !!!!!!❤❤❤❤❤❤❤
So good and clear explanation✅! Thank you so much, sir, for all of your efforts 👍🤝
You are most welcome
Your presentations is very good sir .
What software you use to build the animation in video ?
I love it Adrian! Thank you
My pleasure!