dkg.js 6.0.15 → 6.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/constants.js CHANGED
@@ -12,6 +12,8 @@ const DID_PREFIX = 'did:dkg';
12
12
 
13
13
  const PRIVATE_ASSERTION_PREDICATE = 'https://ontology.origintrail.io/dkg/1.0#privateAssertionID';
14
14
 
15
+ const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000';
16
+
15
17
  const BLOCKCHAINS = {
16
18
  ganache: {
17
19
  rpc: 'http://localhost:7545',
@@ -151,6 +153,7 @@ module.exports = {
151
153
  MAX_FILE_SIZE,
152
154
  DID_PREFIX,
153
155
  PRIVATE_ASSERTION_PREDICATE,
156
+ ZERO_ADDRESS,
154
157
  BLOCKCHAINS,
155
158
  TRANSACTION_RETRY_ERRORS,
156
159
  WEBSOCKET_PROVIDER_OPTIONS,