
Deploy hello_world with Foundry on TAIKO
Install Foundry on Your Computer:First, you need to get Foundry, a toolkit for smart contract development. To do this, open the command line on your computer and enter these two commands:curl -L https://foundry.paradigm.xyz | bash - This command downloads the Foundry installation script.foundryup - This command runs the script you just downloaded, which installs Foundry.Set Up a New Foundry Project:Now, create a new directory for your smart contract project and move into it by typing:forge in...

Deploy hello_world with Foundry on TAIKO
Install Foundry on Your Computer:First, you need to get Foundry, a toolkit for smart contract development. To do this, open the command line on your computer and enter these two commands:curl -L https://foundry.paradigm.xyz | bash - This command downloads the Foundry installation script.foundryup - This command runs the script you just downloaded, which installs Foundry.Set Up a New Foundry Project:Now, create a new directory for your smart contract project and move into it by typing:forge in...

5 simple ERC20 & ERC721 Smart Contract
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; import "remix_tests.sol"; // this import is automatically injected by Remix. import "hardhat/console.sol"; import "../contracts/3_Ballot.sol"; contract BallotTest { bytes32[] proposalNames; Ballot ballotToTest; function beforeAll () public { proposalNames.push(bytes32("candidate1")); ballotToTest = new Ballot(proposalNames); } function checkWinningProposal () public { console.log("Running checkWinningProposal"); ballotTo...

5 simple ERC20 & ERC721 Smart Contract
// SPDX-License-Identifier: GPL-3.0 pragma solidity >=0.7.0 <0.9.0; import "remix_tests.sol"; // this import is automatically injected by Remix. import "hardhat/console.sol"; import "../contracts/3_Ballot.sol"; contract BallotTest { bytes32[] proposalNames; Ballot ballotToTest; function beforeAll () public { proposalNames.push(bytes32("candidate1")); ballotToTest = new Ballot(proposalNames); } function checkWinningProposal () public { console.log("Running checkWinningProposal"); ballotTo...

آموزش گرفتن خروجی با اکسل و اعمال فیلترها
ابتدا مطابق شکل زیر با این لینک وارد وب سایت دیده بان بورس شوید. پس از وارد شدن به وب سایت بر روی قسمت 1 کلیک نمایید. که در ادامه درباره آن توضیح می دهم.در این بخش شما می توانید نماد مورد نظر خود را جستجو نمایید تا در سریع ترین زمان نماد مورد نظر برای شما نمایش داده شود.در قسمتی که در تصویر زیر نشان داده شده می توان در وب سایت دیده بان بازار بورس ثبت نام کنید و یا نوع نمایش نمادها را مشخص کرد. این گزینه برای سرمایه گذاری دقیق تر در بازار بورس خیلی مهم است. مثلا می توانید مشخص کنید فقط نمادهای...

آموزش گرفتن خروجی با اکسل و اعمال فیلترها
ابتدا مطابق شکل زیر با این لینک وارد وب سایت دیده بان بورس شوید. پس از وارد شدن به وب سایت بر روی قسمت 1 کلیک نمایید. که در ادامه درباره آن توضیح می دهم.در این بخش شما می توانید نماد مورد نظر خود را جستجو نمایید تا در سریع ترین زمان نماد مورد نظر برای شما نمایش داده شود.در قسمتی که در تصویر زیر نشان داده شده می توان در وب سایت دیده بان بازار بورس ثبت نام کنید و یا نوع نمایش نمادها را مشخص کرد. این گزینه برای سرمایه گذاری دقیق تر در بازار بورس خیلی مهم است. مثلا می توانید مشخص کنید فقط نمادهای...