Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 1.64 KB

File metadata and controls

73 lines (54 loc) · 1.64 KB

ERC1155 Benchmarks (WIP)

Benchmarks for implementations of the ERC115 standard.

Methods TODO

  • deploy
  • mint (not in the specification, but common)
  • mintBatch (not in the specification, but common)
  • safeTransferFrom
  • safeBatchTransferFrom
  • setApprovalForAll
  • balanceOf
  • balanceOfBatch
  • isApprovedForAll

Deployment

How much gas to deploy the contract as is?

Implementation --
OpenZeppelin 890595
Solmate 755090

mint

How much gas to mint a token?

Implementation --
OpenZeppelin 33719
Solmate 33085

mintBatch

How much gas to mint n different tokens?

Implementation 1 5 10
OpenZeppelin 35716 131561 249715
Solmate 36911 131373 249582

safeTransferFrom

How much gas to transfer one token?

Implementation --
OpenZeppelin 37994
Solmate 36858

safeBatchTransferFrom

How much gas to transfer n tokens to the same address?

Implementation 1 5 10
OpenZeppelin 39679 138235 259747
Solmate 39590 134484 253223