poseidon-sol

implementation of Poseidon hash function in Solidity


Keywords
hash function, zero-knowledge proof, ethereum, solidity, hashfunction, zkp
License
Apache-2.0
Install
npm install poseidon-sol@0.1.1

Documentation

poseidon-sol

Overview

Poseidon Hash Function implementation in Solidity

GitHub issues Build Status codecov npm

Description

Currently, the most widely-used Poseidon hash function for EVM is implemented in JS, and it is performant but it could be more unreadable. Also, if you write a smart contract in Solidity, it has to link the bytecode or call an external contract address for hash functions, which is inconvenient.

In the future, Poseidon hash might be implemented as a precompile contract in the Ethereum protocol (https://eips.ethereum.org/EIPS/eip-5988), so that people can call it with cheap gas. However, I think it would still be valuable to have a Poseidon Solidity implementation as a baseline for the performance benchmark.

How to use

  • npm install poseidon-sol: install

How to test

  • npm install
  • npx hardhat test

Other commands

  • npx hardhat compile
  • npx hardhat coverage