diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-10 18:04:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-10 18:04:10 +0800 |
commit | 5c404fcfac113d2e25f80b298e485099baa27fb8 (patch) | |
tree | d41002de7f3b8d84f47859c0b2bc9e41da47d236 /docs/abi-spec.rst | |
parent | f6edb7fb8f3f86f527d20bbe7b0e55d2c560ba90 (diff) | |
parent | 314fefbc0530ddd396bca0ac0694145e910b4d9b (diff) | |
download | dexon-solidity-5c404fcfac113d2e25f80b298e485099baa27fb8.tar.gz dexon-solidity-5c404fcfac113d2e25f80b298e485099baa27fb8.tar.zst dexon-solidity-5c404fcfac113d2e25f80b298e485099baa27fb8.zip |
Merge pull request #4460 from ethereum/docs-contract-abi
Rename ABI to Contract ABI
Diffstat (limited to 'docs/abi-spec.rst')
-rw-r--r-- | docs/abi-spec.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index 62914c05..07596ec2 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -2,14 +2,14 @@ .. _ABI: -****************************************** -Application Binary Interface Specification -****************************************** +************************** +Contract ABI Specification +************************** Basic Design ============ -The Application Binary Interface (ABI) is the standard way to interact with contracts in the Ethereum ecosystem, both +The Contract Application Binary Interface (ABI) is the standard way to interact with contracts in the Ethereum ecosystem, both from outside the blockchain and for contract-to-contract interaction. Data is encoded according to its type, as described in this specification. The encoding is not self describing and thus requires a schema in order to decode. |