BASE Quests with NFT reward
1 year, 7 months ago | 0 Repliesđź’°Network: Base Goerli Testnet
âś…Link: https://quests.base.org/
Faucet? Bridge aja: https://bridge.base.org/deposit
Source: https://twitter.com/BuildOnBase/status/1644008250235318272
âś…Link deploy: https://remix.ethereum.org/
✅Pastekan source code after create new file di page Remix, testBASE nya👇 ganti pake nama apa aja bebas
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.2 <0.9.0;
contract testBASE {
uint256 number;
function store(uint256 num) public {
number = num;
}
function retrieve() public view returns (uint256){
return number;
}
}
– After your smart contract has deployed, go to https://goerli.basescan.org/
– Enter and search your address
– You will find your smart contract on “Erc20 Token Txns” tab and copy it
– Back to quest, paste your smart contract
– Mint Early Base Builder NFT
– Confirm txn
– Done
- You must be logged in to reply to this topic.