This PR replaces the usage of schnorr_fun and secp256kfun with k256 (which is native in CosmWasm) for implementing the adaptor signature verification. This gets rid of schnorr_fun and secp256kfun which can bloat the contract size.
This PR also runs cargo fix-lint to lint the entire project.
Resolves #13
This PR replaces the usage of
schnorr_fun
andsecp256kfun
withk256
(which is native in CosmWasm) for implementing the adaptor signature verification. This gets rid ofschnorr_fun
andsecp256kfun
which can bloat the contract size.This PR also runs
cargo fix-lint
to lint the entire project.