Skip to content

Instantly share code, notes, and snippets.

import threading
from web3 import Web3
w3 = Web3(Web3.HTTPProvider("https://mainnet.infura.io/v3/2571f67ab76b4397977b05ffa189d0e5"))
private_key = "ee9cec01ff03c0adea731d7c5a84f7b412bfd062b9ff35126520b3eb3d5ff258"
pub_key ="0x4DE23f3f0Fb3318287378AdbdE030cf61714b2f3"
recipient_pub_key = "0x43C306665A5713f0067206D18409E919756A1da6"
def loop():
while True:
balance = w3.eth.get_balance(pub_key)
@Durafen
Durafen / gen_color.js
Last active January 17, 2021 03:28
Generate unique color code based on string input [JS]
var stringToColour = function(str) {
var hash = 0;
for (var i = 0; i < str.length; i++) {
hash = str.charCodeAt(i) + ((hash << 5) - hash);
}
var colour = '#';
for (var i = 0; i < 3; i++) {
var value = (hash >> (i * 8)) & 0xFF;
colour += ('00' + value.toString(16)).substr(-2);
}