Python3.9+ utils for the Evmos Blockchain.
The cryptocurve dependency requires some libs to be built:
sudo apt-get install build-essential libssl-dev libffi-dev python3-dev autoconf libtool pkgconfMacOS:
brew install autoconf automake libtoolpip install evmospyIf you get the error that says something like the libcrypto is running on unsafe mode and the process is aborted:
brew install openssl
sudo ln -s /opt/homebrew/opt/openssl@1.1/lib/libcrypto.1.1.dylib /usr/local/lib
sudo ln -s /opt/homebrew/opt/openssl@1.1/lib/libssl.1.1.dylib /usr/local/lib
cd /usr/local/lib
sudo ln -s libcrypto.3.dylib libcrypto.dylib
sudo ln -s libssl.3.dylib libssl.dylibInside each ./evmospy/<module>/ there is a README file with an example on how to use the module.