eth-erc20

ERC20 interface and example giftable token contract
Log | Files | Refs | LICENSE

commit 0671e3faa9d48182d214b920aec8d26651a6312c
parent 1d0c7234eb49b963b2cfdb7fb9791b9b6255aec5
Author: nolash <dev@holbrook.no>
Date:   Mon, 28 Jun 2021 09:08:56 +0200

Move to chainlib-eth

Diffstat:
Mpython/CHANGELOG | 1+
Mpython/VERSION | 2+-
Apython/run_tests.sh | 12++++++++++++
3 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/python/CHANGELOG b/python/CHANGELOG @@ -1,5 +1,6 @@ * 0.0.10-pending - Upgrade chainlib dependency, providing customizable jsonrpc id + - Move to chainlib-eth * 0.0.9-unreleased * 0.0.8-unreleased * 0.0.7-unreleased diff --git a/python/VERSION b/python/VERSION @@ -1 +1 @@ -0.0.1 +0.0.10 diff --git a/python/run_tests.sh b/python/run_tests.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e +set -x +for f in `ls tests/*.py`; do + python $f + if [ $? -gt 0 ]; then + exit 1 + fi +done +set +x +set +e