Implemented contract ABI

This commit is contained in:
obscuren
2015-01-27 16:19:21 +01:00
parent 382726fde4
commit aa5b29e2f2
8 changed files with 971 additions and 2 deletions

10
accounts/abi/doc.go Normal file
View File

@ -0,0 +1,10 @@
// Package abi implements the Ethereum ABI (Application Binary
// Interface).
//
// The Ethereum ABI is strongly typed, known at compile time
// and static. This ABI will handle basic type casting; unsigned
// to signed and visa versa. It does not handle slice casting such
// as unsigned slice to signed slice. Bit size type casting is also
// handled. ints with a bit size of 32 will be properly cast to int256,
// etc.
package abi