Created
December 20, 2018 11:45
-
-
Save artikrh/91501a98be44cbe54e62831e1c579ef7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
from web3 import Web3 | |
import json, hashlib | |
def enter_club(): | |
# Store Ethereum contract address | |
with open("/home/bobby/projects/ChainsawClub/address.txt",'r') as f: | |
caddress = f.read().rstrip() | |
f.close() | |
# Load Ethereum contract configuration | |
with open('/home/bobby/projects/ChainsawClub/ChainsawClub.json') as f: | |
contractData = json.load(f) | |
f.close() | |
# Establish a connection with the Ethereum RPC interface | |
w3 = Web3(Web3.HTTPProvider('http://127.0.0.1:63991')) | |
w3.eth.defaultAccount = w3.eth.accounts[0] | |
# Get Application Binary Interface (ABI) and Ethereum bytecode | |
Url = w3.eth.contract(abi=contractData['abi'], | |
bytecode=contractData['bytecode']) | |
contractInstance = w3.eth.contract(address=caddress, | |
abi=contractData['abi']) | |
# Phase I & II: Create a new account and confirm | |
username = "artikrh" | |
password = hashlib.md5() | |
password.update("arti".encode('utf-8')) | |
password = password.hexdigest() | |
contractInstance.functions.setUsername(username).transact() | |
contractInstance.functions.setPassword(password).transact() | |
cusername = contractInstance.functions.getUsername().call() | |
cpassword = contractInstance.functions.getPassword().call() | |
print("[*] Added user: {}".format(cusername)) | |
print("[*] Password (MD5): {}".format(cpassword)) | |
# Phase III: Approve our user and confirm | |
contractInstance.functions.setApprove(True).transact() | |
approvalStatus = contractInstance.functions.getApprove().call() | |
print("[*] Approval status: {}".format(approvalStatus)) | |
# Phase IV: Transfer needed funds of value 1000 and confirm | |
contractInstance.functions.transfer(1000).transact() | |
supply = contractInstance.functions.getSupply().call() | |
balance = contractInstance.functions.getBalance().call() | |
print("[*] Supply left: {}".format(supply)) | |
print("[*] Total balance: {}".format(balance)) | |
if __name__ == "__main__": | |
enter_club() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment