Smart contracts that implement self-sovereign identity, and verifiable claims.
Selfkey implementation of ERC725 identity standard. It adds functionality specific for acting as a DID (Decentralized Identifier) contract, by providing the means to manage "service endpoints" and also sending or withdrawing ETH/tokens.
The smart contracts are being implemented in Solidity 0.4.19
.
- NodeJS, version 9.5+ (I use
nvm
to manage Node versions —brew install nvm
.) - truffle, which is a comprehensive framework for Ethereum development.
npm install -g truffle
— this should install Truffle v4+. Check that withtruffle version
. - Access to the KYC_Chain Jira
npm install
npm test
or with code coverage
npm run test:cov
Run the truffle
development environment
truffle develop
then from the prompt you can run
compile
migrate
test
as well as other Truffle commands. See truffleframework.com for more.
We provide the following linting options
npm run lint:sol
— to lint the Solidity files, andnpm run lint:js
— to lint the Javascript.
Please see the contributing notes.