Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,8 @@
"hedera/tutorials/smart-contracts/hts-x-evm-part-1-how-to-mint-nfts",
"hedera/tutorials/smart-contracts/hts-x-evm-part-2-kyc-and-update",
"hedera/tutorials/smart-contracts/hts-x-evm-part-3-how-to-pause-freeze-wipe-and-delete-nfts",
"hedera/tutorials/smart-contracts/hss-x-evm-part-1-schedule-smart-contract-calls",
"hedera/tutorials/smart-contracts/hss-x-evm-part-2-dynamic-rebalancing",
"hedera/tutorials/smart-contracts/how-to-verify-a-smart-contract-on-hashscan",
"hedera/tutorials/smart-contracts/send-and-receive-hbar-using-solidity-smart-contracts",
"hedera/tutorials/smart-contracts/deploy-a-subgraph-using-the-graph-and-json-rpc",
Expand Down
94 changes: 76 additions & 18 deletions hedera/tutorials/smart-contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,81 @@ title: Smart Contracts
sidebarTitle: Overview
---


<Columns cols={2}>
<Card title="Configuring Hardhat with Hedera Localnet/Testnet: A Step-by-Step Guide" href="/hedera/tutorials/smart-contracts/configuring-hardhat-with-hiero-local-node-a-step-by-step-guide" />
<Card title="How to Mint & Burn an ERC-721 Token Using Hardhat and Ethers (Part 1)" href="/hedera/tutorials/smart-contracts/how-to-mint-and-burn-an-erc-721-token-using-hardhat-and-ethers-part-1" />
<Card title="How to Set Access Control, a Token URI, Pause, and Transfer an ERC-721 Token Using Hardhat (Part 2)" href="/hedera/tutorials/smart-contracts/how-to-set-access-control-a-token-uri-pause-and-transfer-an-erc-721-token-using-hardhat-part-2" />
<Card title="How to Upgrade an ERC-721 Token with OpenZeppelin UUPS Proxies and Hardhat (Part 3)" href="/hedera/tutorials/smart-contracts/how-to-upgrade-an-erc-721-token-with-openzeppelin-uups-proxies-and-hardhat-part-3" />
<Card title="HTS x EVM - How to Mint NFTs (Part 1)" href="/hedera/tutorials/smart-contracts/hts-x-evm-part-1-how-to-mint-nfts" />
<Card title="HTS x EVM - KYC & Update (Part 2)" href="/hedera/tutorials/smart-contracts/hts-x-evm-part-2-kyc-and-update" />
<Card title="HTS x EVM - How to Pause, Freeze, Wipe, and Delete NFTs (Part 3)" href="/hedera/tutorials/smart-contracts/hts-x-evm-part-3-how-to-pause-freeze-wipe-and-delete-nfts" />
<Card title="Verify a Smart Contract on HashScan" href="/hedera/tutorials/smart-contracts/how-to-verify-a-smart-contract-on-hashscan" />
<Card title="Send and Receive HBAR Using Solidity Smart Contracts" href="/hedera/tutorials/smart-contracts/send-and-receive-hbar-using-solidity-smart-contracts" />
<Card title="Deploy a Subgraph Using The Graph and Hedera JSON-RPC Relay" href="/hedera/tutorials/smart-contracts/deploy-a-subgraph-using-the-graph-and-json-rpc" />
<Card title="Deploy Smart Contracts on Hedera Using Truffle" href="/hedera/tutorials/smart-contracts/deploy-smart-contracts-on-hedera-using-truffle" />
<Card title="Foundry on Hedera" href="/hedera/tutorials/smart-contracts/foundry" />
<Card title="Configuring Foundry with Hedera Localnet/Testnet: A Step-by-Step Guide" href="/hedera/tutorials/smart-contracts/foundry/configuring-foundry-with-hedera-localnet-testnet-a-step-by-step-guide" />
<Card title="How to Mint & Burn an ERC-721 Token using Foundry(Part 1)" href="/hedera/tutorials/smart-contracts/foundry/how-to-mint-and-burn-an-erc-721-token-using-foundry-part-1" />
<Card title="How to Write Tests in Solidity(Part 2)" href="/hedera/tutorials/smart-contracts/foundry/how-to-write-tests-in-solidity-part-2" />
<Card title="How to Fork the Hedera Network for Local Testing" href="/hedera/tutorials/smart-contracts/foundry/how-to-fork-the-hedera-network-for-local-testing" />
<Card title="How to Connect MetaMask to Hedera" href="/hedera/tutorials/smart-contracts/how-to-connect-metamask-to-hedera" />
<Card
title="Configuring Hardhat with Hedera Localnet/Testnet: A Step-by-Step Guide"
href="/hedera/tutorials/smart-contracts/configuring-hardhat-with-hiero-local-node-a-step-by-step-guide"
/>
<Card
title="How to Mint & Burn an ERC-721 Token Using Hardhat and Ethers (Part 1)"
href="/hedera/tutorials/smart-contracts/how-to-mint-and-burn-an-erc-721-token-using-hardhat-and-ethers-part-1"
/>
<Card
title="How to Set Access Control, a Token URI, Pause, and Transfer an ERC-721 Token Using Hardhat (Part 2)"
href="/hedera/tutorials/smart-contracts/how-to-set-access-control-a-token-uri-pause-and-transfer-an-erc-721-token-using-hardhat-part-2"
/>
<Card
title="How to Upgrade an ERC-721 Token with OpenZeppelin UUPS Proxies and Hardhat (Part 3)"
href="/hedera/tutorials/smart-contracts/how-to-upgrade-an-erc-721-token-with-openzeppelin-uups-proxies-and-hardhat-part-3"
/>
<Card
title="HTS x EVM - How to Mint NFTs (Part 1)"
href="/hedera/tutorials/smart-contracts/hts-x-evm-part-1-how-to-mint-nfts"
/>
<Card
title="HTS x EVM - KYC & Update (Part 2)"
href="/hedera/tutorials/smart-contracts/hts-x-evm-part-2-kyc-and-update"
/>
<Card
title="HTS x EVM - How to Pause, Freeze, Wipe, and Delete NFTs (Part 3)"
href="/hedera/tutorials/smart-contracts/hts-x-evm-part-3-how-to-pause-freeze-wipe-and-delete-nfts"
/>
<Card
title="HSS x EVM - Schedule Smart Contract Calls (Part 1)"
href="/hedera/tutorials/smart-contracts/hss-x-evm-part-1-schedule-smart-contract-calls"
/>
<Card
title="HSS x EVM - Dynamic Rebalancing Through Scheduled Execution (Part 2)"
href="/hedera/tutorials/smart-contracts/hss-x-evm-part-2-dynamic-rebalancing"
/>
<Card
title="Verify a Smart Contract on HashScan"
href="/hedera/tutorials/smart-contracts/how-to-verify-a-smart-contract-on-hashscan"
/>
<Card
title="Send and Receive HBAR Using Solidity Smart Contracts"
href="/hedera/tutorials/smart-contracts/send-and-receive-hbar-using-solidity-smart-contracts"
/>
<Card
title="Deploy a Subgraph Using The Graph and Hedera JSON-RPC Relay"
href="/hedera/tutorials/smart-contracts/deploy-a-subgraph-using-the-graph-and-json-rpc"
/>
<Card
title="Deploy Smart Contracts on Hedera Using Truffle"
href="/hedera/tutorials/smart-contracts/deploy-smart-contracts-on-hedera-using-truffle"
/>
<Card
title="Foundry on Hedera"
href="/hedera/tutorials/smart-contracts/foundry"
/>
<Card
title="Configuring Foundry with Hedera Localnet/Testnet: A Step-by-Step Guide"
href="/hedera/tutorials/smart-contracts/foundry/configuring-foundry-with-hedera-localnet-testnet-a-step-by-step-guide"
/>
<Card
title="How to Mint & Burn an ERC-721 Token using Foundry(Part 1)"
href="/hedera/tutorials/smart-contracts/foundry/how-to-mint-and-burn-an-erc-721-token-using-foundry-part-1"
/>
<Card
title="How to Write Tests in Solidity(Part 2)"
href="/hedera/tutorials/smart-contracts/foundry/how-to-write-tests-in-solidity-part-2"
/>
<Card
title="How to Fork the Hedera Network for Local Testing"
href="/hedera/tutorials/smart-contracts/foundry/how-to-fork-the-hedera-network-for-local-testing"
/>
<Card
title="How to Connect MetaMask to Hedera"
href="/hedera/tutorials/smart-contracts/how-to-connect-metamask-to-hedera"
/>
</Columns>
Loading
Loading