Key managers, recovery, gas abstraction and self-sovereign identity for web3 universal login.
Go to file
Ricardo Guilherme Schmidt 5fe8d7679e
update contracts
2020-06-23 19:27:31 -03:00
app maintance 2019-06-04 12:13:39 -03:00
config update to latest embark 2020-01-26 14:43:37 -02:00
contracts update contracts 2020-06-23 19:27:31 -03:00
test impl spec (WIP) 2020-01-30 11:11:52 -02:00
utils impl spec (WIP) 2020-01-30 11:11:52 -02:00
.gitattributes cleanup bootstrap 2018-04-23 01:58:58 -03:00
.gitignore update to embark 4.0.1 2019-03-28 20:10:02 -03:00
LICENSE add license 2019-09-18 13:32:43 -03:00
README.md mention 2429 2020-01-12 20:34:45 -02:00
embark.json update to latest embark 2020-01-26 14:43:37 -02:00
package.json update contracts 2020-06-23 19:27:31 -03:00

README.md

Account contracts

Smart contracts defining self sovereign accounts.
WIP, currently only a PoC in Solidity.

Features

  • Management key: A simple multisig or single address with full control of Identity
  • Action keys: List of addresses allowed to execute calls in behalf of Identity, i.e. allowance tool
  • ERC725 v2: ID-Owner (manager) can publish data in own profile (e.g. avatar URI, signed claims, etc).
  • ERC2429 Secret multisig recovery: A social recovery tool for secretly selecting other addresses and requesting some of them to recover the identity
  • ERC20 approve and call: optimizes approve and call operations to avoid race conditions and gas waste.
  • Gas abstract: ID-Owner can execute calls paying with gas stored on the Identity or in the ID-Owner Key. Dapps don't have to be prepared to receive these calls.
  • Serverless: Uses Whisper for gas market and Status API for Social Recovery.
  • ERC1271: Contracts usually can't sign messages. Dapps that require signatures can validate Multisig of ID-Owner by using this standard.

Usage

git clone https://github.com/status-im/account-contracts.git
cd account-contracts
npm install
npm start