# scroll项目NFT铸造教程

By [NANA-soweb3](https://paragraph.com/@ohweb3) · 2023-11-01

---

scroll项目一向重视builder,此次项目是为庆祝主网上线而隆重推出的通过部署合约而奖励的NFT，有没有赋能呢？官方已经告诉你没有空投了啊。要出于兴趣，出于爱来体验的。

**官推介绍**

[https://twitter.com/Scroll\_ZKP/status/1717527880539000849](https://twitter.com/Scroll_ZKP/status/1717527880539000849)

**官网介绍**

[https://scroll.io/blog/scroll-origins-nft](https://scroll.io/blog/scroll-origins-nft)

**官方跨链桥(贵，约7-8U）**

[https://scroll.io/bridge](https://scroll.io/bridge)

**rhino跨链桥免费到11月14日（只收取约0.0004的gas费）**

[https://app.rhino.fi/bridge?token=USDT&chainOut=SCROLL](https://app.rhino.fi/bridge?token=USDT&chainOut=SCROLL)

**四种合约部署方式**

**一、使用thirdweb部署和合约（约0.003个ETH）**

[https://thirdweb.com/](https://thirdweb.com/)

**二、使用remix部署合约(约0.0009个ETH)**

[https://remix.ethereum.org/](https://remix.ethereum.org/)

**使用remix时要用到的代码**

// SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;

contract **soweb3** {

uint public storedData;

function pull(uint x) public {

storedData = x;

}

function push() public view returns (uint retVal) {

return storedData;

}

}

**注意：加黑的地方“soweb3”需要修改成自己部署的合约名称！**

如果对上述合约部署不太清楚请看这个教程

[https://mirror.xyz/nosana.eth/IIA6lNRJSFXK-ASykrWcMP9IJSgP0NVPtT6f5AszU5Q](https://mirror.xyz/nosana.eth/IIA6lNRJSFXK-ASykrWcMP9IJSgP0NVPtT6f5AszU5Q)

**三、一键部署合约（约0.0006个ETH）**

[https://minter.merkly.com/deploy/empty](https://minter.merkly.com/deploy/empty)

**四、猫头鹰网一键部署合约（约0.0006个ETH）**

[https://owlto.finance/deploy](https://owlto.finance/deploy)

**部署合约后连接scroll官网检查是否有权利铸造NFT**

[https://scroll.io/developer-nft/check-eligibility](https://scroll.io/developer-nft/check-eligibility)

**请关注本人推特**

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

---

*Originally published on [NANA-soweb3](https://paragraph.com/@ohweb3/scroll-nft)*
