github.com/jonasnick/go-ethereum@v0.7.12-0.20150216215225-22176f05d387/accounts/abi/doc.go (about) 1 // Package abi implements the Ethereum ABI (Application Binary 2 // Interface). 3 // 4 // The Ethereum ABI is strongly typed, known at compile time 5 // and static. This ABI will handle basic type casting; unsigned 6 // to signed and visa versa. It does not handle slice casting such 7 // as unsigned slice to signed slice. Bit size type casting is also 8 // handled. ints with a bit size of 32 will be properly cast to int256, 9 // etc. 10 package abi