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