From 0cc4a5babf6d33449857c476628a38818939e976 Mon Sep 17 00:00:00 2001 From: Tino Breddin Date: Wed, 14 Aug 2019 16:06:05 +0200 Subject: [PATCH] Add ecrecover to changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a41d621..1e8044c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- New builtin function `Crypto.ecrecover_secp256k1: (hash, bytes(65)) => bytes(32)` + for recovering Ethereum address from message hash and signature. + ### Changed - New syntax for tuple types. Now 0-tuple type is encoded as `unit` instead of `()` and regular tuples are encoded by interspersing inner types with `*`, for instance `int * string`.