Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 653 Bytes

OZ Multicall.md

File metadata and controls

21 lines (19 loc) · 653 Bytes

OpenZeppelin Multicall: Provides a function to batch together multiple calls in a single external call

  1. multicall(bytes[] calldata data) externalbytes[]: Receives and executes a batch of function calls on this contract

Slide Screenshot

164.jpg


Slide Text

  • Batch Calls
  • Single External Call
  • multicall(bytes[] calldata data) external -> bytes[]
  • Receives <- Executes Function Calls -> Batch
  • One Tx, Same Block
  • Less Overhead -> Gas Efficient

References


Tags