aboutsummaryrefslogtreecommitdiffstats
path: root/accounts/abi/doc.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-01-30 01:28:55 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-01-30 01:28:55 +0800
commit1cfea1113ac90b5214560ea6db923106f638c4b8 (patch)
tree5a539d60640da4ee4b1ddd62f703f715523c411a /accounts/abi/doc.go
parent726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242 (diff)
parent6488a392a347d0d47212fdc78386e3e0e5841d7d (diff)
downloaddexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar.gz
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar.bz2
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar.lz
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar.xz
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.tar.zst
dexon-1cfea1113ac90b5214560ea6db923106f638c4b8.zip
Merge branch 'qt5.4' of github.com:ethereum/go-ethereum into qt5.4
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