Skip to content

Instantly share code, notes, and snippets.

View svenpohl's full-sized avatar

Sven Pohl svenpohl

View GitHub Profile
@svenpohl
svenpohl / keypair.py
Created August 28, 2022 16:17
Python script for Bitcoin keypair generation
import os
import ecdsa
import binascii
import hashlib
import base58
import base64
#
# So. 28.aug.2022
# Tested with Python 3.10.6
@svenpohl
svenpohl / scattertest.html
Last active December 22, 2018 22:56
Scattertest
<html>
<head>
<meta charset="UTF-8">
<script src="https://cdn.scattercdn.com/file/scatter-cdn/js/latest/scatterjs-core.min.js"></script>
<script src="https://cdn.scattercdn.com/file/scatter-cdn/js/latest/scatterjs-plugin-eosjs.min.js"></script>
@svenpohl
svenpohl / index.php
Created March 6, 2018 22:08
CLO snapshot checker
<?php
/*
index.php - simple CLO checker script - sven.pohl@zen-systems.de
*/
?>
Check CLO-snapshot!<br><br>
<form action='index.php' method='post'>
ETC-account: <input type='text' id='etc_address' name='etc_address' style='width:400px;' value=''><br>
<input type='submit' value='Check''>
@svenpohl
svenpohl / lovecoin
Created November 26, 2017 09:24
Solidity ERC20-token source of lovecoin (LOV)
pragma solidity ^0.4.8;
// ----------------------------------------------------------------------------------------------
// Sample fixed supply token contract
// Enjoy. (c) BokkyPooBah 2017. The MIT Licence.
// ----------------------------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/issues/20
contract ERC20Interface {