# 完成Base Builder任务获得纪念 NFT

By [JoeZhang](https://paragraph.com/@joe88) · 2023-04-06

---

**Base Builder Quest，Base 上的第一个链上挑战，现在上线！在 Base 上部署智能合约，即可在 Base 测试网上获得不可转让的纪念 NFT，该 NFT 由**[**Andre Oshea**](https://twitter.com/andreoshea?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor)**设计，他是一位为那些建设未来的人创作艺术的数字艺术家。**

**完成任务，成为早期建设者，并获得纪念NFT**。

**过渡到Base主网后，将有资格铸造第二个纪念NFT。**

1.  首先去Goerli的水龙头领水
    
    [https://goerlifaucet.com/](https://goerlifaucet.com/)
    
2.  通过Chainlist添加Base Goerli Testnet
    
    [https://chainlist.org/?search=Base+Goerli&testnets=true](https://chainlist.org/?search=Base+Goerli&testnets=true)
    
3.  通过Base官方桥跨到Base Goerli Testnet
    
    [https://bridge.base.org/deposit](https://bridge.base.org/deposit)
    
4.  进入Base的任务页面点击Start Quest开始任务
    
    [https://quests.base.org/quest](https://quests.base.org/quest)
    
5.  点击continue
    
6.  打开以太坊智能合约编辑器
    
    [http://remix.ethereum.org/](http://remix.ethereum.org/)
    
7.  右键contacts文件夹并点击new file
    

![](https://storage.googleapis.com/papyrus_images/44de5594b649622143d6731b32d1b5a7662863d5e1ff1fc2551c33b1acc44de1.png)

1.  随意创建一个.sol文件并将这段代码复制到文件中
    
        // SPDX-License-Identifier: GPL-3.0
        
        pragma solidity >=0.7.0 <0.9.0;
        contract HelloWeb3{
            string public _string = "Hello Web3!";
        }
        
    

![](https://storage.googleapis.com/papyrus_images/c06aa3edadc5e11b70288f88cb1eb17dd57d854233b391c07ad9274e269213a5.png)

选择右边导航的Solidity compiler并点击compile，等待几秒看到绿勾后表示编译完成

![](https://storage.googleapis.com/papyrus_images/72aef9c8a602638ff1fbd69f8141468204a047b60c0e8b1532764c497c88a535.png)

按照顺序连接钱包地址并部署合约（注意⚠️，小狐狸此时一定要切换到Base Goerli测试网）

![](https://storage.googleapis.com/papyrus_images/8ed60fe790bb448064fb2874294f357a5ff3a233b3567dab72b709decf24cb5d.png)

等待几秒钟后合约部署完成，点击下方的copy按钮复制合约地址

![](https://storage.googleapis.com/papyrus_images/f7a788d34d7c75716bd7912f89211d9eb00399f3cc066d4a6c01d5dea3f095d2.png)

回到任务页面填写合约地址并提交验证

![](https://storage.googleapis.com/papyrus_images/b2e27f6638163b79fc1bcdd8e58f6cd6bab1f52d4bb40da63b6ba14b6618febb.png)

最后一步mint NFT

![](https://storage.googleapis.com/papyrus_images/248b9d143b62ca336bcbecbb0db6de7b3c48ad2d9e9b92342544e15c190ed878.png)

觉得有用的朋友可以给我的推特点个关注，谢谢🙏

[https://twitter.com/joeminly](https://twitter.com/joeminly)

---

*Originally published on [JoeZhang](https://paragraph.com/@joe88/base-builder-nft)*
