aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/doc.go
blob: 648c971e15bf0bf7d9e34bbc81e8044679466ae3 (plain) (blame)
1
2
3
4
5
6
7
8
9
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