Upgrade to Pro — share decks privately, control downloads, hide ads and more …

MCH+動き始めてます! / MCH+ has begun

Ryo Manzoku
April 28, 2019
420

MCH+動き始めてます! / MCH+ has begun

2019-05-07 MCH Public Viewingにて

Ryo Manzoku

April 28, 2019
Tweet

Transcript

  1. メタデータとは ・ERC-721で規定されているMetadataという 項目をEthereumに書き込むことで、 Ethereum外からその価値を定義できる仕様 ・ステータスやスキル状況など CryptoWorldの 情報を、外部に伝えるもの ・OpenSeaやBazaarでヒーローのパラメータが 確認できるのはこれを使っているから $

    curl -s https://www.mycryptoheroes.net/metadata/heroes/50010001 | jq . { "name": "MCH Hero: #50010001 Lv.100", "description": "HeroName: Nobunaga Oda", "image": "https://www.mycryptoheroes.net/images/heroes/2000/5001.png", "attributes": { "rarity": "Legendary" "hp": 480, "phy": 205, "int": 76, "agi": 111, "lv": 100, "passive_skill": "Rule the Empire by Force", "active_skill": "Red Strike", }, "external_url": "https://www.mycryptoheroes.net/heroes/50010001", "image_url": "https://www.mycryptoheroes.net/images/heroes/2000/5001.png" }
  2. Plusmeta API (仮) ・アセットの価値を誰でも登録できる ・誰でも価値を参照できる ・秘密鍵を使って署名するので、 誰が登録したかを検証可能 $ curl -s

    https://www.mycryptoheroes.net/metadata/heroes/50010001 | jq . { "name": "MCH Hero: #50010001 Lv.100", "description": "HeroName: Nobunaga Oda", "image": "https://www.mycryptoheroes.net/images/heroes/2000/5001.png", "attributes": { "rarity": "Legendary" "hp": 480, "phy": 205, "int": 76, "agi": 111, "lv": 100, "passive_skill": "Rule the Empire by Force", "active_skill": "Red Strike", }, "external_url": "https://www.mycryptoheroes.net/heroes/50010001", "image_url": "https://www.mycryptoheroes.net/images/heroes/2000/5001.png" } これに追加できる!