project screenshot 1
project screenshot 2
project screenshot 3
project screenshot 4
project screenshot 5

Signaturi

Signaturi is an open-source protocol and library to create public immutable announcements that can be independently verified. The goal is to protect Web3 participants from malicious actors.

Signaturi

Created At

ETHGlobal Lisbon

Project Description

The Signaturi project was born after seeing Web3 and crypto projects getting their social accounts hacked to post malicious links. One such example was BAYC getting their Instagram account hacked, leading to some users getting their wallets drained off to an estimated $2.8M: https://twitter.com/BoredApeYC/status/1518637579633053701

There must be a better way to do public announcements that can be verified and trusted by their communities. We propose the Signaturi protocol to reduce the chances of an attacker to impersonate legitimate accounts.

The Signaturi protocol follows these steps:

  1. The publisher chooses a closed list of possible signers (EVM accounts) and sends them the message to be signed.
  2. Each signer reviews and signs the message, which includes the list of all possible signers. The Signaturi platform automatically collects the signatures.
  3. The publisher reviews the content and signatures, and publishes the message.
  4. Anyone can check the validity of the message by checking all provided signatures.

Following this protocol, an attacker would need to hack multiple wallets in order to create a fake announcement, which should reduce this attack vector substantially.

Signers can use any supported account, including hardware or multisig wallets. Anything that supports EIP-712 signing should be compatible with Signaturi.

The submission is obviously a proof of concept, but the team had many ideas for future improvements:

  • Allow signers to reject or abstain, not just approve the message.
  • Have a registry of project participants for end users to pull keys and roles of accounts associated to the project.
  • Flexible per-project configuration on what and how many signatures are required for a message to be considered valid. Things like minimum number of signatures or requiring some accounts to always provide a signature.
  • ENS lookup of accounts.
  • A way to visualize org structure/permissions.
  • Aggregate signatures using BLS.
  • Use some commit/reveal scheme to create and publish announcements that can only be decrypted at a set date in the future.

How it's Made

The project has two separate parts, included in the same monorepo for convenience:

  1. Signaturi library: NPM package, fully typed with Typescript and full unit-test coverage.
  2. Next.js web app: an example platform that implements the Signaturi protocol to create messages, allow signers to sign them and anyone to verify the announcements.

The project was based off Scaffold-ETH 2 to have a good starting point with Next.js and a variety of Web3 libraries like ethers and wagmi.

The Signaturi library helps developers implement the Signaturi protocol as defined in the description above:

  1. When creating the message for the signers to sign, it is encoded following the EIP-712 standard to provide a nice representation to the signers as to what they will be signing.
  2. A function to create a Signaturi message that combines the message that was signed with the collection of all signatures. This encoded message can be sent using any communication protocol.
  3. A verify function is a simple single point of entry for verifying the message as created by the previous point. It provides a global good/bad result, and a separate result for each signature (good/bad/missing).
  4. ethers.js is used for generating the EIP-712 typed message and verifying the signatures.

The Next.js frontend uses React for UI; PostgreSQL for database persistence; Mantine (https://mantine.dev/) for UI components; wagmi for Web3 React hooks; Vercel (https://vercel.com/) for deployment.

background image mobile

Join the mailing list

Get the latest news and updates