0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

etherscanでのコントラクトベリファイにはLicense指定が必須でコメントは消してもよい

Last updated at Posted at 2020-01-18

はじめに

etherscanでソースコードのベリファイの動きを勉強しました。そのノートです。

TruffleとOpenZeppelinを使ってコントラクトを作成しました。

ソースはここにおいてあります。

コントラクトデプロイ1

こんなコントラクトをデプロイしました。

pragma solidity >=0.4.21 <0.7.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";

contract PToken is ERC20, ERC20Detailed {
  constructor(uint256 initialSupply) ERC20Detailed("PToken", "PTN", 18) public {
    _mint(msg.sender, initialSupply);
  }
}

ではベリファイに進みます。

etherscanにアップロードできるファイルの種類は4つ

image.png

Standard-Json-Inputって何?

truffleでコンパイルした後にできるjsonではない

build/contracts/PToken.jsonをアップロードしてみた

Error! Unable to generate Contract ByteCode and ABI (General Exception, unable to get compiled [bytecode])
エラー!コントラクトのByteCodeおよびABIを生成できません(一般例外、コンパイルされた[bytecode]を取得できません)

image.png

こういう形式らしい

そのjsonのmetadataにあるやつがそれっぽい、でもダメだった

これ

image.png

parseしてみる

image.png

エラー

image.png

Unable to process the standard-input-json you uploaded. ErrCode: Only literal contents of the source file, Source using URLS are not supported
アップロードしたstandard-input-jsonを処理できません。 ErrCode:ソースファイルのリテラルコンテンツのみ、URLSを使用するソースはサポートされていません

以下のように、sources[<file_name>].urlsではなく、sources[<file_name>].contentでなければならないということだと思った。

image.png

truffle-flattenerを使ってSingle fileを指定するとできた

これを使うと、インポートとかをさかのぼって一つのファイルにまとめられる

無事ベリファイできた

image.png

Contractタブにソースコードが表示された

image.png

コントラクトデプロイ2

1とまったく同じSolidityをデプロイした

etherscanではすでにベリファイされている

前のやつと同じバイトコードだから

image.png

コントラクトデプロイ3

名前を一文字変えた。PTokenからLTokenにした。コンストラクタ引数は変えていない。

pragma solidity >=0.4.21 <0.7.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";

contract LToken is ERC20, ERC20Detailed {
  constructor(uint256 initialSupply) ERC20Detailed("PToken", "PTN", 18) public {
    _mint(msg.sender, initialSupply);
  }
}

コントラクトの名前を変えると同一ではなくなる

etherscanの画面がまだベリファイではない。

image.png

ベリファイではLicenseが必須項目、コメントの有無はベリファイに影響しない

Licenseは必須項目

image.png

LicenseをNoneに指定

image.png

コメントを消してアップロード

image.png

License Noneと表示される。Licenseの表記がないコントラクトは、昔の時代のものなのかもしれない。

image.png

おわりに

コントラクトベリファイは、Single fileを選択する。

全く同じバイトコードのコントラクトは、自動的にベリファイされる。

Licenseの指定は必須。

コントラクトのコメントは消しても問題ない。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?