aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/doc.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-27 23:19:21 +0800
committerobscuren <geffobscura@gmail.com>2015-01-27 23:19:21 +0800
commitaa5b29e2f291322991ceab231267d19b19af72a2 (patch)
tree00ddbb5e4b2c16c406df6c134133988155dc3678 /accounts/abi/doc.go
parent382726fde4b9b7656c4f4a96b6985fc816e3a7ce (diff)
downloaddexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar.gz
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar.bz2
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar.lz
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar.xz
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.tar.zst
dexon-aa5b29e2f291322991ceab231267d19b19af72a2.zip
Implemented contract ABI
Diffstat (limited to 'accounts/abi/doc.go')
-rw-r--r--accounts/abi/doc.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/accounts/abi/doc.go b/accounts/abi/doc.go
new file mode 100644
index 000000000..648c971e1
--- /dev/null
+++ b/accounts/abi/doc.go
@@ -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