Skip to content

Instantly share code, notes, and snippets.

@jimlambie
Created January 23, 2018 09:01
Show Gist options
  • Save jimlambie/2e8afe53ab93f3bfba367ef4b9f5c060 to your computer and use it in GitHub Desktop.
Save jimlambie/2e8afe53ab93f3bfba367ef4b9f5c060 to your computer and use it in GitHub Desktop.
  1. go to MyEtherWallet.com
  2. make sure you're on the Rinkeby network
  3. slect "contracts"
  4. enter contract address: e.g. 0xfCF1c289390614adA6779b192d297B9442e318F4
  5. enter ABI:
[{"constant": true,"inputs": [],"name": "beneficiary","outputs": [{"name": "",    "type": "address" }
      ],"payable": false,"stateMutability": "view","type": "function"},{
      "constant": false,"inputs": [],"name": "claim","outputs": [],"payable": false,"stateMutability": "nonpayable","type": "function" },{
      "constant": false,"inputs": [],"name": "release","outputs": [],"payable": false,"stateMutability": "nonpayable","type": "function"
    },{
      "constant": true,"inputs": [],"name": "releaseTime","outputs": [
        {"name": "", "type": "uint64"}
      ],"payable": false,"stateMutability": "view","type": "function"
    },{
      "constant": true,"inputs": [],"name": "token","outputs": [
        {"name": "",    "type": "address"}
      ],"payable": false,"stateMutability": "view","type": "function"
    },{"inputs": [{"name": "_token",    "type": "address"},
        {"name": "_beneficiary",    "type": "address"},
        {"name": "_releaseTime",    "type": "uint64"} ],"payable": false,"stateMutability": "nonpayable","type": "constructor"}]
  1. select "release" from dropdown
  2. access your test network wallet
  3. click "Write"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment