# scroll项目NFT铸造教程 **Published by:** [NANA-soweb3](https://paragraph.com/@ohweb3/) **Published on:** 2023-11-01 **URL:** https://paragraph.com/@ohweb3/scroll-nft ## Content scroll项目一向重视builder,此次项目是为庆祝主网上线而隆重推出的通过部署合约而奖励的NFT,有没有赋能呢?官方已经告诉你没有空投了啊。要出于兴趣,出于爱来体验的。 官推介绍 https://twitter.com/Scroll_ZKP/status/1717527880539000849 官网介绍 https://scroll.io/blog/scroll-origins-nft 官方跨链桥(贵,约7-8U) https://scroll.io/bridge rhino跨链桥免费到11月14日(只收取约0.0004的gas费) https://app.rhino.fi/bridge?token=USDT&chainOut=SCROLL 四种合约部署方式 一、使用thirdweb部署和合约(约0.003个ETH) https://thirdweb.com/ 二、使用remix部署合约(约0.0009个ETH) 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 三、一键部署合约(约0.0006个ETH) https://minter.merkly.com/deploy/empty 四、猫头鹰网一键部署合约(约0.0006个ETH) https://owlto.finance/deploy 部署合约后连接scroll官网检查是否有权利铸造NFT https://scroll.io/developer-nft/check-eligibility 请关注本人推特 https://twitter.com/nana85666 ## Publication Information - [NANA-soweb3](https://paragraph.com/@ohweb3/): Publication homepage - [All Posts](https://paragraph.com/@ohweb3/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@ohweb3): Subscribe to updates - [Twitter](https://twitter.com/nana85666): Follow on Twitter