diff options
Diffstat (limited to 'docs/abi-spec.rst')
-rw-r--r-- | docs/abi-spec.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index fffd9a2c..ab7a8b32 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -214,6 +214,7 @@ In total:: 0xfce353f661626300000000000000000000000000000000000000000000000000000000006465660000000000000000000000000000000000000000000000000000000000 If we wanted to call `sam` with the arguments `"dave"`, `true` and `[1,2,3]`, we would pass 292 bytes total, broken down into: + - `0xa5643bf2`: the Method ID. This is derived from the signature `sam(bytes,bool,uint256[])`. Note that `uint` is replaced with its canonical representation `uint256`. - `0x0000000000000000000000000000000000000000000000000000000000000060`: the location of the data part of the first parameter (dynamic type), measured in bytes from the start of the arguments block. In this case, `0x60`. - `0x0000000000000000000000000000000000000000000000000000000000000001`: the second parameter: boolean true. |