本教程手把手教你 5 分钟部署合约到 Arbitrum1、打开 Remix,创建一个 .sol结尾的文件https://remix.ethereum.org/2、将智能合约代码,粘贴到右侧的编辑器下方为示例发布一个 Token 的代码,你可以在浏览器找自己想要部署的合约,修改后进行部署。pragma solidity ^0.7.0; import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.2.0-solc-0.7/contracts/token/ERC20/ERC20.sol'; // This ERC-20 contract mints the specified amount of tokens to the contract creator. contract first is ERC20 { constructor(uint256 initialSupply) ERC20("first token", "FIRST") public { _mint(msg.sender,...