Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 875 Bytes

File metadata and controls

20 lines (18 loc) · 875 Bytes

81 - ABI

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.

  1.  Interface functions of a contract are strongly typed, known at compilation time and static.

  2. Contracts will have the interface definitions of any contracts they call available at compile-time.


Slide Screenshot

081.jpg


Slide Text

  • Applicaton Binary Interface
  • Required -> Interact with Contracts
  • Interface Functions -> Strongly Typed
  • Known -> Compile Time & Static

References

Tags

ABI Encoding-Decoding ABI Coder