UNPKG

@tonomy/antelope-did

Version:

Create, resolve, update and deactivate Decentralized Identifier (DID) documents based on Antelope blockchains

157 lines (122 loc) 6.29 kB
# Contributions The Antelope Identity Working Group is an open working group where we, the Antelope community, discuss identity on Antelope chains and progress work such as this DID specification and it's implementation. We have a weekly meeting and a Slack channel. Comments regarding this document are welcome. Please file issues and PRs directly on Github. Contributors are recognized through adding commits to the code base. See [README.tsdx.md](./README.tsdx.md) for instructions on how to run, build, test and test this library. Contributors: - Jack Tanner <jack@gimly.io> - Caspar Roelofs <caspar@gimly.io> - Jonas Walter - Julius Rahaus ## Antelope DID This library is intended to use Antelope accounts as fully self managed [Decentralized Identifiers](https://w3c-ccg.github.io/did-spec/#decentralized-identifiers-dids) and wrap them in a [DID Document](https://w3c-ccg.github.io/did-spec/#did-documents) It supports the proposed [Decentralized Identifiers](https://w3c-ccg.github.io/did-spec/) spec from the [W3C Credentials Community Group](https://w3c-ccg.github.io). The DID specification can be found at [antelope-did-spec](https://github.com/Tonomy-Foundation/antelope-did-spec). ## DID Create ```js const antelopeDid = new AntelopeDID({ chain: 'eos:testnet:jungle', signatureProvider: new JsSignatureProvider(['PVT_K1_27yS4sdX86VDahQRABMLCcDABH5Vzy8vgLLS7wBeKESyrXetMf']) }); const myPermission = { threshold: 1, keys: [{ key: 'PUB_K1_5irHomACLB3oRbkqdgYTdh1GHGt8yvzQ7no5dxvEw5eYAiUiut', weight: 1, }], accounts: [], waits: [], }; // "didtester333" account creates a new account called "newaccount11" with the owner and active permission set to "mypermission" // on the Jungle testnet const didCreateResult = await antelopeDid.create('didtester333', 'newaccount11', myPermission, myPermission); ``` ## DID Resolve ```js const antelopeDid = new AntelopeDID(); // resolves the "didtester333" account on the Jungle testnet account to a DID Document const didResolveResult = await antelopeDid.resolve('did:antelope:eos:testnet:jungle:didtester333'); ``` ## DID Update ```js const antelopeDID = new AntelopeDID({ account: 'didtester333', signatureProvider: new JsSignatureProvider(['PVT_K1_27yS4sdX86VDahQRABMLCcDABH5Vzy8vgLLS7wBeKESyrXetMf']), chain: 'eos:testnet:jungle' }); const myNewPermission = { threshold: 1, keys: [{ key: 'PUB_K1_5irHomACLB3oRbkqdgYTdh1GHGt8yvzQ7no5dxvEw5eYAiUiut', weight: 1, }], accounts: [], waits: [], }; // "didtester333" changes it's "active" permission to the "myNewPermission" on the Jungle testnet const didUpdateResult = await antelopeDID.update('didtester333', 'active', 'owner', myNewPermission); ``` ## DID Deactivate Note: DID Deactive always throws an error as it is not supported by default on an Antelope chain. See the [Antelope DID Spec](https://github.com/Tonomy-Foundation/antelope-did-spec#54-deactivate) for more information. ```js const antelopeDID = new AntelopeDID({ account: 'didtester333', signatureProvider: new JsSignatureProvider(['PVT_K1_27yS4sdX86VDahQRABMLCcDABH5Vzy8vgLLS7wBeKESyrXetMf']), chain: 'eos:testnet:jungle' }); // Will throw an error await antelopeDID.deactivate('did:antelope:eos:testnet:jungle:didtester333'); ``` ## Conficuration All function calls (create, resolve, update, deactivate) can be called with an optional `options` argument with the following optional properties: ```ts { chain?: string; fetch?: any; account?: string; signatureProvider?: SignatureProvider; accountPermission?: string; registry?: ChainRegistry; transactionOptions?: { blocksBehind?: number; expireSeconds?: number; }; } ``` **chain** - the chain id or the registered chain name (see the [DID method schema](https://github.com/Tonomy-Foundation/antelope-did-spec#3-did-method-schema-didantelope) part of the Antelope DID spec). This must be provided to know which chain to contact and a corresponding item in the [antelope-did-chain-registry.json](https://github.com/Tonomy-Foundation/antelope-did-resolver/blob/master/src/antelope-did-chain-registry.json) or `registry` property must exist e.g. <br>`eos:testnet:jungle` <br>`telos` <br>`4667b205c6838ef70ff7988f6e8257e8be0e1284a2f59699054a018f743b1d11` <br>**fetch** - fetch object used to communicate with the antelope API. If using nodejs then you need to import the `node-fetch` npm package and use this. See the [eosjs documentation](https://www.npmjs.com/package/eosjs) for more details. <br>**signatureProvider** - the SignatureProvider object that will be used to sign txs <br>**accountPermission** - the permission name that will be used to send txs <br>**registry** - additional ChainRegisries that are used to find the API endpoints of the antelope API. This should be used when communicating with Antelope blockchain nodes that have not been registed in the [antelope-did-chain-registry.json](https://github.com/Tonomy-Foundation/antelope-did-resolver/blob/master/src/antelope-did-chain-registry.json) <br>**transactionOptions** - overrides the tx options when the tx is sent. See the [eosjs documentation](https://www.npmjs.com/package/eosjs) for more details. ### Create configuration The create function can be called with the following _additional_ optional properties: ```ts { buyrambytes?: number; stakeNetQuantity?: string; stakeCpuQuantity?: string; transfer?: boolean; } ``` <br>**buyrambytes** - amount of RAM to allocate to the new account in bytes (default = 8192) <br>**stakeNetQuantity** - amout of NET to stake to the new account (default = "1.0000 EOS") <br>**stakeCpuQuantity** - amount of CPU to stake to the new account (default = "1.0000 EOS") <br>**transfer** - transfer the ownership of the staked tokens to the new account (default = false) ## Error handling All function calls (create, resolve, update, deactivate) return an object containing an errors encountered. They do not throw errors. For example ```ts const didResolveResult = await antelopeDid.resolve('did:antelope:invalid_did_string'); // This will NOT throw an error console.log(didResolveResult); /* { didResolutionMetadata: { 'invalidDid' }, didDocument: null, didDocumentMetadata: {}, } */ ```