common.go 1.31 KB
Newer Older
obscuren's avatar
obscuren committed
1 2 3 4 5 6 7
package ethutil

import (
	"fmt"
	"math/big"
)

8
// The different number of units
obscuren's avatar
obscuren committed
9 10 11 12
var (
	Ether  = BigPow(10, 18)
	Finney = BigPow(10, 15)
	Szabo  = BigPow(10, 12)
13
	Vita   = BigPow(10, 9)
obscuren's avatar
obscuren committed
14 15 16 17 18
	Turing = BigPow(10, 6)
	Eins   = BigPow(10, 3)
	Wei    = big.NewInt(1)
)

19 20 21
// Currency to string
//
// Returns a string representing a human readable format
obscuren's avatar
obscuren committed
22 23 24 25 26 27 28 29
func CurrencyToString(num *big.Int) string {
	switch {
	case num.Cmp(Ether) >= 0:
		return fmt.Sprintf("%v Ether", new(big.Int).Div(num, Ether))
	case num.Cmp(Finney) >= 0:
		return fmt.Sprintf("%v Finney", new(big.Int).Div(num, Finney))
	case num.Cmp(Szabo) >= 0:
		return fmt.Sprintf("%v Szabo", new(big.Int).Div(num, Szabo))
30 31
	case num.Cmp(Vita) >= 0:
		return fmt.Sprintf("%v Vita", new(big.Int).Div(num, Vita))
obscuren's avatar
obscuren committed
32 33 34 35 36 37 38 39
	case num.Cmp(Turing) >= 0:
		return fmt.Sprintf("%v Turing", new(big.Int).Div(num, Turing))
	case num.Cmp(Eins) >= 0:
		return fmt.Sprintf("%v Eins", new(big.Int).Div(num, Eins))
	}

	return fmt.Sprintf("%v Wei", num)
}
40

41
// Common big integers often used
42 43
var (
	Big1   = big.NewInt(1)
44
	Big2   = big.NewInt(1)
45
	Big0   = big.NewInt(0)
obscuren's avatar
obscuren committed
46
	Big32  = big.NewInt(32)
47 48
	Big256 = big.NewInt(0xff)
)
obscuren's avatar
obscuren committed
49

50
// Creates an ethereum address given the bytes and the nonce
obscuren's avatar
obscuren committed
51 52 53 54 55
func CreateAddress(b []byte, nonce *big.Int) []byte {
	addrBytes := append(b, nonce.Bytes()...)

	return Sha3Bin(addrBytes)[12:]
}