Skip to content
View ShisAngMoeBie's full-sized avatar
🦋
🍁
🦋
🍁

Block or report ShisAngMoeBie

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Tezos Vanity Address with Seed Phrase Tezos Vanity Address with Seed Phrase
    1
    After seeing the recently posted [How To Generate A Tezos Vanity Address](https://reddit.com/r/tezos/comments/99g1ur/how_to_generate_a_tezos_vanity_address/), I thought I'd share a method I've used to generate a vanity address that has the benefit of being able to easily be restored or transferred to another wallet from a seed phrase backup.
    2
    
                  
    3
    Most of the credit goes to Stephen Andrews. I've just slightly modified some of the code he wrote to get it to work the way I want.
    4
    
                  
    5
    Everything below assumes you are working from the Linux command line (tested in Debian/Ubuntu distributions):
  2. droptoken droptoken
    1
    pragma solidity ^0.4.8;
    2
    contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); }
    3
    
                  
    4
    contract MyToken {
    5
        /* Public variables of the token */
  3. BTCscan.py BTCscan.py
    1
    #    Copyright 2014 Chris Cohen
    2
    #
    3
    #    This program is free software: you can redistribute it and/or modify
    4
    #    it under the terms of the GNU General Public License as published by
    5
    #    the Free Software Foundation, either version 3 of the License, or
  4. DroplexToken DroplexToken
    1
    pragma solidity ^0.4.6;
    2
    
                  
    3
    contract SafeMath {
    4
      //internals
    5
    
                  
  5. DroplexTokenABI DroplexTokenABI
    1
    [ { "constant": true, "inputs": [], "name": "name", "outputs": [ { "name": "", "type": "string", "value": "Droplex Token" } ], "payable": false, "type": "function" }, { "constant": false, "inputs": [ { "name": "_spender", "type": "address" }, { "name": "_value", "type": "uint256" } ], "name": "approve", "outputs": [ { "name": "success", "type": "bool" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [], "name": "totalSupply", "outputs": [ { "name": "", "type": "uint256", "value": "30000000" } ], "payable": false, "type": "function" }, { "constant": false, "inputs": [ { "name": "_from", "type": "address" }, { "name": "_to", "type": "address" }, { "name": "_value", "type": "uint256" } ], "name": "transferFrom", "outputs": [ { "name": "success", "type": "bool" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [], "name": "decimals", "outputs": [ { "name": "", "type": "uint8", "value": "0" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [], "name": "standard", "outputs": [ { "name": "", "type": "string", "value": "ERC20" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [ { "name": "", "type": "address" } ], "name": "balanceOf", "outputs": [ { "name": "", "type": "uint256", "value": "0" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [], "name": "owner", "outputs": [ { "name": "", "type": "address", "value": "0xabe3d12e5518bf8266bb91b56913962ce1f77cf4" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [], "name": "symbol", "outputs": [ { "name": "", "type": "string", "value": "DROP" } ], "payable": false, "type": "function" }, { "constant": false, "inputs": [ { "name": "_to", "type": "address" }, { "name": "_value", "type": "uint256" } ], "name": "transfer", "outputs": [ { "name": "success", "type": "bool" } ], "payable": false, "type": "function" }, { "constant": true, "inputs": [ { "name": "", "type": "address" }, { "name": "", "type": "address" } ], "name": "allowance", "outputs": [ { "name": "", "type": "uint256", "value": "0" } ], "payable": false, "type": "function" }, { "inputs": [], "payable": false, "type": "constructor" }, { "anonymous": false, "inputs": [ { "indexed": true, "name": "from", "type": "address" }, { "indexed": true, "name": "to", "type": "address" }, { "indexed": false, "name": "value", "type": "uint256" } ], "name": "Transfer", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "name": "owner", "type": "address" }, { "indexed": true, "name": "spender", "type": "address" }, { "indexed": false, "name": "value", "type": "uint256" } ], "name": "Approval", "type": "event" } ]