From af91dce43ba35e66ea50bc0d0f66bff4b671b150 Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Thu, 22 Oct 2020 18:14:36 -0400 Subject: [PATCH 1/4] Rename owners to controllers --- packages/ceramic-cli/src/bin/ceramic.ts | 24 ++++----- packages/ceramic-cli/src/ceramic-cli-utils.ts | 38 +++++++------- packages/ceramic-common/src/doctype.ts | 8 +-- .../__tests__/__validation__/doctype.test.ts | 6 +-- .../src/__tests__/ceramic-api.test.ts | 52 +++++++++---------- .../src/__tests__/ceramic.test.ts | 26 +++++----- .../src/__tests__/document.test.ts | 42 +++++++-------- packages/ceramic-core/src/document.ts | 6 +-- .../store/__tests__/level-state-store.test.ts | 2 +- .../src/store/__tests__/pin-store.test.ts | 2 +- .../__tests__/state-store-integration.test.ts | 16 +++--- .../account-link-doctype.test.ts.snap | 6 +-- .../__tests__/account-link-doctype.test.ts | 26 +++++----- .../src/account-link-doctype-handler.ts | 4 +- .../src/account-link-doctype.ts | 10 ++-- .../__snapshots__/three-id.test.ts.snap | 6 +-- .../__snapshots__/tile-doctype.test.ts.snap | 6 +-- .../src/__tests__/three-id.test.ts | 14 ++--- .../src/__tests__/tile-doctype.test.ts | 22 ++++---- .../src/tile-doctype-handler.ts | 8 +-- .../ceramic-doctype-tile/src/tile-doctype.ts | 28 +++++----- 21 files changed, 176 insertions(+), 176 deletions(-) diff --git a/packages/ceramic-cli/src/bin/ceramic.ts b/packages/ceramic-cli/src/bin/ceramic.ts index e8af123b31..f7d203cb89 100644 --- a/packages/ceramic-cli/src/bin/ceramic.ts +++ b/packages/ceramic-cli/src/bin/ceramic.ts @@ -24,22 +24,22 @@ program .command('create ') .option('--content ', 'New document content') .option('--only-genesis', 'Only create the genesis object. No anchor will be created') - .option('--owners ', 'Specify a comma-separated list of the owners of the document. Defaults to current user') + .option('--controllers ', 'Specify a comma-separated list of the controllers of the document. Controllers are the users that are allowed to publish updates to this document. Defaults to current user') .option('--unique', 'Ensure document is unique regardless of content') .option('--schema ', 'Schema document ID') .description('Create a new document') - .action(async (doctype, { content, onlyGenesis, owners, unique, schema }) => { - await CeramicCliUtils.createDoc(doctype, content, owners, onlyGenesis, unique, schema) + .action(async (doctype, { content, onlyGenesis, controllers, unique, schema }) => { + await CeramicCliUtils.createDoc(doctype, content, controllers, onlyGenesis, unique, schema) }) program .command('change ') .option('--content ', 'Change document content') - .option('--owners ', 'Change owner of this document (only 3ID)') + .option('--controllers ', 'Change controllers of this document (only 3ID)') .option('--schema ', 'Change the schema document ID') .description('Update the content of a document') - .action(async (docId, { content, owners, schema }) => { - await CeramicCliUtils.change(docId, content, owners, schema) + .action(async (docId, { content, controllers, schema }) => { + await CeramicCliUtils.change(docId, content, controllers, schema) }) program @@ -76,19 +76,19 @@ schemas.description('Ceramic schemas') schemas .command('create ') .option('--only-genesis', 'Only create the genesis object. No anchor will be created') - .option('--owners ', 'Specify a comma-separated list of the owners of the schema document. Defaults to' + ' current user') + .option('--controllers ', 'Specify a comma-separated list of the controllers of the schema document. Defaults to' + ' current user') .option('--unique', 'Ensure schema document is unique regardless of content') .description('Create a new schema') - .action(async (content, { onlyGenesis, owners, unique }) => { - await CeramicCliUtils.schemaCreateDoc(content, owners, onlyGenesis, unique) + .action(async (content, { onlyGenesis, controllers, unique }) => { + await CeramicCliUtils.schemaCreateDoc(content, controllers, onlyGenesis, unique) }) schemas .command('change ') - .option('--owners ', 'Change owner of this document (only 3ID)') + .option('--controllers ', 'Change controllers of this document (only 3ID)') .description('Update the content of a schema') - .action(async (docId, content, { owners }) => { - await CeramicCliUtils.schemaChangeDoc(docId, content, owners) + .action(async (docId, content, { controllers }) => { + await CeramicCliUtils.schemaChangeDoc(docId, content, controllers) }) const pin = program.command('pin') diff --git a/packages/ceramic-cli/src/ceramic-cli-utils.ts b/packages/ceramic-cli/src/ceramic-cli-utils.ts index 5ff337e5e5..d7d9edfda2 100644 --- a/packages/ceramic-cli/src/ceramic-cli-utils.ts +++ b/packages/ceramic-cli/src/ceramic-cli-utils.ts @@ -89,19 +89,19 @@ export class CeramicCliUtils { * Create document * @param doctype - Document type * @param content - Document content - * @param owners - Document owners + * @param controllers - Document controllers * @param onlyGenesis - Create only a genesis record (no publish or anchor) * @param isUnique - Should document be unique? * @param schemaDocId - Schema document ID */ - static async createDoc(doctype: string, content: string, owners: string, onlyGenesis: boolean, isUnique: boolean, schemaDocId: string = null): Promise { + static async createDoc(doctype: string, content: string, controllers: string, onlyGenesis: boolean, isUnique: boolean, schemaDocId: string = null): Promise { await CeramicCliUtils._runWithCeramic(async (ceramic: CeramicClient) => { - const parsedOwners = CeramicCliUtils._parseOwners(owners) + const parsedControllers = CeramicCliUtils._parseControllers(controllers) const parsedContent = CeramicCliUtils._parseContent(content) const params = { content: parsedContent, metadata: { - owners: parsedOwners, isUnique, schema: schemaDocId + controllers: parsedControllers, isUnique, schema: schemaDocId } } @@ -118,10 +118,10 @@ export class CeramicCliUtils { * Change document * @param docId - Document ID * @param content - Document content - * @param owners - Document owners + * @param controllers - Document controllers * @param schemaDocId - Optional schema document ID */ - static async change(docId: string, content: string, owners: string, schemaDocId?: string): Promise { + static async change(docId: string, content: string, controllers: string, schemaDocId?: string): Promise { const id = DocID.fromString(docId) const version = id.version @@ -131,13 +131,13 @@ export class CeramicCliUtils { } await CeramicCliUtils._runWithCeramic(async (ceramic: CeramicClient) => { - const parsedOwners = CeramicCliUtils._parseOwners(owners) + const parsedControllers = CeramicCliUtils._parseControllers(controllers) const parsedContent = CeramicCliUtils._parseContent(content) const doc = await ceramic.loadDocument(id) await doc.change({ content: parsedContent, metadata: { - owners: parsedOwners, schema: schemaDocId + controllers: parsedControllers, schema: schemaDocId } }) @@ -204,25 +204,25 @@ export class CeramicCliUtils { /** * Create schema document * @param content - Schema content - * @param owners - Schema owners + * @param controllers - Schema controllers * @param onlyGenesis - Create only a genesis record (no publish or anchor) * @param isUnique - Should document be unique? */ - static async schemaCreateDoc(content: string, owners: string, onlyGenesis: boolean, isUnique: boolean): Promise { + static async schemaCreateDoc(content: string, controllers: string, onlyGenesis: boolean, isUnique: boolean): Promise { // TODO validate schema on the client side - return CeramicCliUtils.createDoc('tile', content, owners, onlyGenesis, isUnique) + return CeramicCliUtils.createDoc('tile', content, controllers, onlyGenesis, isUnique) } /** * Change schema document * @param schemaDocId - Schema document ID * @param content - Schema document content - * @param owners - Schema document owners + * @param controllers - Schema document controllers */ - static async schemaChangeDoc(schemaDocId: string, content: string, owners: string): Promise { + static async schemaChangeDoc(schemaDocId: string, content: string, controllers: string): Promise { DocID.fromString(schemaDocId) // TODO validate schema on the client side - return CeramicCliUtils.change(schemaDocId, content, owners, null) + return CeramicCliUtils.change(schemaDocId, content, controllers, null) } /** @@ -396,14 +396,14 @@ export class CeramicCliUtils { } /** - * Parse input owners - * @param owners - Input owners + * Parse input controllers + * @param controllers - Input controllers * @private */ - static _parseOwners(owners: string): string[] { - if (owners == null) { + static _parseControllers(controllers: string): string[] { + if (controllers == null) { return [ ] } - return owners.includes(',') ? owners.split(',') : [owners] + return controllers.includes(',') ? controllers.split(',') : [controllers] } } diff --git a/packages/ceramic-common/src/doctype.ts b/packages/ceramic-common/src/doctype.ts index 7a9faa3a37..eef9a9aedf 100644 --- a/packages/ceramic-common/src/doctype.ts +++ b/packages/ceramic-common/src/doctype.ts @@ -42,7 +42,7 @@ export interface AnchorProof { * Document metadata */ export interface DocMetadata { - owners: Array; + controllers: Array; schema?: string; tags?: Array; isUnique?: boolean; @@ -64,7 +64,7 @@ export interface DocParams { */ export interface DocNext { content?: any; - owners?: Array; + controllers?: Array; metadata?: DocMetadata; } @@ -117,8 +117,8 @@ export abstract class Doctype extends EventEmitter { return cloneDeep(next?.metadata ?? metadata) } - get owners(): Array { - return this.metadata.owners + get controllers(): Array { + return this.metadata.controllers } get head(): CID { diff --git a/packages/ceramic-core/src/__tests__/__validation__/doctype.test.ts b/packages/ceramic-core/src/__tests__/__validation__/doctype.test.ts index 07fa0e0a15..1b21a05f5c 100644 --- a/packages/ceramic-core/src/__tests__/__validation__/doctype.test.ts +++ b/packages/ceramic-core/src/__tests__/__validation__/doctype.test.ts @@ -25,7 +25,7 @@ describe('Doctype', () => { const docSchemaState = mock() docSchemaState.content = schema docSchemaState.metadata = { - owners: [], + controllers: [], schema: 'ceramic://1234567' } @@ -40,7 +40,7 @@ describe('Doctype', () => { it('should pass schema validation', async () => { const state = mock() state.metadata = { - owners: [], + controllers: [], schema: 'ceramic://1234567' } state.content = { @@ -54,7 +54,7 @@ describe('Doctype', () => { it('should fail schema validation', async () => { const state = mock() state.metadata = { - owners: [], + controllers: [], schema: 'ceramic://1234567' } state.content = { diff --git a/packages/ceramic-core/src/__tests__/ceramic-api.test.ts b/packages/ceramic-core/src/__tests__/ceramic-api.test.ts index b9e06706fb..c21e775bc7 100644 --- a/packages/ceramic-core/src/__tests__/ceramic-api.test.ts +++ b/packages/ceramic-core/src/__tests__/ceramic-api.test.ts @@ -86,11 +86,11 @@ describe('Ceramic API', () => { it('can load the previous document version', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const docOg = await ceramic.createDocument(DOCTYPE_TILE, { content: { test: 321 }, - metadata: { owners: [owner] } + metadata: { controllers: [controller] } }) // wait for anchor (new version) @@ -129,7 +129,7 @@ describe('Ceramic API', () => { // try to call doctype.change try { - await docV0.change({ content: { test: 'fghj' }, metadata: { owners: docV0.owners } }) + await docV0.change({ content: { test: 'fghj' }, metadata: { controllers: docV0.controllers } }) throw new Error('Should not be able to update version') } catch (e) { expect(e.message).toEqual('The version of the document is readonly. Checkout the latest HEAD in order to update.') @@ -159,16 +159,16 @@ describe('Ceramic API', () => { it('cannot create document with invalid schema', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, - metadata: { owners: [owner] } + metadata: { controllers: [controller] } }) const tileDocParams: TileParams = { metadata: { - schema: schemaDoc.id.toString(), owners: [owner] + schema: schemaDoc.id.toString(), controllers: [controller] }, content: { a: 1 }, } @@ -186,16 +186,16 @@ describe('Ceramic API', () => { it('can create document with valid schema', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, - metadata: { owners: [owner] } + metadata: { controllers: [controller] } }) const tileDocParams: TileParams = { metadata: { - schema: schemaDoc.id.toString(), owners: [owner] + schema: schemaDoc.id.toString(), controllers: [controller] }, content: { a: "test" } } @@ -208,16 +208,16 @@ describe('Ceramic API', () => { it('can create document with invalid schema if validation is not set', async () => { ceramic = await createCeramic({ validateDocs: false }) - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, - metadata: { owners: [owner] } + metadata: { controllers: [controller] } }) const tileDocParams: TileParams = { metadata: { - schema: schemaDoc.id.toString(), owners: [owner] + schema: schemaDoc.id.toString(), controllers: [controller] }, content: { a: 1 }, } @@ -230,24 +230,24 @@ describe('Ceramic API', () => { it('can update schema if content is valid', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const tileDocParams: TileParams = { metadata: { - owners: [owner] + controllers: [controller] }, content: { a: 'x' }, } const doctype = await ceramic.createDocument(DOCTYPE_TILE, tileDocParams) const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, metadata: { - owners: [owner] + controllers: [controller] } }) await doctype.change({ metadata: { - owners: [owner], schema: schemaDoc.id.toString() + controllers: [controller], schema: schemaDoc.id.toString() } }) @@ -260,25 +260,25 @@ describe('Ceramic API', () => { it('cannot update schema if content is not valid', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const tileDocParams: TileParams = { metadata: { - owners: [owner] + controllers: [controller] }, content: { a: 1 }, } const doctype = await ceramic.createDocument(DOCTYPE_TILE, tileDocParams) const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, metadata: { - owners: [owner] + controllers: [controller] } }) try { await doctype.change({ metadata: { - owners: [owner], schema: schemaDoc.id.toString() + controllers: [controller], schema: schemaDoc.id.toString() } }) throw new Error('Should not be able to update the document with invalid content') @@ -292,24 +292,24 @@ describe('Ceramic API', () => { it('can update valid content and schema at the same time', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const tileDocParams: TileParams = { metadata: { - owners: [owner] + controllers: [controller] }, content: { a: 1 }, } const doctype = await ceramic.createDocument(DOCTYPE_TILE, tileDocParams) const schemaDoc = await ceramic.createDocument(DOCTYPE_TILE, { content: stringMapSchema, metadata: { - owners: [owner] + controllers: [controller] } }) await doctype.change({ content: { a: 'x' }, metadata: { - owners: [owner], schema: schemaDoc.id.toString() + controllers: [controller], schema: schemaDoc.id.toString() } }) @@ -322,11 +322,11 @@ describe('Ceramic API', () => { it('can list log records', async () => { ceramic = await createCeramic() - const owner = ceramic.context.did.id + const controller = ceramic.context.did.id const tileDocParams: TileParams = { metadata: { - owners: [owner] + controllers: [controller] }, content: { a: 1 }, } diff --git a/packages/ceramic-core/src/__tests__/ceramic.test.ts b/packages/ceramic-core/src/__tests__/ceramic.test.ts index 1d92f03327..801d7c4dd2 100644 --- a/packages/ceramic-core/src/__tests__/ceramic.test.ts +++ b/packages/ceramic-core/src/__tests__/ceramic.test.ts @@ -133,12 +133,12 @@ describe('Ceramic integration', () => { const ceramic1 = await createCeramic(ipfs1, topic) const ceramic2 = await createCeramic(ipfs2, topic) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id - const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { owners: [owner], tags: ['3id'] } }) + const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { controllers: [controller], tags: ['3id'] } }) // we can't load document from id since nodes are not connected // so we won't find the genesis object from it's CID - const doctype2 = await ceramic2.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { owners: [owner], tags: ['3id'] } },{ applyOnly: true }) + const doctype2 = await ceramic2.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { controllers: [controller], tags: ['3id'] } },{ applyOnly: true }) expect(doctype1.content).toEqual(doctype2.content) expect(doctype2.state).toEqual(expect.objectContaining({ content: { test: 456 } })) await ceramic1.close() @@ -155,10 +155,10 @@ describe('Ceramic integration', () => { const ceramic2 = await createCeramic(ipfs2, topic) const ceramic3 = await createCeramic(ipfs3, topic) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id // ceramic node 2 shouldn't need to have the document open in order to forward the message - const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 789 }, metadata: { owners: [owner], tags: ['3id'] } }, { applyOnly: true }) - const doctype3 = await ceramic3.createDocument(DOCTYPE_TILE, { content: { test: 789 }, metadata: { owners: [owner], tags: ['3id'] } }, { applyOnly: true }) + const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 789 }, metadata: { controllers: [controller], tags: ['3id'] } }, { applyOnly: true }) + const doctype3 = await ceramic3.createDocument(DOCTYPE_TILE, { content: { test: 789 }, metadata: { controllers: [controller], tags: ['3id'] } }, { applyOnly: true }) expect(doctype3.content).toEqual(doctype1.content) await ceramic1.close() await ceramic2.close() @@ -190,16 +190,16 @@ describe('Ceramic integration', () => { }) await ceramic3.setDIDProvider(idw.getDidProvider()) - const owner = idw.id + const controller = idw.id // ceramic node 2 shouldn't need to have the document open in order to forward the message const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 321 }, - metadata: { owners: [owner], tags: ['3id'] } + metadata: { controllers: [controller], tags: ['3id'] } }) const doctype3 = await ceramic3.createDocument(DOCTYPE_TILE, { content: { test: 321 }, - metadata: { owners: [owner], tags: ['3id'] } + metadata: { controllers: [controller], tags: ['3id'] } }, { applyOnly: true }) expect(doctype3.content).toEqual(doctype1.content) @@ -214,7 +214,7 @@ describe('Ceramic integration', () => { }) }) - await doctype1.change({ content: { test: 'abcde' }, metadata: { owners: [owner] } }) + await doctype1.change({ content: { test: 'abcde' }, metadata: { controllers: [controller] } }) await updatePromise expect(doctype1.content).toEqual({ test: 'abcde' }) expect(doctype3.content).toEqual(doctype1.content) @@ -228,9 +228,9 @@ describe('Ceramic integration', () => { const ceramic1 = await createCeramic(ipfs1, topic) const ceramic2 = await createCeramic(ipfs2, topic) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id - const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { owners: [owner], tags: ['3id'] } }) + const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { test: 456 }, metadata: { controllers: [controller], tags: ['3id'] } }) const updatePromise = new Promise(resolve => { let c = 0 @@ -241,7 +241,7 @@ describe('Ceramic integration', () => { }) }) - await doctype1.change({ content: { test: 'abcde' }, metadata: { owners: [owner] } }) + await doctype1.change({ content: { test: 'abcde' }, metadata: { controllers: [controller] } }) await updatePromise const logRecords = await ceramic1.loadDocumentRecords(doctype1.id) diff --git a/packages/ceramic-core/src/__tests__/document.test.ts b/packages/ceramic-core/src/__tests__/document.test.ts index f3d06b0cc2..940680a9ba 100644 --- a/packages/ceramic-core/src/__tests__/document.test.ts +++ b/packages/ceramic-core/src/__tests__/document.test.ts @@ -94,8 +94,8 @@ const anchorUpdate = (doc: Document): Promise => new Promise(resolve => do const create = async (params: TileParams, ceramic: Ceramic, context: Context, opts: DocOpts = {}): Promise => { const { content, metadata } = params - if (!metadata?.owners) { - throw new Error('The owner of the 3ID needs to be specified') + if (!metadata?.controllers) { + throw new Error('The controller of the 3ID needs to be specified') } const record = await TileDoctype.makeGenesis({ content, metadata }, context) @@ -123,7 +123,7 @@ describe('Document', () => { describe('Log logic', () => { const initialContent = { abc: 123, def: 456 } const newContent = { abc: 321, def: 456, gh: 987 } - const owners = ['did:3:bafyasdfasdf'] + const controllers = ['did:3:bafyasdfasdf'] let user: DID let dispatcher: any; let doctypeHandler: TileDoctypeHandler; @@ -173,7 +173,7 @@ describe('Document', () => { }) it('is created correctly', async () => { - const doc = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) expect(doc.content).toEqual(initialContent) expect(dispatcher.register).toHaveBeenCalledWith(doc) @@ -183,7 +183,7 @@ describe('Document', () => { }) it('is loaded correctly', async () => { - const doc1 = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context, { applyOnly: true, skipWait: true }) + const doc1 = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context, { applyOnly: true, skipWait: true }) const doc2 = await Document.load(doc1.id, findHandler, dispatcher, pinStore, context, { skipWait: true }) expect(doc1.id).toEqual(doc2.id) @@ -192,7 +192,7 @@ describe('Document', () => { }) it('handles new head correctly', async () => { - const tmpDoc = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const tmpDoc = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) await anchorUpdate(tmpDoc) const docId = tmpDoc.id const log = tmpDoc.state.log @@ -209,7 +209,7 @@ describe('Document', () => { }) it('it handles versions correctly (valid, invalid, non-existent)', async () => { - const doc = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) let versions = await doc.listVersions() expect(versions).toEqual([]) @@ -219,7 +219,7 @@ describe('Document', () => { versions = await doc.listVersions() expect(versions.length).toEqual(1) - const updateRec = await TileDoctype._makeRecord(doc.doctype, user, newContent, doc.owners) + const updateRec = await TileDoctype._makeRecord(doc.doctype, user, newContent, doc.controllers) versions = await doc.listVersions() expect(versions.length).toEqual(1) @@ -256,13 +256,13 @@ describe('Document', () => { const docV1 = await Document.getVersion(doc, doc.doctype.state.log[1]) expect(docV1.state.log.length).toEqual(2) - expect(docV1.owners).toEqual(owners) + expect(docV1.controllers).toEqual(controllers) expect(docV1.content).toEqual(initialContent) expect(docV1.state.anchorStatus).toEqual(AnchorStatus.ANCHORED) // try to call doctype.change try { - await docV1.doctype.change({ content: doc.content, owners: doc.owners }) + await docV1.doctype.change({ content: doc.content, controllers: doc.controllers }) throw new Error('Should not be able to fetch not anchored version') } catch (e) { expect(e.message).toEqual('The version of the document is readonly. Checkout the latest HEAD in order to update.') @@ -270,10 +270,10 @@ describe('Document', () => { }) it('is updated correctly', async () => { - const doc = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) await anchorUpdate(doc) - const updateRec = await TileDoctype._makeRecord(doc.doctype, user, newContent, doc.owners) + const updateRec = await TileDoctype._makeRecord(doc.doctype, user, newContent, doc.controllers) await doc.applyRecord(updateRec) await anchorUpdate(doc) @@ -284,12 +284,12 @@ describe('Document', () => { it('handles conflict', async () => { const fakeState = { asdf: 2342 } - const doc1 = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc1 = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) const docId = doc1.id await anchorUpdate(doc1) const headPreUpdate = doc1.head - let updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.owners) + let updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.controllers) await doc1.applyRecord(updateRec) await anchorUpdate(doc1) @@ -303,7 +303,7 @@ describe('Document', () => { await new Promise(resolve => setTimeout(resolve, 1)) // TODO - better mock for anchors - updateRec = await TileDoctype._makeRecord(doc2.doctype, user, fakeState, doc2.owners) + updateRec = await TileDoctype._makeRecord(doc2.doctype, user, fakeState, doc2.controllers) await doc2.applyRecord(updateRec) await anchorUpdate(doc2) @@ -324,7 +324,7 @@ describe('Document', () => { describe('Network update logic', () => { const initialContent = { abc: 123, def: 456 } const newContent = { abc: 321, def: 456, gh: 987 } - const owners = ['did:3:bafyasdfasdf'] + const controllers = ['did:3:bafyasdfasdf'] let dispatcher: any; let doctypeHandler: TileDoctypeHandler; @@ -375,12 +375,12 @@ describe('Document', () => { }) it('should announce change to network', async () => { - const doc1 = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc1 = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) expect(dispatcher.publishHead).toHaveBeenCalledTimes(1) expect(dispatcher.publishHead).toHaveBeenCalledWith(doc1.id.toString(), doc1.head, 'tile') await anchorUpdate(doc1) - const updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.owners) + const updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.controllers) await doc1.applyRecord(updateRec) expect(doc1.content).toEqual(newContent) @@ -390,7 +390,7 @@ describe('Document', () => { }) it('documents share updates', async () => { - const doc1 = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc1 = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) await anchorUpdate(doc1) const doc2 = await Document.load(doc1.id, getHandlerFromGenesis, dispatcher, pinStore, context, { skipWait: true }) @@ -398,7 +398,7 @@ describe('Document', () => { doc2.doctype.on('change', resolve) }) - const updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.owners) + const updateRec = await TileDoctype._makeRecord(doc1.doctype, user, newContent, doc1.controllers) await doc1.applyRecord(updateRec) expect(doc1.content).toEqual(newContent) @@ -408,7 +408,7 @@ describe('Document', () => { }) it('should publish head on network request', async () => { - const doc = await create({ content: initialContent, metadata: { owners, tags: ['3id'] } }, ceramic, context) + const doc = await create({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, ceramic, context) expect(dispatcher.publishHead).toHaveBeenCalledTimes(1) expect(dispatcher.publishHead).toHaveBeenNthCalledWith(1, doc.id.toString(), doc.head, 'tile') diff --git a/packages/ceramic-core/src/document.ts b/packages/ceramic-core/src/document.ts index 9b91e0d516..b077e7ca8b 100644 --- a/packages/ceramic-core/src/document.ts +++ b/packages/ceramic-core/src/document.ts @@ -635,10 +635,10 @@ class Document extends EventEmitter { } /** - * Gets document owners + * Gets document controllers */ - get owners (): string[] { - return this._doctype.owners + get controllers (): string[] { + return this._doctype.controllers } /** diff --git a/packages/ceramic-core/src/store/__tests__/level-state-store.test.ts b/packages/ceramic-core/src/store/__tests__/level-state-store.test.ts index 94d2774a0f..505a3b0e05 100644 --- a/packages/ceramic-core/src/store/__tests__/level-state-store.test.ts +++ b/packages/ceramic-core/src/store/__tests__/level-state-store.test.ts @@ -49,7 +49,7 @@ const state = { doctype: 'tile', content: {num: 0}, metadata: { - owners: [''] + controllers: [''] }, signature: SignatureStatus.GENESIS, anchorStatus: AnchorStatus.NOT_REQUESTED, diff --git a/packages/ceramic-core/src/store/__tests__/pin-store.test.ts b/packages/ceramic-core/src/store/__tests__/pin-store.test.ts index 7c77ff3927..1071e33472 100644 --- a/packages/ceramic-core/src/store/__tests__/pin-store.test.ts +++ b/packages/ceramic-core/src/store/__tests__/pin-store.test.ts @@ -29,7 +29,7 @@ const state = { doctype: 'fake', content: {num: 0}, metadata: { - owners: [''] + controllers: [''] }, signature: SignatureStatus.GENESIS, anchorStatus: AnchorStatus.NOT_REQUESTED, diff --git a/packages/ceramic-core/src/store/__tests__/state-store-integration.test.ts b/packages/ceramic-core/src/store/__tests__/state-store-integration.test.ts index c7e6573054..32365caf06 100644 --- a/packages/ceramic-core/src/store/__tests__/state-store-integration.test.ts +++ b/packages/ceramic-core/src/store/__tests__/state-store-integration.test.ts @@ -139,7 +139,7 @@ const anchorUpdate = (doctype: Doctype): Promise => new Promise(resolve => describe('Level data store', () => { const initialContent = { abc: 123, def: 456 } - const owners = ['did:3:bafyasdfasdf'] + const controllers = ['did:3:bafyasdfasdf'] let store: PinStore let dispatcher: Dispatcher @@ -196,7 +196,7 @@ describe('Level data store', () => { }) it('pins document correctly without IPFS pinning', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) @@ -214,7 +214,7 @@ describe('Level data store', () => { }) it('pins not anchored document correctly with IPFS pinning', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context, { @@ -232,7 +232,7 @@ describe('Level data store', () => { }) it('pins document correctly with IPFS pinning', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) @@ -249,7 +249,7 @@ describe('Level data store', () => { }) it('removes pinned document', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) @@ -263,7 +263,7 @@ describe('Level data store', () => { }) it('skips removing unpinned document', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) @@ -274,7 +274,7 @@ describe('Level data store', () => { }) it('lists pinned documents', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) @@ -299,7 +299,7 @@ describe('Level data store', () => { }) it('lists empty for unpinned document', async () => { - const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { owners, tags: ['3id'] } }, context) + const genesis = await TileDoctype.makeGenesis({ content: initialContent, metadata: { controllers, tags: ['3id'] } }, context) const genesisCid = await dispatcher.storeRecord(genesis) const docId = new DocID('tile', genesisCid) const doc = await Document.create(docId, doctypeHandler, dispatcher, store, context) diff --git a/packages/ceramic-doctype-account-link/src/__tests__/__snapshots__/account-link-doctype.test.ts.snap b/packages/ceramic-doctype-account-link/src/__tests__/__snapshots__/account-link-doctype.test.ts.snap index 2c5a016d6c..0a29c176f2 100644 --- a/packages/ceramic-doctype-account-link/src/__tests__/__snapshots__/account-link-doctype.test.ts.snap +++ b/packages/ceramic-doctype-account-link/src/__tests__/__snapshots__/account-link-doctype.test.ts.snap @@ -131,7 +131,7 @@ Object { }, ], "metadata": Object { - "owners": Array [ + "controllers": Array [ "0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1", ], }, @@ -190,7 +190,7 @@ Object { }, ], "metadata": Object { - "owners": Array [ + "controllers": Array [ "0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1", ], }, @@ -289,7 +289,7 @@ Object { }, ], "metadata": Object { - "owners": Array [ + "controllers": Array [ "0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1", ], }, diff --git a/packages/ceramic-doctype-account-link/src/__tests__/account-link-doctype.test.ts b/packages/ceramic-doctype-account-link/src/__tests__/account-link-doctype.test.ts index 58db05bfa2..bab56586f5 100644 --- a/packages/ceramic-doctype-account-link/src/__tests__/account-link-doctype.test.ts +++ b/packages/ceramic-doctype-account-link/src/__tests__/account-link-doctype.test.ts @@ -20,7 +20,7 @@ const FAKE_CID_3 = new CID('bafybeig6xv5nwphfmvcnektpnojts55jqcuam7bmye2pb54adnr const FAKE_CID_4 = new CID('bafybeig6xv5nwphfmvcnektpnojts66jqcuam7bmye2pb54adnrtccjlsu') const RECORDS = { - genesis: { doctype: 'account-link', header: { owners: [ '0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1' ] } }, + genesis: { doctype: 'account-link', header: { controllers: [ '0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1' ] } }, r1: { desiredContent: { version: 1, @@ -38,7 +38,7 @@ const RECORDS = { timestamp: 1585919920 }, "header": { - "owners": [ + "controllers": [ "0x25954ef14cebbc9af3d71132489a9cfe87043f20@eip155:1" ] }, @@ -104,25 +104,25 @@ describe('AccountLinkHandler', () => { it('throws an error if genesis record has no metadata specified', async () => { const content: any = undefined - const owners: any = undefined - await expect(AccountLinkDoctype.makeGenesis({ content, owners })).rejects.toThrow(/Metadata must be specified/i) + const controllers: any = undefined + await expect(AccountLinkDoctype.makeGenesis({ content, controllers })).rejects.toThrow(/Metadata must be specified/i) }) - it('throws an error if genesis record has no owners specified', async () => { + it('throws an error if genesis record has no controllers specified', async () => { const content: any = undefined - await expect(AccountLinkDoctype.makeGenesis({ content, metadata: {} })).rejects.toThrow(/Owner must be specified/i) + await expect(AccountLinkDoctype.makeGenesis({ content, metadata: {} })).rejects.toThrow(/Controller must be specified/i) }) - it('throws an error if genesis record has more than one owner', async () => { + it('throws an error if genesis record has more than one controller', async () => { const content: any = undefined - const owners = [...RECORDS.genesis.header.owners, '0x25954ef14cebbc9af3d79876489a9cfe87043f20@eip155:1'] - await expect(AccountLinkDoctype.makeGenesis({ content, metadata: { owners } })).rejects.toThrow(/Exactly one owner/i) + const controllers = [...RECORDS.genesis.header.controllers, '0x25954ef14cebbc9af3d79876489a9cfe87043f20@eip155:1'] + await expect(AccountLinkDoctype.makeGenesis({ content, metadata: { controllers } })).rejects.toThrow(/Exactly one controller/i) }) - it('throws an error if genesis record has owner not in CAIP-10 format', async () => { + it('throws an error if genesis record has controller not in CAIP-10 format', async () => { const content: any = undefined - const owners = RECORDS.genesis.header.owners.map(address => address.split('@')[0]) - await expect(AccountLinkDoctype.makeGenesis({ content, metadata: { owners } })).rejects.toThrow(/According to CAIP-10/i) + const controllers = RECORDS.genesis.header.controllers.map(address => address.split('@')[0]) + await expect(AccountLinkDoctype.makeGenesis({ content, metadata: { controllers } })).rejects.toThrow(/According to CAIP-10/i) }) it('applies genesis record correctly', async () => { @@ -149,7 +149,7 @@ describe('AccountLinkHandler', () => { await expect(handler.applyRecord(RECORDS.r1.record, FAKE_CID_2, context, state)).rejects.toThrow(/Invalid proof/i) }) - it('throws an error of the proof doesn\'t match the owner', async () => { + it('throws an error of the proof doesn\'t match the controller', async () => { const badAddressRecord = cloneDeep(RECORDS.r1.record) badAddressRecord.content.address = '0xffffffffffffffffffffffffffffffffffffffff' const state = await handler.applyRecord(RECORDS.genesis, FAKE_CID_1, context) diff --git a/packages/ceramic-doctype-account-link/src/account-link-doctype-handler.ts b/packages/ceramic-doctype-account-link/src/account-link-doctype-handler.ts index 9429b3a45f..ac2ab9de64 100644 --- a/packages/ceramic-doctype-account-link/src/account-link-doctype-handler.ts +++ b/packages/ceramic-doctype-account-link/src/account-link-doctype-handler.ts @@ -95,8 +95,8 @@ export class AccountLinkDoctypeHandler implements DoctypeHandler { it('applies genesis record correctly', async () => { const tileHandler = new TileDoctypeHandler() - const record = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id], tags: ['3id'] } }, { did }) + const record = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id], tags: ['3id'] } }, { did }) await context.ipfs.dag.put(record, FAKE_CID_1) const payload = dagCBOR.util.deserialize(record.linkedBlock) @@ -220,7 +220,7 @@ describe('ThreeIdHandler', () => { it('applies signed record correctly', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id], tags: ['3id'] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id], tags: ['3id'] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) @@ -245,7 +245,7 @@ describe('ThreeIdHandler', () => { it('throws error if record signed by wrong DID', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: ['did:3:fake'], tags: ['3id'] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: ['did:3:fake'], tags: ['3id'] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) @@ -257,7 +257,7 @@ describe('ThreeIdHandler', () => { it('applies anchor record correctly', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id], tags: ['3id'] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id], tags: ['3id'] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) diff --git a/packages/ceramic-doctype-tile/src/__tests__/tile-doctype.test.ts b/packages/ceramic-doctype-tile/src/__tests__/tile-doctype.test.ts index 77b56a7bfa..db46c15c76 100644 --- a/packages/ceramic-doctype-tile/src/__tests__/tile-doctype.test.ts +++ b/packages/ceramic-doctype-tile/src/__tests__/tile-doctype.test.ts @@ -26,7 +26,7 @@ const FAKE_CID_3 = new CID('bafybeig6xv5nwphfmvcnektpnojts55jqcuam7bmye2pb54adnr const FAKE_CID_4 = new CID('bafybeig6xv5nwphfmvcnektpnojts66jqcuam7bmye2pb54adnrtccjlsu') const RECORDS = { - genesis: { doctype: 'tile', header: { owners: [ 'did:3:bafyasdfasdf' ] }, data: { much: 'data' } }, + genesis: { doctype: 'tile', header: { controllers: [ 'did:3:bafyasdfasdf' ] }, data: { much: 'data' } }, genesisGenerated: { "jws": { "payload": "bbbb", @@ -43,7 +43,7 @@ const RECORDS = { "much": "data" }, "header": { - "owners": [ + "controllers": [ "did:3:bafyasdfasdf" ] }, @@ -174,7 +174,7 @@ describe('TileDoctypeHandler', () => { }) it('makes genesis record correctly', async () => { - const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) + const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) expect(record1).toBeDefined() @@ -196,15 +196,15 @@ describe('TileDoctypeHandler', () => { }) it('creates genesis records deterministically by default', async () => { - const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) - const record2 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) + const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) + const record2 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) expect(record1).toEqual(record2) }) it('creates a unique genesis record if specified', async () => { - const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id], isUnique: true } }, { did }) - const record2 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id], isUnique: true } }, { did } ) + const record1 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id], isUnique: true } }, { did }) + const record2 = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id], isUnique: true } }, { did } ) expect(record1).not.toEqual(record2) }) @@ -212,7 +212,7 @@ describe('TileDoctypeHandler', () => { it('applies genesis record correctly', async () => { const tileHandler = new TileDoctypeHandler() - const record = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) + const record = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) await context.ipfs.dag.put(record, FAKE_CID_1) const payload = dagCBOR.util.deserialize(record.linkedBlock) @@ -242,7 +242,7 @@ describe('TileDoctypeHandler', () => { it('applies signed record correctly', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) @@ -267,7 +267,7 @@ describe('TileDoctypeHandler', () => { it('throws error if record signed by wrong DID', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: ['did:3:fake'] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: ['did:3:fake'] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) @@ -279,7 +279,7 @@ describe('TileDoctypeHandler', () => { it('applies anchor record correctly', async () => { const tileDoctypeHandler = new TileDoctypeHandler() - const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { owners: [did.id] } }, { did }) + const genesisRecord = await TileDoctype.makeGenesis({ content: RECORDS.genesis.data, metadata: { controllers: [did.id] } }, { did }) await context.ipfs.dag.put(genesisRecord, FAKE_CID_1) const payload = dagCBOR.util.deserialize(genesisRecord.linkedBlock) diff --git a/packages/ceramic-doctype-tile/src/tile-doctype-handler.ts b/packages/ceramic-doctype-tile/src/tile-doctype-handler.ts index eb4b76d36b..cae04b4f55 100644 --- a/packages/ceramic-doctype-tile/src/tile-doctype-handler.ts +++ b/packages/ceramic-doctype-tile/src/tile-doctype-handler.ts @@ -82,7 +82,7 @@ export class TileDoctypeHandler implements DoctypeHandler { const isSigned = DoctypeUtils.isSignedRecord(record) if (isSigned) { payload = (await context.ipfs.dag.get(record.link)).value - await this._verifySignature(record, context, payload.header.owners[0]) + await this._verifySignature(record, context, payload.header.controllers[0]) } else if (payload.data !== null) { throw Error('Genesis record with contents should always be signed') } @@ -108,7 +108,7 @@ export class TileDoctypeHandler implements DoctypeHandler { * @private */ async _applySigned(record: any, cid: CID, state: DocState, context: Context): Promise { - await this._verifySignature(record, context, state.metadata.owners[0]) + await this._verifySignature(record, context, state.metadata.controllers[0]) const payload = (await context.ipfs.dag.get(record.link)).value if (!payload.id.equals(state.log[0])) { @@ -123,8 +123,8 @@ export class TileDoctypeHandler implements DoctypeHandler { content: jsonpatch.applyPatch(state.content, payload.data).newDocument, } } - if (payload.header?.owners) { - newState.next.metadata = { ...state.metadata, owners: payload.header.owners } + if (payload.header?.controllers) { + newState.next.metadata = { ...state.metadata, controllers: payload.header.controllers } } return newState } diff --git a/packages/ceramic-doctype-tile/src/tile-doctype.ts b/packages/ceramic-doctype-tile/src/tile-doctype.ts index 95b09c940b..603b80ceec 100644 --- a/packages/ceramic-doctype-tile/src/tile-doctype.ts +++ b/packages/ceramic-doctype-tile/src/tile-doctype.ts @@ -32,7 +32,7 @@ export class TileDoctype extends Doctype { throw new Error('No DID authenticated') } - const updateRecord = await TileDoctype._makeRecord(this, this.context.did, params.content, params.metadata?.owners, params.metadata?.schema) + const updateRecord = await TileDoctype._makeRecord(this, this.context.did, params.content, params.metadata?.controllers, params.metadata?.schema) const updated = await this.context.api.applyRecord(this.id.toString(), updateRecord, opts) this.state = updated.state } @@ -60,7 +60,7 @@ export class TileDoctype extends Doctype { * @param opts - Initialization options */ static async makeGenesis(params: DocParams, context?: Context, opts: DocOpts = {}): Promise> { - const metadata = params.metadata? params.metadata : { owners: [] } + const metadata = params.metadata? params.metadata : { controllers: [] } // check for DID and authentication if (!context.did || !context.did.authenticated) { @@ -72,14 +72,14 @@ export class TileDoctype extends Doctype { unique = base64Encode(randomBytes(12)) } - const { owners } = metadata - if (!owners || owners.length === 0) { - metadata.owners = [context.did.id] + const { controllers } = metadata + if (!controllers || controllers.length === 0) { + metadata.controllers = [context.did.id] } const { content } = params const record = { doctype: DOCTYPE, data: content, header: metadata, unique } - return content ? TileDoctype._signDagJWS(record, context.did, metadata.owners[0]) : record + return content ? TileDoctype._signDagJWS(record, context.did, metadata.controllers[0]) : record } /** @@ -87,11 +87,11 @@ export class TileDoctype extends Doctype { * @param doctype - Tile doctype instance * @param did - DID instance * @param newContent - New context - * @param newOwners - New owners + * @param newControllers - New controllers * @param schema - New schema ID * @private */ - static async _makeRecord(doctype: Doctype, did: DID, newContent: any, newOwners?: string[], schema?: string): Promise { + static async _makeRecord(doctype: Doctype, did: DID, newContent: any, newControllers?: string[], schema?: string): Promise { if (did == null || !did.authenticated) { throw new Error('No DID authenticated') } @@ -101,8 +101,8 @@ export class TileDoctype extends Doctype { header.schema = schema } - if (newOwners) { - header.owners = newOwners + if (newControllers) { + header.controllers = newControllers } if (newContent == null) { @@ -111,21 +111,21 @@ export class TileDoctype extends Doctype { const patch = jsonpatch.compare(doctype.content, newContent) const record = { header, data: patch, prev: doctype.head, id: doctype.state.log[0] } - return TileDoctype._signDagJWS(record, did, doctype.owners[0]) + return TileDoctype._signDagJWS(record, did, doctype.controllers[0]) } /** * Sign Tile record * @param did - DID instance * @param record - Record to be signed - * @param owner - Owner + * @param controller - Controller * @private */ - static async _signDagJWS(record: any, did: DID, owner: string): Promise { + static async _signDagJWS(record: any, did: DID, controller: string): Promise { if (did == null || !did.authenticated) { throw new Error('No user authenticated') } - return did.createDagJWS(record, { did: owner }) + return did.createDagJWS(record, { did: controller }) } } From 349990ddb42cefcef189d78c4c4450042395baa9 Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Fri, 23 Oct 2020 14:28:47 -0400 Subject: [PATCH 2/4] update docs --- docs/api/assets/js/search.json | 2 +- docs/api/classes/accountlinkdoctype.html | 54 +--- .../classes/accountlinkdoctypehandler.html | 8 +- docs/api/classes/anchorservice.html | 4 +- docs/api/classes/anchorservicefactory.html | 4 +- docs/api/classes/ceramic.html | 64 ++-- docs/api/classes/ceramicclient.html | 48 +-- docs/api/classes/ceramiccliutils.html | 54 ++-- docs/api/classes/ceramicdaemon.html | 32 +- docs/api/classes/dispatcher.html | 22 +- docs/api/classes/doctype.html | 68 ++--- docs/api/classes/doctypeutils.html | 240 +-------------- docs/api/classes/document.html | 152 +++++----- docs/api/classes/emptytokenerror.html | 2 +- docs/api/classes/ethereumanchorservice.html | 6 +- docs/api/classes/ipfspinning.html | 16 +- docs/api/classes/levelstatestore.html | 34 +-- docs/api/classes/loggerprovider.html | 6 +- docs/api/classes/logtofiles.html | 2 +- docs/api/classes/mockanchorservice.html | 6 +- docs/api/classes/pinningaggregation.html | 12 +- docs/api/classes/pinstore.html | 30 +- docs/api/classes/pinstorefactory.html | 10 +- docs/api/classes/powergatepinning.html | 20 +- docs/api/classes/tiledoctype.html | 54 +--- docs/api/classes/tiledoctypehandler.html | 10 +- docs/api/classes/unknownpinningservice.html | 2 +- docs/api/classes/utils.html | 10 +- docs/api/enums/anchorstatus.html | 10 +- docs/api/enums/jobstatus.html | 12 +- docs/api/enums/msgtype.html | 6 +- docs/api/enums/signaturestatus.html | 6 +- docs/api/globals.html | 278 ++++++++++++++---- docs/api/index.html | 24 +- docs/api/interfaces/accountlinkparams.html | 4 +- docs/api/interfaces/anchorproof.html | 10 +- docs/api/interfaces/anchorrecord.html | 6 +- .../api/interfaces/anchorserviceresponse.html | 8 +- docs/api/interfaces/ceramicapi.html | 40 +-- docs/api/interfaces/ceramicconfig.html | 24 +- docs/api/interfaces/ciddoc.html | 4 +- docs/api/interfaces/cliconfig.html | 4 +- docs/api/interfaces/context.html | 12 +- docs/api/interfaces/createopts.html | 24 +- docs/api/interfaces/docmetadata.html | 26 +- docs/api/interfaces/docnext.html | 24 +- docs/api/interfaces/docopts.html | 4 +- docs/api/interfaces/docparams.html | 2 +- docs/api/interfaces/docstate.html | 18 +- docs/api/interfaces/doctypeconstructor.html | 4 +- docs/api/interfaces/doctypehandler.html | 6 +- docs/api/interfaces/ethnetwork.html | 10 +- docs/api/interfaces/httplog.html | 4 +- docs/api/interfaces/logmessage.html | 10 +- docs/api/interfaces/options.html | 8 +- docs/api/interfaces/pinapi.html | 18 +- docs/api/interfaces/pinning.html | 8 +- docs/api/interfaces/pinningstatic.html | 4 +- docs/api/interfaces/statestore.html | 30 +- docs/api/interfaces/tileparams.html | 4 +- 60 files changed, 774 insertions(+), 850 deletions(-) diff --git a/docs/api/assets/js/search.json b/docs/api/assets/js/search.json index 8da675b68d..0b9c208982 100644 --- a/docs/api/assets/js/search.json +++ b/docs/api/assets/js/search.json @@ -1 +1 @@ -{"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Ceramic","url":"classes/ceramic.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"loadDocument","url":"classes/ceramic.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":2,"kind":256,"name":"ResolverRegistry","url":"interfaces/resolverregistry.html","classes":"tsd-kind-interface"},{"id":3,"kind":64,"name":"wrapDocument","url":"globals.html#wrapdocument","classes":"tsd-kind-function"},{"id":4,"kind":128,"name":"LogToFiles","url":"classes/logtofiles.html","classes":"tsd-kind-class"},{"id":5,"kind":2048,"name":"main","url":"classes/logtofiles.html#main","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LogToFiles"},{"id":6,"kind":256,"name":"CreateOpts","url":"interfaces/createopts.html","classes":"tsd-kind-interface"},{"id":7,"kind":1024,"name":"ipfsHost","url":"interfaces/createopts.html#ipfshost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":8,"kind":1024,"name":"ipfs","url":"interfaces/createopts.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":9,"kind":1024,"name":"port","url":"interfaces/createopts.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":10,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/createopts.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":11,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/createopts.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":12,"kind":1024,"name":"stateStorePath","url":"interfaces/createopts.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":13,"kind":1024,"name":"validateDocs","url":"interfaces/createopts.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":14,"kind":1024,"name":"pinning","url":"interfaces/createopts.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":15,"kind":1024,"name":"gateway","url":"interfaces/createopts.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":16,"kind":1024,"name":"debug","url":"interfaces/createopts.html#debug","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":17,"kind":1024,"name":"logToFiles","url":"interfaces/createopts.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":18,"kind":1024,"name":"logPath","url":"interfaces/createopts.html#logpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":19,"kind":256,"name":"HttpLog","url":"interfaces/httplog.html","classes":"tsd-kind-interface"},{"id":20,"kind":1024,"name":"request","url":"interfaces/httplog.html#request","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":21,"kind":1024,"name":"response","url":"interfaces/httplog.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":22,"kind":128,"name":"CeramicDaemon","url":"classes/ceramicdaemon.html","classes":"tsd-kind-class"},{"id":23,"kind":512,"name":"constructor","url":"classes/ceramicdaemon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":24,"kind":1024,"name":"ceramic","url":"classes/ceramicdaemon.html#ceramic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":25,"kind":2048,"name":"create","url":"classes/ceramicdaemon.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicDaemon"},{"id":26,"kind":2048,"name":"registerAPIPaths","url":"classes/ceramicdaemon.html#registerapipaths","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":27,"kind":2048,"name":"_buildHttpLog","url":"classes/ceramicdaemon.html#_buildhttplog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":28,"kind":2048,"name":"createDocFromGenesis","url":"classes/ceramicdaemon.html#createdocfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":29,"kind":2048,"name":"show","url":"classes/ceramicdaemon.html#show","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":30,"kind":2048,"name":"state","url":"classes/ceramicdaemon.html#state","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":31,"kind":2048,"name":"versions","url":"classes/ceramicdaemon.html#versions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":32,"kind":2048,"name":"records","url":"classes/ceramicdaemon.html#records","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":33,"kind":2048,"name":"applyRecord","url":"classes/ceramicdaemon.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":34,"kind":2048,"name":"pinDocument","url":"classes/ceramicdaemon.html#pindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":35,"kind":2048,"name":"unpinDocument","url":"classes/ceramicdaemon.html#unpindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":36,"kind":2048,"name":"listPinned","url":"classes/ceramicdaemon.html#listpinned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":37,"kind":2048,"name":"_notSupported","url":"classes/ceramicdaemon.html#_notsupported","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":38,"kind":2048,"name":"close","url":"classes/ceramicdaemon.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":39,"kind":32,"name":"DEFAULT_PORT","url":"globals.html#default_port","classes":"tsd-kind-variable"},{"id":40,"kind":64,"name":"toApiPath","url":"globals.html#toapipath","classes":"tsd-kind-function"},{"id":41,"kind":32,"name":"DEFAULT_ANCHOR_SERVICE_URL","url":"globals.html#default_anchor_service_url","classes":"tsd-kind-variable"},{"id":42,"kind":256,"name":"CliConfig","url":"interfaces/cliconfig.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"seed","url":"interfaces/cliconfig.html#seed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":44,"kind":1024,"name":"ceramicHost","url":"interfaces/cliconfig.html#ceramichost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":45,"kind":128,"name":"CeramicCliUtils","url":"classes/ceramiccliutils.html","classes":"tsd-kind-class"},{"id":46,"kind":2048,"name":"createDaemon","url":"classes/ceramiccliutils.html#createdaemon","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":47,"kind":2048,"name":"createDoc","url":"classes/ceramiccliutils.html#createdoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":48,"kind":2048,"name":"change","url":"classes/ceramiccliutils.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":49,"kind":2048,"name":"show","url":"classes/ceramiccliutils.html#show","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":50,"kind":2048,"name":"state","url":"classes/ceramiccliutils.html#state","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":51,"kind":2048,"name":"watch","url":"classes/ceramiccliutils.html#watch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":52,"kind":2048,"name":"versions","url":"classes/ceramiccliutils.html#versions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":53,"kind":2048,"name":"schemaCreateDoc","url":"classes/ceramiccliutils.html#schemacreatedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":54,"kind":2048,"name":"schemaChangeDoc","url":"classes/ceramiccliutils.html#schemachangedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":55,"kind":2048,"name":"pinAdd","url":"classes/ceramiccliutils.html#pinadd","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":56,"kind":2048,"name":"pinRm","url":"classes/ceramiccliutils.html#pinrm","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":57,"kind":2048,"name":"pinLs","url":"classes/ceramiccliutils.html#pinls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":58,"kind":2048,"name":"showConfig","url":"classes/ceramiccliutils.html#showconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":59,"kind":2048,"name":"setConfig","url":"classes/ceramiccliutils.html#setconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":60,"kind":2048,"name":"unsetConfig","url":"classes/ceramiccliutils.html#unsetconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":61,"kind":32,"name":"fs","url":"globals.html#fs","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"PREFIX_REGEX","url":"globals.html#prefix_regex","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"DEFAULT_CLI_CONFIG_FILE","url":"globals.html#default_cli_config_file","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"DEFAULT_PINNING_STORE_PATH","url":"globals.html#default_pinning_store_path","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"DEFAULT_CLI_CONFIG_PATH","url":"globals.html#default_cli_config_path","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"schemas","url":"globals.html#schemas","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"pin","url":"globals.html#pin","classes":"tsd-kind-variable"},{"id":68,"kind":32,"name":"config","url":"globals.html#config","classes":"tsd-kind-variable"},{"id":69,"kind":256,"name":"PinApi","url":"interfaces/pinapi.html","classes":"tsd-kind-interface"},{"id":70,"kind":2048,"name":"add","url":"interfaces/pinapi.html#add","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":71,"kind":2048,"name":"rm","url":"interfaces/pinapi.html#rm","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":72,"kind":2048,"name":"ls","url":"interfaces/pinapi.html#ls","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":73,"kind":256,"name":"CeramicApi","url":"interfaces/ceramicapi.html","classes":"tsd-kind-interface"},{"id":74,"kind":1024,"name":"pin","url":"interfaces/ceramicapi.html#pin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":75,"kind":1024,"name":"did","url":"interfaces/ceramicapi.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":76,"kind":2048,"name":"addDoctypeHandler","url":"interfaces/ceramicapi.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":77,"kind":2048,"name":"findDoctypeHandler","url":"interfaces/ceramicapi.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":78,"kind":2048,"name":"createDocument","url":"interfaces/ceramicapi.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":79,"kind":2048,"name":"createDocumentFromGenesis","url":"interfaces/ceramicapi.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":80,"kind":2048,"name":"loadDocument","url":"interfaces/ceramicapi.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":81,"kind":2048,"name":"loadDocumentRecords","url":"interfaces/ceramicapi.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":82,"kind":2048,"name":"listVersions","url":"interfaces/ceramicapi.html#listversions","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":83,"kind":2048,"name":"applyRecord","url":"interfaces/ceramicapi.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":84,"kind":2048,"name":"setDIDProvider","url":"interfaces/ceramicapi.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":85,"kind":2048,"name":"close","url":"interfaces/ceramicapi.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":86,"kind":256,"name":"Context","url":"interfaces/context.html","classes":"tsd-kind-interface"},{"id":87,"kind":1024,"name":"did","url":"interfaces/context.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":88,"kind":1024,"name":"ipfs","url":"interfaces/context.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":89,"kind":1024,"name":"resolver","url":"interfaces/context.html#resolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":90,"kind":1024,"name":"provider","url":"interfaces/context.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":91,"kind":1024,"name":"anchorService","url":"interfaces/context.html#anchorservice","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":92,"kind":1024,"name":"api","url":"interfaces/context.html#api","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":93,"kind":128,"name":"DoctypeUtils","url":"classes/doctypeutils.html","classes":"tsd-kind-class"},{"id":94,"kind":2048,"name":"createDocIdFromGenesis","url":"classes/doctypeutils.html#createdocidfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":95,"kind":2048,"name":"createDocIdFromBase","url":"classes/doctypeutils.html#createdocidfrombase","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":96,"kind":2048,"name":"normalizeDocId","url":"classes/doctypeutils.html#normalizedocid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":97,"kind":2048,"name":"getGenesis","url":"classes/doctypeutils.html#getgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":98,"kind":2048,"name":"getBaseDocId","url":"classes/doctypeutils.html#getbasedocid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":99,"kind":2048,"name":"getVersionId","url":"classes/doctypeutils.html#getversionid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":100,"kind":2048,"name":"serializeRecord","url":"classes/doctypeutils.html#serializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":101,"kind":2048,"name":"deserializeRecord","url":"classes/doctypeutils.html#deserializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":102,"kind":2048,"name":"serializeState","url":"classes/doctypeutils.html#serializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":103,"kind":2048,"name":"deserializeState","url":"classes/doctypeutils.html#deserializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":104,"kind":2048,"name":"makeReadOnly","url":"classes/doctypeutils.html#makereadonly","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"DoctypeUtils"},{"id":105,"kind":2048,"name":"convertRecordToDTO","url":"classes/doctypeutils.html#convertrecordtodto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":106,"kind":2048,"name":"isSignedRecordDTO","url":"classes/doctypeutils.html#issignedrecorddto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":107,"kind":2048,"name":"isSignedRecord","url":"classes/doctypeutils.html#issignedrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":108,"kind":2048,"name":"isAnchorRecord","url":"classes/doctypeutils.html#isanchorrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":109,"kind":4,"name":"SignatureStatus","url":"enums/signaturestatus.html","classes":"tsd-kind-enum"},{"id":110,"kind":16,"name":"GENESIS","url":"enums/signaturestatus.html#genesis","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":111,"kind":16,"name":"PARTIAL","url":"enums/signaturestatus.html#partial","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":112,"kind":16,"name":"SIGNED","url":"enums/signaturestatus.html#signed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":113,"kind":4,"name":"AnchorStatus","url":"enums/anchorstatus.html","classes":"tsd-kind-enum"},{"id":114,"kind":16,"name":"NOT_REQUESTED","url":"enums/anchorstatus.html#not_requested","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":115,"kind":16,"name":"PENDING","url":"enums/anchorstatus.html#pending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":116,"kind":16,"name":"PROCESSING","url":"enums/anchorstatus.html#processing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":117,"kind":16,"name":"ANCHORED","url":"enums/anchorstatus.html#anchored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":118,"kind":16,"name":"FAILED","url":"enums/anchorstatus.html#failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":119,"kind":256,"name":"AnchorRecord","url":"interfaces/anchorrecord.html","classes":"tsd-kind-interface"},{"id":120,"kind":1024,"name":"prev","url":"interfaces/anchorrecord.html#prev","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":121,"kind":1024,"name":"proof","url":"interfaces/anchorrecord.html#proof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":122,"kind":1024,"name":"path","url":"interfaces/anchorrecord.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":123,"kind":256,"name":"AnchorProof","url":"interfaces/anchorproof.html","classes":"tsd-kind-interface"},{"id":124,"kind":1024,"name":"chainId","url":"interfaces/anchorproof.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":125,"kind":1024,"name":"blockNumber","url":"interfaces/anchorproof.html#blocknumber","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":126,"kind":1024,"name":"blockTimestamp","url":"interfaces/anchorproof.html#blocktimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":127,"kind":1024,"name":"txHash","url":"interfaces/anchorproof.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":128,"kind":1024,"name":"root","url":"interfaces/anchorproof.html#root","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":129,"kind":256,"name":"DocMetadata","url":"interfaces/docmetadata.html","classes":"tsd-kind-interface"},{"id":130,"kind":1024,"name":"owners","url":"interfaces/docmetadata.html#owners","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":131,"kind":1024,"name":"schema","url":"interfaces/docmetadata.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":132,"kind":1024,"name":"tags","url":"interfaces/docmetadata.html#tags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":133,"kind":1024,"name":"isUnique","url":"interfaces/docmetadata.html#isunique","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":134,"kind":256,"name":"DocParams","url":"interfaces/docparams.html","classes":"tsd-kind-interface"},{"id":135,"kind":1024,"name":"metadata","url":"interfaces/docparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocParams"},{"id":136,"kind":256,"name":"DocNext","url":"interfaces/docnext.html","classes":"tsd-kind-interface"},{"id":137,"kind":1024,"name":"content","url":"interfaces/docnext.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":138,"kind":1024,"name":"owners","url":"interfaces/docnext.html#owners","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":139,"kind":1024,"name":"metadata","url":"interfaces/docnext.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":140,"kind":256,"name":"DocState","url":"interfaces/docstate.html","classes":"tsd-kind-interface"},{"id":141,"kind":1024,"name":"doctype","url":"interfaces/docstate.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":142,"kind":1024,"name":"content","url":"interfaces/docstate.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":143,"kind":1024,"name":"next","url":"interfaces/docstate.html#next","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":144,"kind":1024,"name":"metadata","url":"interfaces/docstate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":145,"kind":1024,"name":"signature","url":"interfaces/docstate.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":146,"kind":1024,"name":"anchorStatus","url":"interfaces/docstate.html#anchorstatus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":147,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/docstate.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":148,"kind":1024,"name":"anchorProof","url":"interfaces/docstate.html#anchorproof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":149,"kind":1024,"name":"log","url":"interfaces/docstate.html#log","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":150,"kind":256,"name":"DocOpts","url":"interfaces/docopts.html","classes":"tsd-kind-interface"},{"id":151,"kind":1024,"name":"applyOnly","url":"interfaces/docopts.html#applyonly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":152,"kind":1024,"name":"skipWait","url":"interfaces/docopts.html#skipwait","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":153,"kind":128,"name":"Doctype","url":"classes/doctype.html","classes":"tsd-kind-class"},{"id":154,"kind":512,"name":"constructor","url":"classes/doctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Doctype"},{"id":155,"kind":262144,"name":"id","url":"classes/doctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":156,"kind":262144,"name":"doctype","url":"classes/doctype.html#doctype-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":157,"kind":262144,"name":"content","url":"classes/doctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":158,"kind":262144,"name":"metadata","url":"classes/doctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":159,"kind":262144,"name":"owners","url":"classes/doctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":160,"kind":262144,"name":"head","url":"classes/doctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":161,"kind":262144,"name":"state","url":"classes/doctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":162,"kind":262144,"name":"context","url":"classes/doctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":163,"kind":2048,"name":"change","url":"classes/doctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Doctype"},{"id":164,"kind":2048,"name":"addListener","url":"classes/doctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":165,"kind":2048,"name":"on","url":"classes/doctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":166,"kind":2048,"name":"once","url":"classes/doctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":167,"kind":2048,"name":"removeListener","url":"classes/doctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":168,"kind":2048,"name":"off","url":"classes/doctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":169,"kind":2048,"name":"removeAllListeners","url":"classes/doctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":170,"kind":2048,"name":"setMaxListeners","url":"classes/doctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":171,"kind":2048,"name":"getMaxListeners","url":"classes/doctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":172,"kind":2048,"name":"listeners","url":"classes/doctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":173,"kind":2048,"name":"rawListeners","url":"classes/doctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":174,"kind":2048,"name":"emit","url":"classes/doctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":175,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":176,"kind":2048,"name":"prependListener","url":"classes/doctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":177,"kind":2048,"name":"prependOnceListener","url":"classes/doctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":178,"kind":2048,"name":"eventNames","url":"classes/doctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":179,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":180,"kind":1024,"name":"defaultMaxListeners","url":"classes/doctype.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":181,"kind":256,"name":"DoctypeConstructor","url":"interfaces/doctypeconstructor.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":182,"kind":512,"name":"constructor","url":"interfaces/doctypeconstructor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":183,"kind":2048,"name":"makeGenesis","url":"interfaces/doctypeconstructor.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":184,"kind":256,"name":"DoctypeHandler","url":"interfaces/doctypehandler.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":185,"kind":1024,"name":"name","url":"interfaces/doctypehandler.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":186,"kind":1024,"name":"doctype","url":"interfaces/doctypehandler.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":187,"kind":2048,"name":"applyRecord","url":"interfaces/doctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":188,"kind":64,"name":"DoctypeStatic","url":"globals.html#doctypestatic","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":189,"kind":128,"name":"AnchorService","url":"classes/anchorservice.html","classes":"tsd-kind-class"},{"id":190,"kind":2048,"name":"requestAnchor","url":"classes/anchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":191,"kind":2048,"name":"validateChainInclusion","url":"classes/anchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":192,"kind":2048,"name":"addListener","url":"classes/anchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":193,"kind":2048,"name":"on","url":"classes/anchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":194,"kind":2048,"name":"once","url":"classes/anchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":195,"kind":2048,"name":"removeListener","url":"classes/anchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":196,"kind":2048,"name":"off","url":"classes/anchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":197,"kind":2048,"name":"removeAllListeners","url":"classes/anchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":198,"kind":2048,"name":"setMaxListeners","url":"classes/anchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":199,"kind":2048,"name":"getMaxListeners","url":"classes/anchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":200,"kind":2048,"name":"listeners","url":"classes/anchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":201,"kind":2048,"name":"rawListeners","url":"classes/anchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":202,"kind":2048,"name":"emit","url":"classes/anchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":203,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":204,"kind":2048,"name":"prependListener","url":"classes/anchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":205,"kind":2048,"name":"prependOnceListener","url":"classes/anchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":206,"kind":2048,"name":"eventNames","url":"classes/anchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":207,"kind":512,"name":"constructor","url":"classes/anchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":208,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":209,"kind":1024,"name":"defaultMaxListeners","url":"classes/anchorservice.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":210,"kind":256,"name":"Options","url":"interfaces/options.html","classes":"tsd-kind-interface"},{"id":211,"kind":1024,"name":"level","url":"interfaces/options.html#level","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":212,"kind":1024,"name":"format","url":"interfaces/options.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":213,"kind":1024,"name":"stacktrace","url":"interfaces/options.html#stacktrace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":214,"kind":65536,"name":"__type","url":"interfaces/options.html#stacktrace.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Options.stacktrace"},{"id":215,"kind":32,"name":"levels","url":"interfaces/options.html#stacktrace.__type.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":216,"kind":32,"name":"depth","url":"interfaces/options.html#stacktrace.__type.depth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":217,"kind":32,"name":"excess","url":"interfaces/options.html#stacktrace.__type.excess","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":218,"kind":1024,"name":"component","url":"interfaces/options.html#component","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":219,"kind":256,"name":"PluginOptions","url":"interfaces/pluginoptions.html","classes":"tsd-kind-interface"},{"id":220,"kind":128,"name":"LoggerProvider","url":"classes/loggerprovider.html","classes":"tsd-kind-class"},{"id":221,"kind":2048,"name":"init","url":"classes/loggerprovider.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":222,"kind":2048,"name":"addPlugin","url":"classes/loggerprovider.html#addplugin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":223,"kind":2048,"name":"_toText","url":"classes/loggerprovider.html#_totext","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":224,"kind":2097152,"name":"defaultOpts","url":"globals.html#defaultopts","classes":"tsd-kind-object-literal"},{"id":225,"kind":32,"name":"level","url":"globals.html#defaultopts.level","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":226,"kind":32,"name":"format","url":"globals.html#defaultopts.format","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":227,"kind":2097152,"name":"stacktrace","url":"globals.html#defaultopts.stacktrace","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":228,"kind":32,"name":"levels","url":"globals.html#defaultopts.stacktrace.levels","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":229,"kind":32,"name":"depth","url":"globals.html#defaultopts.stacktrace.depth","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":230,"kind":32,"name":"excess","url":"globals.html#defaultopts.stacktrace.excess","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":231,"kind":4194304,"name":"Plugin","url":"globals.html#plugin","classes":"tsd-kind-type-alias"},{"id":232,"kind":65536,"name":"__type","url":"globals.html#plugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Plugin"},{"id":233,"kind":256,"name":"AnchorServiceResponse","url":"interfaces/anchorserviceresponse.html","classes":"tsd-kind-interface"},{"id":234,"kind":1024,"name":"status","url":"interfaces/anchorserviceresponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":235,"kind":1024,"name":"message","url":"interfaces/anchorserviceresponse.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":236,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/anchorserviceresponse.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":237,"kind":1024,"name":"anchorRecord","url":"interfaces/anchorserviceresponse.html#anchorrecord","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":238,"kind":128,"name":"Utils","url":"classes/utils.html","classes":"tsd-kind-class"},{"id":239,"kind":1024,"name":"validator","url":"classes/utils.html#validator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":240,"kind":2048,"name":"awaitCondition","url":"classes/utils.html#awaitcondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":241,"kind":2048,"name":"isSchemaValid","url":"classes/utils.html#isschemavalid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":242,"kind":2048,"name":"validate","url":"classes/utils.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":243,"kind":2048,"name":"validateDoctype","url":"classes/utils.html#validatedoctype","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":244,"kind":256,"name":"StateStore","url":"interfaces/statestore.html","classes":"tsd-kind-interface"},{"id":245,"kind":2048,"name":"open","url":"interfaces/statestore.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":246,"kind":2048,"name":"close","url":"interfaces/statestore.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":247,"kind":2048,"name":"save","url":"interfaces/statestore.html#save","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":248,"kind":2048,"name":"load","url":"interfaces/statestore.html#load","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":249,"kind":2048,"name":"exists","url":"interfaces/statestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":250,"kind":2048,"name":"list","url":"interfaces/statestore.html#list","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":251,"kind":2048,"name":"remove","url":"interfaces/statestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":252,"kind":256,"name":"Pinning","url":"interfaces/pinning.html","classes":"tsd-kind-interface"},{"id":253,"kind":2048,"name":"open","url":"interfaces/pinning.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":254,"kind":2048,"name":"close","url":"interfaces/pinning.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":255,"kind":2048,"name":"pin","url":"interfaces/pinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":256,"kind":2048,"name":"unpin","url":"interfaces/pinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":257,"kind":256,"name":"PinningStatic","url":"interfaces/pinningstatic.html","classes":"tsd-kind-interface"},{"id":258,"kind":1024,"name":"designator","url":"interfaces/pinningstatic.html#designator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PinningStatic"},{"id":259,"kind":512,"name":"constructor","url":"interfaces/pinningstatic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"PinningStatic"},{"id":260,"kind":128,"name":"PinStore","url":"classes/pinstore.html","classes":"tsd-kind-class"},{"id":261,"kind":512,"name":"constructor","url":"classes/pinstore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStore"},{"id":262,"kind":1024,"name":"stateStore","url":"classes/pinstore.html#statestore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":263,"kind":1024,"name":"pinning","url":"classes/pinstore.html#pinning","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":264,"kind":1024,"name":"retrieve","url":"classes/pinstore.html#retrieve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":265,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":266,"kind":1024,"name":"resolve","url":"classes/pinstore.html#resolve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":267,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":268,"kind":2048,"name":"open","url":"classes/pinstore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":269,"kind":2048,"name":"close","url":"classes/pinstore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":270,"kind":2048,"name":"add","url":"classes/pinstore.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":271,"kind":2048,"name":"rm","url":"classes/pinstore.html#rm","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":272,"kind":2048,"name":"ls","url":"classes/pinstore.html#ls","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":273,"kind":2048,"name":"pointsOfInterest","url":"classes/pinstore.html#pointsofinterest","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PinStore"},{"id":274,"kind":128,"name":"Document","url":"classes/document.html","classes":"tsd-kind-class"},{"id":275,"kind":1024,"name":"_context","url":"classes/document.html#_context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":276,"kind":1024,"name":"id","url":"classes/document.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":277,"kind":1024,"name":"version","url":"classes/document.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":278,"kind":512,"name":"constructor","url":"classes/document.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":279,"kind":1024,"name":"dispatcher","url":"classes/document.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":280,"kind":1024,"name":"pinStore","url":"classes/document.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":281,"kind":2048,"name":"create","url":"classes/document.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":282,"kind":2048,"name":"load","url":"classes/document.html#load","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":283,"kind":2048,"name":"validate","url":"classes/document.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":284,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":285,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Document"},{"id":286,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":287,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":288,"kind":2048,"name":"anchor","url":"classes/document.html#anchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":289,"kind":2048,"name":"loadSchema","url":"classes/document.html#loadschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":290,"kind":2048,"name":"loadSchemaById","url":"classes/document.html#loadschemabyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":291,"kind":262144,"name":"content","url":"classes/document.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":292,"kind":262144,"name":"state","url":"classes/document.html#state","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":293,"kind":262144,"name":"doctype","url":"classes/document.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":294,"kind":262144,"name":"head","url":"classes/document.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":295,"kind":262144,"name":"owners","url":"classes/document.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":296,"kind":262144,"name":"metadata","url":"classes/document.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":297,"kind":2048,"name":"wait","url":"classes/document.html#wait","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":298,"kind":2048,"name":"close","url":"classes/document.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":299,"kind":2048,"name":"toString","url":"classes/document.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":300,"kind":2048,"name":"addListener","url":"classes/document.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":301,"kind":2048,"name":"on","url":"classes/document.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":302,"kind":2048,"name":"once","url":"classes/document.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":303,"kind":2048,"name":"removeListener","url":"classes/document.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":304,"kind":2048,"name":"off","url":"classes/document.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":305,"kind":2048,"name":"removeAllListeners","url":"classes/document.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":306,"kind":2048,"name":"setMaxListeners","url":"classes/document.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":307,"kind":2048,"name":"getMaxListeners","url":"classes/document.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":308,"kind":2048,"name":"listeners","url":"classes/document.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":309,"kind":2048,"name":"rawListeners","url":"classes/document.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":310,"kind":2048,"name":"emit","url":"classes/document.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":311,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":312,"kind":2048,"name":"prependListener","url":"classes/document.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":313,"kind":2048,"name":"prependOnceListener","url":"classes/document.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":314,"kind":2048,"name":"eventNames","url":"classes/document.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":315,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":316,"kind":1024,"name":"defaultMaxListeners","url":"classes/document.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":317,"kind":4,"name":"MsgType","url":"enums/msgtype.html","classes":"tsd-kind-enum"},{"id":318,"kind":16,"name":"UPDATE","url":"enums/msgtype.html#update","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":319,"kind":16,"name":"REQUEST","url":"enums/msgtype.html#request","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":320,"kind":16,"name":"RESPONSE","url":"enums/msgtype.html#response","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":321,"kind":256,"name":"LogMessage","url":"interfaces/logmessage.html","classes":"tsd-kind-interface"},{"id":322,"kind":1024,"name":"peer","url":"interfaces/logmessage.html#peer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":323,"kind":1024,"name":"event","url":"interfaces/logmessage.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":324,"kind":1024,"name":"topic","url":"interfaces/logmessage.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":325,"kind":1024,"name":"from","url":"interfaces/logmessage.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":326,"kind":1024,"name":"message","url":"interfaces/logmessage.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":327,"kind":128,"name":"Dispatcher","url":"classes/dispatcher.html","classes":"tsd-kind-class"},{"id":328,"kind":512,"name":"constructor","url":"classes/dispatcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Dispatcher"},{"id":329,"kind":1024,"name":"_ipfs","url":"classes/dispatcher.html#_ipfs","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":330,"kind":1024,"name":"topic","url":"classes/dispatcher.html#topic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":331,"kind":2048,"name":"init","url":"classes/dispatcher.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":332,"kind":2048,"name":"register","url":"classes/dispatcher.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":333,"kind":2048,"name":"unregister","url":"classes/dispatcher.html#unregister","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":334,"kind":2048,"name":"storeRecord","url":"classes/dispatcher.html#storerecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":335,"kind":2048,"name":"retrieveRecord","url":"classes/dispatcher.html#retrieverecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":336,"kind":2048,"name":"publishHead","url":"classes/dispatcher.html#publishhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":337,"kind":2048,"name":"handleMessage","url":"classes/dispatcher.html#handlemessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":338,"kind":2048,"name":"close","url":"classes/dispatcher.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":339,"kind":2048,"name":"addListener","url":"classes/dispatcher.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":340,"kind":2048,"name":"on","url":"classes/dispatcher.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":341,"kind":2048,"name":"once","url":"classes/dispatcher.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":342,"kind":2048,"name":"removeListener","url":"classes/dispatcher.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":343,"kind":2048,"name":"off","url":"classes/dispatcher.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":344,"kind":2048,"name":"removeAllListeners","url":"classes/dispatcher.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":345,"kind":2048,"name":"setMaxListeners","url":"classes/dispatcher.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":346,"kind":2048,"name":"getMaxListeners","url":"classes/dispatcher.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":347,"kind":2048,"name":"listeners","url":"classes/dispatcher.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":348,"kind":2048,"name":"rawListeners","url":"classes/dispatcher.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":349,"kind":2048,"name":"emit","url":"classes/dispatcher.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":350,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":351,"kind":2048,"name":"prependListener","url":"classes/dispatcher.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":352,"kind":2048,"name":"prependOnceListener","url":"classes/dispatcher.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":353,"kind":2048,"name":"eventNames","url":"classes/dispatcher.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":354,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":355,"kind":1024,"name":"defaultMaxListeners","url":"classes/dispatcher.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":356,"kind":32,"name":"TOPIC","url":"globals.html#topic","classes":"tsd-kind-variable"},{"id":357,"kind":128,"name":"MockAnchorService","url":"classes/mockanchorservice.html","classes":"tsd-kind-class"},{"id":358,"kind":512,"name":"constructor","url":"classes/mockanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"MockAnchorService"},{"id":359,"kind":2048,"name":"requestAnchor","url":"classes/mockanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":360,"kind":2048,"name":"validateChainInclusion","url":"classes/mockanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":361,"kind":2048,"name":"addListener","url":"classes/mockanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":362,"kind":2048,"name":"on","url":"classes/mockanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":363,"kind":2048,"name":"once","url":"classes/mockanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":364,"kind":2048,"name":"removeListener","url":"classes/mockanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":365,"kind":2048,"name":"off","url":"classes/mockanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":366,"kind":2048,"name":"removeAllListeners","url":"classes/mockanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":367,"kind":2048,"name":"setMaxListeners","url":"classes/mockanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":368,"kind":2048,"name":"getMaxListeners","url":"classes/mockanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":369,"kind":2048,"name":"listeners","url":"classes/mockanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":370,"kind":2048,"name":"rawListeners","url":"classes/mockanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":371,"kind":2048,"name":"emit","url":"classes/mockanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":372,"kind":2048,"name":"listenerCount","url":"classes/mockanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":373,"kind":2048,"name":"prependListener","url":"classes/mockanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":374,"kind":2048,"name":"prependOnceListener","url":"classes/mockanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":375,"kind":2048,"name":"eventNames","url":"classes/mockanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":376,"kind":128,"name":"LevelStateStore","url":"classes/levelstatestore.html","classes":"tsd-kind-class"},{"id":377,"kind":512,"name":"constructor","url":"classes/levelstatestore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LevelStateStore"},{"id":378,"kind":262144,"name":"store","url":"classes/levelstatestore.html#store","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LevelStateStore"},{"id":379,"kind":2048,"name":"open","url":"classes/levelstatestore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":380,"kind":2048,"name":"save","url":"classes/levelstatestore.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":381,"kind":2048,"name":"load","url":"classes/levelstatestore.html#load","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":382,"kind":2048,"name":"exists","url":"classes/levelstatestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":383,"kind":2048,"name":"remove","url":"classes/levelstatestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":384,"kind":2048,"name":"list","url":"classes/levelstatestore.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":385,"kind":2048,"name":"close","url":"classes/levelstatestore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":386,"kind":128,"name":"IpfsPinning","url":"classes/ipfspinning.html","classes":"tsd-kind-class"},{"id":387,"kind":1024,"name":"designator","url":"classes/ipfspinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"IpfsPinning"},{"id":388,"kind":1024,"name":"ipfsAddress","url":"classes/ipfspinning.html#ipfsaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IpfsPinning"},{"id":389,"kind":512,"name":"constructor","url":"classes/ipfspinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"IpfsPinning"},{"id":390,"kind":262144,"name":"ipfs","url":"classes/ipfspinning.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"IpfsPinning"},{"id":391,"kind":2048,"name":"open","url":"classes/ipfspinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":392,"kind":2048,"name":"close","url":"classes/ipfspinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":393,"kind":2048,"name":"pin","url":"classes/ipfspinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":394,"kind":2048,"name":"unpin","url":"classes/ipfspinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":395,"kind":32,"name":"FROM_CONTEXT","url":"globals.html#from_context","classes":"tsd-kind-variable"},{"id":396,"kind":128,"name":"EmptyTokenError","url":"classes/emptytokenerror.html","classes":"tsd-kind-class"},{"id":397,"kind":512,"name":"constructor","url":"classes/emptytokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EmptyTokenError"},{"id":398,"kind":1024,"name":"name","url":"classes/emptytokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":399,"kind":1024,"name":"message","url":"classes/emptytokenerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":400,"kind":1024,"name":"stack","url":"classes/emptytokenerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"EmptyTokenError"},{"id":401,"kind":1024,"name":"Error","url":"classes/emptytokenerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EmptyTokenError"},{"id":402,"kind":4,"name":"JobStatus","url":"enums/jobstatus.html","classes":"tsd-kind-enum"},{"id":403,"kind":16,"name":"JOB_STATUS_UNSPECIFIED","url":"enums/jobstatus.html#job_status_unspecified","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":404,"kind":16,"name":"JOB_STATUS_QUEUED","url":"enums/jobstatus.html#job_status_queued","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":405,"kind":16,"name":"JOB_STATUS_EXECUTING","url":"enums/jobstatus.html#job_status_executing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":406,"kind":16,"name":"JOB_STATUS_FAILED","url":"enums/jobstatus.html#job_status_failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":407,"kind":16,"name":"JOB_STATUS_CANCELED","url":"enums/jobstatus.html#job_status_canceled","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":408,"kind":16,"name":"JOB_STATUS_SUCCESS","url":"enums/jobstatus.html#job_status_success","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":409,"kind":128,"name":"PowergatePinning","url":"classes/powergatepinning.html","classes":"tsd-kind-class"},{"id":410,"kind":1024,"name":"designator","url":"classes/powergatepinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PowergatePinning"},{"id":411,"kind":1024,"name":"endpoint","url":"classes/powergatepinning.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":412,"kind":1024,"name":"token","url":"classes/powergatepinning.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":413,"kind":512,"name":"constructor","url":"classes/powergatepinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PowergatePinning"},{"id":414,"kind":262144,"name":"pow","url":"classes/powergatepinning.html#pow","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PowergatePinning"},{"id":415,"kind":2048,"name":"open","url":"classes/powergatepinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":416,"kind":2048,"name":"close","url":"classes/powergatepinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":417,"kind":2048,"name":"pin","url":"classes/powergatepinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":418,"kind":2048,"name":"unpin","url":"classes/powergatepinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":419,"kind":2048,"name":"waitForJobStatus","url":"classes/powergatepinning.html#waitforjobstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PowergatePinning"},{"id":420,"kind":128,"name":"UnknownPinningService","url":"classes/unknownpinningservice.html","classes":"tsd-kind-class"},{"id":421,"kind":512,"name":"constructor","url":"classes/unknownpinningservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UnknownPinningService"},{"id":422,"kind":1024,"name":"name","url":"classes/unknownpinningservice.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":423,"kind":1024,"name":"message","url":"classes/unknownpinningservice.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":424,"kind":1024,"name":"stack","url":"classes/unknownpinningservice.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"UnknownPinningService"},{"id":425,"kind":1024,"name":"Error","url":"classes/unknownpinningservice.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"UnknownPinningService"},{"id":426,"kind":128,"name":"PinningAggregation","url":"classes/pinningaggregation.html","classes":"tsd-kind-class"},{"id":427,"kind":1024,"name":"backends","url":"classes/pinningaggregation.html#backends","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinningAggregation"},{"id":428,"kind":512,"name":"constructor","url":"classes/pinningaggregation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinningAggregation"},{"id":429,"kind":2048,"name":"open","url":"classes/pinningaggregation.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":430,"kind":2048,"name":"close","url":"classes/pinningaggregation.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":431,"kind":2048,"name":"pin","url":"classes/pinningaggregation.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":432,"kind":2048,"name":"unpin","url":"classes/pinningaggregation.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":433,"kind":128,"name":"PinStoreFactory","url":"classes/pinstorefactory.html","classes":"tsd-kind-class"},{"id":434,"kind":1024,"name":"stateStorePath","url":"classes/pinstorefactory.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":435,"kind":1024,"name":"pinnings","url":"classes/pinstorefactory.html#pinnings","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":436,"kind":512,"name":"constructor","url":"classes/pinstorefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":437,"kind":1024,"name":"context","url":"classes/pinstorefactory.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":438,"kind":2048,"name":"open","url":"classes/pinstorefactory.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":439,"kind":256,"name":"CeramicConfig","url":"interfaces/ceramicconfig.html","classes":"tsd-kind-interface"},{"id":440,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/ceramicconfig.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":441,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/ceramicconfig.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":442,"kind":1024,"name":"stateStorePath","url":"interfaces/ceramicconfig.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":443,"kind":1024,"name":"didResolver","url":"interfaces/ceramicconfig.html#didresolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":444,"kind":1024,"name":"didProvider","url":"interfaces/ceramicconfig.html#didprovider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":445,"kind":1024,"name":"validateDocs","url":"interfaces/ceramicconfig.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":446,"kind":1024,"name":"pinning","url":"interfaces/ceramicconfig.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":447,"kind":1024,"name":"logLevel","url":"interfaces/ceramicconfig.html#loglevel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":448,"kind":1024,"name":"logToFiles","url":"interfaces/ceramicconfig.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":449,"kind":1024,"name":"logToFilesPlugin","url":"interfaces/ceramicconfig.html#logtofilesplugin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":450,"kind":65536,"name":"__type","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"CeramicConfig.logToFilesPlugin"},{"id":451,"kind":32,"name":"plugin","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.plugin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":452,"kind":32,"name":"options","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.options","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":453,"kind":1024,"name":"gateway","url":"interfaces/ceramicconfig.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":454,"kind":1024,"name":"topic","url":"interfaces/ceramicconfig.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":455,"kind":1024,"name":"pin","url":"classes/ceramic.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":456,"kind":1024,"name":"context","url":"classes/ceramic.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":457,"kind":512,"name":"constructor","url":"classes/ceramic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Ceramic"},{"id":458,"kind":1024,"name":"dispatcher","url":"classes/ceramic.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":459,"kind":1024,"name":"pinStore","url":"classes/ceramic.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":460,"kind":262144,"name":"ipfs","url":"classes/ceramic.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":461,"kind":262144,"name":"did","url":"classes/ceramic.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":462,"kind":2048,"name":"create","url":"classes/ceramic.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Ceramic"},{"id":463,"kind":2048,"name":"findHandler","url":"classes/ceramic.html#findhandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":464,"kind":2048,"name":"setDIDProvider","url":"classes/ceramic.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":465,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramic.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":466,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramic.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":467,"kind":2048,"name":"applyRecord","url":"classes/ceramic.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":468,"kind":2048,"name":"getDocFromMap","url":"classes/ceramic.html#getdocfrommap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":469,"kind":2048,"name":"createDocument","url":"classes/ceramic.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":470,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramic.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":471,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramic.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":472,"kind":2048,"name":"_loadDoc","url":"classes/ceramic.html#_loaddoc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":473,"kind":2048,"name":"listVersions","url":"classes/ceramic.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":474,"kind":2048,"name":"close","url":"classes/ceramic.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":475,"kind":256,"name":"CidDoc","url":"interfaces/ciddoc.html","classes":"tsd-kind-interface"},{"id":476,"kind":1024,"name":"cid","url":"interfaces/ciddoc.html#cid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":477,"kind":1024,"name":"docId","url":"interfaces/ciddoc.html#docid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":478,"kind":256,"name":"EthNetwork","url":"interfaces/ethnetwork.html","classes":"tsd-kind-interface"},{"id":479,"kind":1024,"name":"network","url":"interfaces/ethnetwork.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":480,"kind":1024,"name":"chain","url":"interfaces/ethnetwork.html#chain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":481,"kind":1024,"name":"chainId","url":"interfaces/ethnetwork.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":482,"kind":1024,"name":"networkId","url":"interfaces/ethnetwork.html#networkid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":483,"kind":1024,"name":"type","url":"interfaces/ethnetwork.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":484,"kind":128,"name":"EthereumAnchorService","url":"classes/ethereumanchorservice.html","classes":"tsd-kind-class"},{"id":485,"kind":512,"name":"constructor","url":"classes/ethereumanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EthereumAnchorService"},{"id":486,"kind":2048,"name":"requestAnchor","url":"classes/ethereumanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":487,"kind":2048,"name":"validateChainInclusion","url":"classes/ethereumanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":488,"kind":2048,"name":"addListener","url":"classes/ethereumanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":489,"kind":2048,"name":"on","url":"classes/ethereumanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":490,"kind":2048,"name":"once","url":"classes/ethereumanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":491,"kind":2048,"name":"removeListener","url":"classes/ethereumanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":492,"kind":2048,"name":"off","url":"classes/ethereumanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":493,"kind":2048,"name":"removeAllListeners","url":"classes/ethereumanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":494,"kind":2048,"name":"setMaxListeners","url":"classes/ethereumanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":495,"kind":2048,"name":"getMaxListeners","url":"classes/ethereumanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":496,"kind":2048,"name":"listeners","url":"classes/ethereumanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":497,"kind":2048,"name":"rawListeners","url":"classes/ethereumanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":498,"kind":2048,"name":"emit","url":"classes/ethereumanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":499,"kind":2048,"name":"listenerCount","url":"classes/ethereumanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":500,"kind":2048,"name":"prependListener","url":"classes/ethereumanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":501,"kind":2048,"name":"prependOnceListener","url":"classes/ethereumanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":502,"kind":2048,"name":"eventNames","url":"classes/ethereumanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":503,"kind":32,"name":"DEFAULT_POLL_TIME","url":"globals.html#default_poll_time","classes":"tsd-kind-variable"},{"id":504,"kind":32,"name":"DEFAULT_MAX_POLL_TIME","url":"globals.html#default_max_poll_time","classes":"tsd-kind-variable"},{"id":505,"kind":2097152,"name":"ETH_CHAIN_ID_MAPPINGS","url":"globals.html#eth_chain_id_mappings","classes":"tsd-kind-object-literal"},{"id":506,"kind":2097152,"name":"eip155:1","url":"globals.html#eth_chain_id_mappings.eip155_1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":507,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_1.network","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":508,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_1.chain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":509,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_1.chainid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":510,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_1.networkid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":511,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_1.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":512,"kind":2097152,"name":"eip155:3","url":"globals.html#eth_chain_id_mappings.eip155_3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":513,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_3.network-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":514,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_3.chain-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":515,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_3.chainid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":516,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_3.networkid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":517,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_3.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":518,"kind":128,"name":"AnchorServiceFactory","url":"classes/anchorservicefactory.html","classes":"tsd-kind-class"},{"id":519,"kind":512,"name":"constructor","url":"classes/anchorservicefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":520,"kind":2048,"name":"get","url":"classes/anchorservicefactory.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":521,"kind":256,"name":"AccountLinkParams","url":"interfaces/accountlinkparams.html","classes":"tsd-kind-interface"},{"id":522,"kind":1024,"name":"content","url":"interfaces/accountlinkparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountLinkParams"},{"id":523,"kind":1024,"name":"metadata","url":"interfaces/accountlinkparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"AccountLinkParams"},{"id":524,"kind":128,"name":"AccountLinkDoctype","url":"classes/accountlinkdoctype.html","classes":"tsd-kind-class"},{"id":525,"kind":2048,"name":"change","url":"classes/accountlinkdoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"AccountLinkDoctype"},{"id":526,"kind":2048,"name":"create","url":"classes/accountlinkdoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":527,"kind":2048,"name":"makeGenesis","url":"classes/accountlinkdoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":528,"kind":512,"name":"constructor","url":"classes/accountlinkdoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":529,"kind":262144,"name":"id","url":"classes/accountlinkdoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":530,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":531,"kind":262144,"name":"content","url":"classes/accountlinkdoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":532,"kind":262144,"name":"metadata","url":"classes/accountlinkdoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":533,"kind":262144,"name":"owners","url":"classes/accountlinkdoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":534,"kind":262144,"name":"head","url":"classes/accountlinkdoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":535,"kind":262144,"name":"state","url":"classes/accountlinkdoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":536,"kind":262144,"name":"context","url":"classes/accountlinkdoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":537,"kind":2048,"name":"validate","url":"classes/accountlinkdoctype.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":538,"kind":2048,"name":"addListener","url":"classes/accountlinkdoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":539,"kind":2048,"name":"on","url":"classes/accountlinkdoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":540,"kind":2048,"name":"once","url":"classes/accountlinkdoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":541,"kind":2048,"name":"removeListener","url":"classes/accountlinkdoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":542,"kind":2048,"name":"off","url":"classes/accountlinkdoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":543,"kind":2048,"name":"removeAllListeners","url":"classes/accountlinkdoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":544,"kind":2048,"name":"setMaxListeners","url":"classes/accountlinkdoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":545,"kind":2048,"name":"getMaxListeners","url":"classes/accountlinkdoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":546,"kind":2048,"name":"listeners","url":"classes/accountlinkdoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":547,"kind":2048,"name":"rawListeners","url":"classes/accountlinkdoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":548,"kind":2048,"name":"emit","url":"classes/accountlinkdoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":549,"kind":2048,"name":"listenerCount","url":"classes/accountlinkdoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":550,"kind":2048,"name":"prependListener","url":"classes/accountlinkdoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":551,"kind":2048,"name":"prependOnceListener","url":"classes/accountlinkdoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":552,"kind":2048,"name":"eventNames","url":"classes/accountlinkdoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":553,"kind":32,"name":"DOCTYPE","url":"globals.html#doctype","classes":"tsd-kind-variable"},{"id":554,"kind":128,"name":"AccountLinkDoctypeHandler","url":"classes/accountlinkdoctypehandler.html","classes":"tsd-kind-class"},{"id":555,"kind":262144,"name":"name","url":"classes/accountlinkdoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":556,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":557,"kind":2048,"name":"create","url":"classes/accountlinkdoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":558,"kind":2048,"name":"applyRecord","url":"classes/accountlinkdoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":559,"kind":256,"name":"TileParams","url":"interfaces/tileparams.html","classes":"tsd-kind-interface"},{"id":560,"kind":1024,"name":"content","url":"interfaces/tileparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TileParams"},{"id":561,"kind":1024,"name":"metadata","url":"interfaces/tileparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"TileParams"},{"id":562,"kind":128,"name":"TileDoctype","url":"classes/tiledoctype.html","classes":"tsd-kind-class"},{"id":563,"kind":2048,"name":"change","url":"classes/tiledoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"TileDoctype"},{"id":564,"kind":2048,"name":"create","url":"classes/tiledoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":565,"kind":2048,"name":"makeGenesis","url":"classes/tiledoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":566,"kind":512,"name":"constructor","url":"classes/tiledoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":567,"kind":262144,"name":"id","url":"classes/tiledoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":568,"kind":262144,"name":"doctype","url":"classes/tiledoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":569,"kind":262144,"name":"content","url":"classes/tiledoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":570,"kind":262144,"name":"metadata","url":"classes/tiledoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":571,"kind":262144,"name":"owners","url":"classes/tiledoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":572,"kind":262144,"name":"head","url":"classes/tiledoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":573,"kind":262144,"name":"state","url":"classes/tiledoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":574,"kind":262144,"name":"context","url":"classes/tiledoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":575,"kind":2048,"name":"validate","url":"classes/tiledoctype.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":576,"kind":2048,"name":"addListener","url":"classes/tiledoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":577,"kind":2048,"name":"on","url":"classes/tiledoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":578,"kind":2048,"name":"once","url":"classes/tiledoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":579,"kind":2048,"name":"removeListener","url":"classes/tiledoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":580,"kind":2048,"name":"off","url":"classes/tiledoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":581,"kind":2048,"name":"removeAllListeners","url":"classes/tiledoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":582,"kind":2048,"name":"setMaxListeners","url":"classes/tiledoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":583,"kind":2048,"name":"getMaxListeners","url":"classes/tiledoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":584,"kind":2048,"name":"listeners","url":"classes/tiledoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":585,"kind":2048,"name":"rawListeners","url":"classes/tiledoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":586,"kind":2048,"name":"emit","url":"classes/tiledoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":587,"kind":2048,"name":"listenerCount","url":"classes/tiledoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":588,"kind":2048,"name":"prependListener","url":"classes/tiledoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":589,"kind":2048,"name":"prependOnceListener","url":"classes/tiledoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":590,"kind":2048,"name":"eventNames","url":"classes/tiledoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":591,"kind":128,"name":"TileDoctypeHandler","url":"classes/tiledoctypehandler.html","classes":"tsd-kind-class"},{"id":592,"kind":262144,"name":"name","url":"classes/tiledoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":593,"kind":262144,"name":"doctype","url":"classes/tiledoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":594,"kind":2048,"name":"create","url":"classes/tiledoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":595,"kind":2048,"name":"applyRecord","url":"classes/tiledoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":596,"kind":2048,"name":"verifyJWS","url":"classes/tiledoctypehandler.html#verifyjws","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":597,"kind":64,"name":"fetchJson","url":"globals.html#fetchjson","classes":"tsd-kind-function"},{"id":598,"kind":1024,"name":"doctypeHandler","url":"classes/document.html#doctypehandler","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":599,"kind":2048,"name":"createFromGenesis","url":"classes/document.html#createfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":600,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":601,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":602,"kind":2048,"name":"loadDocumentRecords","url":"classes/document.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":603,"kind":2048,"name":"change","url":"classes/document.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":604,"kind":2048,"name":"_syncState","url":"classes/document.html#_syncstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":605,"kind":262144,"name":"context","url":"classes/document.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":606,"kind":128,"name":"CeramicClient","url":"classes/ceramicclient.html","classes":"tsd-kind-class"},{"id":607,"kind":1024,"name":"pin","url":"classes/ceramicclient.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":608,"kind":1024,"name":"context","url":"classes/ceramicclient.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":609,"kind":1024,"name":"_doctypeHandlers","url":"classes/ceramicclient.html#_doctypehandlers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":610,"kind":512,"name":"constructor","url":"classes/ceramicclient.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicClient"},{"id":611,"kind":262144,"name":"did","url":"classes/ceramicclient.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CeramicClient"},{"id":612,"kind":2048,"name":"_initPinApi","url":"classes/ceramicclient.html#_initpinapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":613,"kind":2048,"name":"createDocument","url":"classes/ceramicclient.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":614,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramicclient.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":615,"kind":2048,"name":"loadDocument","url":"classes/ceramicclient.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":616,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramicclient.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":617,"kind":2048,"name":"applyRecord","url":"classes/ceramicclient.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":618,"kind":2048,"name":"listVersions","url":"classes/ceramicclient.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":619,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramicclient.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":620,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramicclient.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":621,"kind":2048,"name":"setDIDProvider","url":"classes/ceramicclient.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":622,"kind":2048,"name":"close","url":"classes/ceramicclient.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":623,"kind":32,"name":"CERAMIC_HOST","url":"globals.html#ceramic_host","classes":"tsd-kind-variable"},{"id":624,"kind":32,"name":"API_PATH","url":"globals.html#api_path","classes":"tsd-kind-variable"},{"id":625,"kind":64,"name":"keyToDidDoc","url":"globals.html#keytodiddoc","classes":"tsd-kind-function"},{"id":626,"kind":2097152,"name":"prefixToDriverMap","url":"globals.html#prefixtodrivermap","classes":"tsd-kind-object-literal"},{"id":627,"kind":32,"name":"231","url":"globals.html#prefixtodrivermap.231","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"prefixToDriverMap"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,32.871]],["parent/0",[]],["name/1",[1,51.914]],["parent/1",[0,3.089]],["name/2",[2,60.387]],["parent/2",[]],["name/3",[3,60.387]],["parent/3",[]],["name/4",[4,49.401]],["parent/4",[]],["name/5",[5,60.387]],["parent/5",[4,4.643]],["name/6",[6,38.414]],["parent/6",[]],["name/7",[7,60.387]],["parent/7",[6,3.61]],["name/8",[8,49.401]],["parent/8",[6,3.61]],["name/9",[9,60.387]],["parent/9",[6,3.61]],["name/10",[10,55.278]],["parent/10",[6,3.61]],["name/11",[11,55.278]],["parent/11",[6,3.61]],["name/12",[12,51.914]],["parent/12",[6,3.61]],["name/13",[13,55.278]],["parent/13",[6,3.61]],["name/14",[14,43.041]],["parent/14",[6,3.61]],["name/15",[15,55.278]],["parent/15",[6,3.61]],["name/16",[16,60.387]],["parent/16",[6,3.61]],["name/17",[4,49.401]],["parent/17",[6,3.61]],["name/18",[17,60.387]],["parent/18",[6,3.61]],["name/19",[18,51.914]],["parent/19",[]],["name/20",[19,55.278]],["parent/20",[18,4.879]],["name/21",[20,55.278]],["parent/21",[18,4.879]],["name/22",[21,35.819]],["parent/22",[]],["name/23",[22,33.306]],["parent/23",[21,3.366]],["name/24",[0,32.871]],["parent/24",[21,3.366]],["name/25",[23,44.292]],["parent/25",[21,3.366]],["name/26",[24,60.387]],["parent/26",[21,3.366]],["name/27",[25,60.387]],["parent/27",[21,3.366]],["name/28",[26,60.387]],["parent/28",[21,3.366]],["name/29",[27,55.278]],["parent/29",[21,3.366]],["name/30",[28,45.723]],["parent/30",[21,3.366]],["name/31",[29,55.278]],["parent/31",[21,3.366]],["name/32",[30,60.387]],["parent/32",[21,3.366]],["name/33",[31,41.928]],["parent/33",[21,3.366]],["name/34",[32,60.387]],["parent/34",[21,3.366]],["name/35",[33,60.387]],["parent/35",[21,3.366]],["name/36",[34,60.387]],["parent/36",[21,3.366]],["name/37",[35,60.387]],["parent/37",[21,3.366]],["name/38",[36,38.414]],["parent/38",[21,3.366]],["name/39",[37,60.387]],["parent/39",[]],["name/40",[38,60.387]],["parent/40",[]],["name/41",[39,60.387]],["parent/41",[]],["name/42",[40,51.914]],["parent/42",[]],["name/43",[41,60.387]],["parent/43",[40,4.879]],["name/44",[42,60.387]],["parent/44",[40,4.879]],["name/45",[43,36.408]],["parent/45",[]],["name/46",[44,60.387]],["parent/46",[43,3.422]],["name/47",[45,60.387]],["parent/47",[43,3.422]],["name/48",[46,47.394]],["parent/48",[43,3.422]],["name/49",[27,55.278]],["parent/49",[43,3.422]],["name/50",[28,45.723]],["parent/50",[43,3.422]],["name/51",[47,60.387]],["parent/51",[43,3.422]],["name/52",[29,55.278]],["parent/52",[43,3.422]],["name/53",[48,60.387]],["parent/53",[43,3.422]],["name/54",[49,60.387]],["parent/54",[43,3.422]],["name/55",[50,60.387]],["parent/55",[43,3.422]],["name/56",[51,60.387]],["parent/56",[43,3.422]],["name/57",[52,60.387]],["parent/57",[43,3.422]],["name/58",[53,60.387]],["parent/58",[43,3.422]],["name/59",[54,60.387]],["parent/59",[43,3.422]],["name/60",[55,60.387]],["parent/60",[43,3.422]],["name/61",[56,60.387]],["parent/61",[]],["name/62",[57,60.387]],["parent/62",[]],["name/63",[58,60.387]],["parent/63",[]],["name/64",[59,60.387]],["parent/64",[]],["name/65",[60,60.387]],["parent/65",[]],["name/66",[61,60.387]],["parent/66",[]],["name/67",[62,43.041]],["parent/67",[]],["name/68",[63,60.387]],["parent/68",[]],["name/69",[64,49.401]],["parent/69",[]],["name/70",[65,55.278]],["parent/70",[64,4.643]],["name/71",[66,55.278]],["parent/71",[64,4.643]],["name/72",[67,55.278]],["parent/72",[64,4.643]],["name/73",[68,38.414]],["parent/73",[]],["name/74",[62,43.041]],["parent/74",[68,3.61]],["name/75",[69,49.401]],["parent/75",[68,3.61]],["name/76",[70,51.914]],["parent/76",[68,3.61]],["name/77",[71,51.914]],["parent/77",[68,3.61]],["name/78",[72,51.914]],["parent/78",[68,3.61]],["name/79",[73,51.914]],["parent/79",[68,3.61]],["name/80",[1,51.914]],["parent/80",[68,3.61]],["name/81",[74,49.401]],["parent/81",[68,3.61]],["name/82",[75,47.394]],["parent/82",[68,3.61]],["name/83",[31,41.928]],["parent/83",[68,3.61]],["name/84",[76,51.914]],["parent/84",[68,3.61]],["name/85",[36,38.414]],["parent/85",[68,3.61]],["name/86",[77,37.7]],["parent/86",[]],["name/87",[69,49.401]],["parent/87",[77,3.543]],["name/88",[8,49.401]],["parent/88",[77,3.543]],["name/89",[78,60.387]],["parent/89",[77,3.543]],["name/90",[79,60.387]],["parent/90",[77,3.543]],["name/91",[80,33.306]],["parent/91",[77,3.543]],["name/92",[81,60.387]],["parent/92",[77,3.543]],["name/93",[82,36.408]],["parent/93",[]],["name/94",[83,60.387]],["parent/94",[82,3.422]],["name/95",[84,60.387]],["parent/95",[82,3.422]],["name/96",[85,60.387]],["parent/96",[82,3.422]],["name/97",[86,60.387]],["parent/97",[82,3.422]],["name/98",[87,60.387]],["parent/98",[82,3.422]],["name/99",[88,60.387]],["parent/99",[82,3.422]],["name/100",[89,60.387]],["parent/100",[82,3.422]],["name/101",[90,60.387]],["parent/101",[82,3.422]],["name/102",[91,60.387]],["parent/102",[82,3.422]],["name/103",[92,60.387]],["parent/103",[82,3.422]],["name/104",[93,60.387]],["parent/104",[82,3.422]],["name/105",[94,60.387]],["parent/105",[82,3.422]],["name/106",[95,60.387]],["parent/106",[82,3.422]],["name/107",[96,60.387]],["parent/107",[82,3.422]],["name/108",[97,60.387]],["parent/108",[82,3.422]],["name/109",[98,49.401]],["parent/109",[]],["name/110",[99,60.387]],["parent/110",[98,4.643]],["name/111",[100,60.387]],["parent/111",[98,4.643]],["name/112",[101,60.387]],["parent/112",[98,4.643]],["name/113",[102,44.292]],["parent/113",[]],["name/114",[103,60.387]],["parent/114",[102,4.163]],["name/115",[104,60.387]],["parent/115",[102,4.163]],["name/116",[105,60.387]],["parent/116",[102,4.163]],["name/117",[106,60.387]],["parent/117",[102,4.163]],["name/118",[107,60.387]],["parent/118",[102,4.163]],["name/119",[108,47.394]],["parent/119",[]],["name/120",[109,60.387]],["parent/120",[108,4.454]],["name/121",[110,60.387]],["parent/121",[108,4.454]],["name/122",[111,60.387]],["parent/122",[108,4.454]],["name/123",[112,44.292]],["parent/123",[]],["name/124",[113,49.401]],["parent/124",[112,4.163]],["name/125",[114,60.387]],["parent/125",[112,4.163]],["name/126",[115,60.387]],["parent/126",[112,4.163]],["name/127",[116,60.387]],["parent/127",[112,4.163]],["name/128",[117,60.387]],["parent/128",[112,4.163]],["name/129",[118,47.394]],["parent/129",[]],["name/130",[119,45.723]],["parent/130",[118,4.454]],["name/131",[120,60.387]],["parent/131",[118,4.454]],["name/132",[121,60.387]],["parent/132",[118,4.454]],["name/133",[122,60.387]],["parent/133",[118,4.454]],["name/134",[123,55.278]],["parent/134",[]],["name/135",[124,41.928]],["parent/135",[123,5.195]],["name/136",[125,49.401]],["parent/136",[]],["name/137",[126,43.041]],["parent/137",[125,4.643]],["name/138",[119,45.723]],["parent/138",[125,4.643]],["name/139",[124,41.928]],["parent/139",[125,4.643]],["name/140",[127,40.928]],["parent/140",[]],["name/141",[128,28.198]],["parent/141",[127,3.846]],["name/142",[126,43.041]],["parent/142",[127,3.846]],["name/143",[129,60.387]],["parent/143",[127,3.846]],["name/144",[124,41.928]],["parent/144",[127,3.846]],["name/145",[130,60.387]],["parent/145",[127,3.846]],["name/146",[102,44.292]],["parent/146",[127,3.846]],["name/147",[131,55.278]],["parent/147",[127,3.846]],["name/148",[112,44.292]],["parent/148",[127,3.846]],["name/149",[132,60.387]],["parent/149",[127,3.846]],["name/150",[133,51.914]],["parent/150",[]],["name/151",[134,60.387]],["parent/151",[133,4.879]],["name/152",[135,60.387]],["parent/152",[133,4.879]],["name/153",[128,28.198]],["parent/153",[]],["name/154",[22,33.306]],["parent/154",[128,2.65]],["name/155",[136,49.401]],["parent/155",[128,2.65]],["name/156",[128,28.198]],["parent/156",[128,2.65]],["name/157",[126,43.041]],["parent/157",[128,2.65]],["name/158",[124,41.928]],["parent/158",[128,2.65]],["name/159",[119,45.723]],["parent/159",[128,2.65]],["name/160",[137,49.401]],["parent/160",[128,2.65]],["name/161",[28,45.723]],["parent/161",[128,2.65]],["name/162",[77,37.7]],["parent/162",[128,2.65]],["name/163",[46,47.394]],["parent/163",[128,2.65]],["name/164",[138,43.041]],["parent/164",[128,2.65]],["name/165",[139,43.041]],["parent/165",[128,2.65]],["name/166",[140,43.041]],["parent/166",[128,2.65]],["name/167",[141,43.041]],["parent/167",[128,2.65]],["name/168",[142,43.041]],["parent/168",[128,2.65]],["name/169",[143,43.041]],["parent/169",[128,2.65]],["name/170",[144,43.041]],["parent/170",[128,2.65]],["name/171",[145,43.041]],["parent/171",[128,2.65]],["name/172",[146,43.041]],["parent/172",[128,2.65]],["name/173",[147,43.041]],["parent/173",[128,2.65]],["name/174",[148,43.041]],["parent/174",[128,2.65]],["name/175",[149,39.184]],["parent/175",[128,2.65]],["name/176",[150,43.041]],["parent/176",[128,2.65]],["name/177",[151,43.041]],["parent/177",[128,2.65]],["name/178",[152,43.041]],["parent/178",[128,2.65]],["name/179",[149,39.184]],["parent/179",[128,2.65]],["name/180",[153,49.401]],["parent/180",[128,2.65]],["name/181",[154,51.914]],["parent/181",[]],["name/182",[22,33.306]],["parent/182",[154,4.879]],["name/183",[155,51.914]],["parent/183",[154,4.879]],["name/184",[156,47.394]],["parent/184",[]],["name/185",[157,47.394]],["parent/185",[156,4.454]],["name/186",[128,28.198]],["parent/186",[156,4.454]],["name/187",[31,41.928]],["parent/187",[156,4.454]],["name/188",[158,60.387]],["parent/188",[]],["name/189",[80,33.306]],["parent/189",[]],["name/190",[159,51.914]],["parent/190",[80,3.13]],["name/191",[160,51.914]],["parent/191",[80,3.13]],["name/192",[138,43.041]],["parent/192",[80,3.13]],["name/193",[139,43.041]],["parent/193",[80,3.13]],["name/194",[140,43.041]],["parent/194",[80,3.13]],["name/195",[141,43.041]],["parent/195",[80,3.13]],["name/196",[142,43.041]],["parent/196",[80,3.13]],["name/197",[143,43.041]],["parent/197",[80,3.13]],["name/198",[144,43.041]],["parent/198",[80,3.13]],["name/199",[145,43.041]],["parent/199",[80,3.13]],["name/200",[146,43.041]],["parent/200",[80,3.13]],["name/201",[147,43.041]],["parent/201",[80,3.13]],["name/202",[148,43.041]],["parent/202",[80,3.13]],["name/203",[149,39.184]],["parent/203",[80,3.13]],["name/204",[150,43.041]],["parent/204",[80,3.13]],["name/205",[151,43.041]],["parent/205",[80,3.13]],["name/206",[152,43.041]],["parent/206",[80,3.13]],["name/207",[22,33.306]],["parent/207",[80,3.13]],["name/208",[149,39.184]],["parent/208",[80,3.13]],["name/209",[153,49.401]],["parent/209",[80,3.13]],["name/210",[161,45.723]],["parent/210",[]],["name/211",[162,55.278]],["parent/211",[161,4.297]],["name/212",[163,55.278]],["parent/212",[161,4.297]],["name/213",[164,55.278]],["parent/213",[161,4.297]],["name/214",[165,47.394]],["parent/214",[166,5.675]],["name/215",[167,55.278]],["parent/215",[168,4.879]],["name/216",[169,55.278]],["parent/216",[168,4.879]],["name/217",[170,55.278]],["parent/217",[168,4.879]],["name/218",[171,60.387]],["parent/218",[161,4.297]],["name/219",[172,60.387]],["parent/219",[]],["name/220",[173,49.401]],["parent/220",[]],["name/221",[174,55.278]],["parent/221",[173,4.643]],["name/222",[175,60.387]],["parent/222",[173,4.643]],["name/223",[176,60.387]],["parent/223",[173,4.643]],["name/224",[177,49.401]],["parent/224",[]],["name/225",[162,55.278]],["parent/225",[177,4.643]],["name/226",[163,55.278]],["parent/226",[177,4.643]],["name/227",[164,55.278]],["parent/227",[177,4.643]],["name/228",[167,55.278]],["parent/228",[178,4.879]],["name/229",[169,55.278]],["parent/229",[178,4.879]],["name/230",[170,55.278]],["parent/230",[178,4.879]],["name/231",[179,51.914]],["parent/231",[]],["name/232",[165,47.394]],["parent/232",[179,4.879]],["name/233",[180,47.394]],["parent/233",[]],["name/234",[181,60.387]],["parent/234",[180,4.454]],["name/235",[182,49.401]],["parent/235",[180,4.454]],["name/236",[131,55.278]],["parent/236",[180,4.454]],["name/237",[108,47.394]],["parent/237",[180,4.454]],["name/238",[183,45.723]],["parent/238",[]],["name/239",[184,60.387]],["parent/239",[183,4.297]],["name/240",[185,60.387]],["parent/240",[183,4.297]],["name/241",[186,60.387]],["parent/241",[183,4.297]],["name/242",[187,49.401]],["parent/242",[183,4.297]],["name/243",[188,60.387]],["parent/243",[183,4.297]],["name/244",[189,41.928]],["parent/244",[]],["name/245",[190,43.041]],["parent/245",[189,3.94]],["name/246",[36,38.414]],["parent/246",[189,3.94]],["name/247",[191,55.278]],["parent/247",[189,3.94]],["name/248",[192,51.914]],["parent/248",[189,3.94]],["name/249",[193,55.278]],["parent/249",[189,3.94]],["name/250",[194,55.278]],["parent/250",[189,3.94]],["name/251",[195,55.278]],["parent/251",[189,3.94]],["name/252",[14,43.041]],["parent/252",[]],["name/253",[190,43.041]],["parent/253",[14,4.045]],["name/254",[36,38.414]],["parent/254",[14,4.045]],["name/255",[62,43.041]],["parent/255",[14,4.045]],["name/256",[196,49.401]],["parent/256",[14,4.045]],["name/257",[197,51.914]],["parent/257",[]],["name/258",[198,51.914]],["parent/258",[197,4.879]],["name/259",[22,33.306]],["parent/259",[197,4.879]],["name/260",[199,36.408]],["parent/260",[]],["name/261",[22,33.306]],["parent/261",[199,3.422]],["name/262",[189,41.928]],["parent/262",[199,3.422]],["name/263",[14,43.041]],["parent/263",[199,3.422]],["name/264",[200,60.387]],["parent/264",[199,3.422]],["name/265",[165,47.394]],["parent/265",[199,3.422]],["name/266",[201,60.387]],["parent/266",[199,3.422]],["name/267",[165,47.394]],["parent/267",[199,3.422]],["name/268",[190,43.041]],["parent/268",[199,3.422]],["name/269",[36,38.414]],["parent/269",[199,3.422]],["name/270",[65,55.278]],["parent/270",[199,3.422]],["name/271",[66,55.278]],["parent/271",[199,3.422]],["name/272",[67,55.278]],["parent/272",[199,3.422]],["name/273",[202,60.387]],["parent/273",[199,3.422]],["name/274",[203,25.025]],["parent/274",[]],["name/275",[204,60.387]],["parent/275",[203,2.352]],["name/276",[136,49.401]],["parent/276",[203,2.352]],["name/277",[205,60.387]],["parent/277",[203,2.352]],["name/278",[22,33.306]],["parent/278",[203,2.352]],["name/279",[206,29.941]],["parent/279",[203,2.352]],["name/280",[199,36.408]],["parent/280",[203,2.352]],["name/281",[23,44.292]],["parent/281",[203,2.352]],["name/282",[192,51.914]],["parent/282",[203,2.352]],["name/283",[187,49.401]],["parent/283",[203,2.352]],["name/284",[75,47.394]],["parent/284",[203,2.352]],["name/285",[207,55.278]],["parent/285",[203,2.352]],["name/286",[207,55.278]],["parent/286",[203,2.352]],["name/287",[31,41.928]],["parent/287",[203,2.352]],["name/288",[208,60.387]],["parent/288",[203,2.352]],["name/289",[209,60.387]],["parent/289",[203,2.352]],["name/290",[210,60.387]],["parent/290",[203,2.352]],["name/291",[126,43.041]],["parent/291",[203,2.352]],["name/292",[28,45.723]],["parent/292",[203,2.352]],["name/293",[128,28.198]],["parent/293",[203,2.352]],["name/294",[137,49.401]],["parent/294",[203,2.352]],["name/295",[119,45.723]],["parent/295",[203,2.352]],["name/296",[124,41.928]],["parent/296",[203,2.352]],["name/297",[211,60.387]],["parent/297",[203,2.352]],["name/298",[36,38.414]],["parent/298",[203,2.352]],["name/299",[212,60.387]],["parent/299",[203,2.352]],["name/300",[138,43.041]],["parent/300",[203,2.352]],["name/301",[139,43.041]],["parent/301",[203,2.352]],["name/302",[140,43.041]],["parent/302",[203,2.352]],["name/303",[141,43.041]],["parent/303",[203,2.352]],["name/304",[142,43.041]],["parent/304",[203,2.352]],["name/305",[143,43.041]],["parent/305",[203,2.352]],["name/306",[144,43.041]],["parent/306",[203,2.352]],["name/307",[145,43.041]],["parent/307",[203,2.352]],["name/308",[146,43.041]],["parent/308",[203,2.352]],["name/309",[147,43.041]],["parent/309",[203,2.352]],["name/310",[148,43.041]],["parent/310",[203,2.352]],["name/311",[149,39.184]],["parent/311",[203,2.352]],["name/312",[150,43.041]],["parent/312",[203,2.352]],["name/313",[151,43.041]],["parent/313",[203,2.352]],["name/314",[152,43.041]],["parent/314",[203,2.352]],["name/315",[149,39.184]],["parent/315",[203,2.352]],["name/316",[153,49.401]],["parent/316",[203,2.352]],["name/317",[213,49.401]],["parent/317",[]],["name/318",[214,60.387]],["parent/318",[213,4.643]],["name/319",[19,55.278]],["parent/319",[213,4.643]],["name/320",[20,55.278]],["parent/320",[213,4.643]],["name/321",[215,45.723]],["parent/321",[]],["name/322",[216,60.387]],["parent/322",[215,4.297]],["name/323",[217,60.387]],["parent/323",[215,4.297]],["name/324",[218,49.401]],["parent/324",[215,4.297]],["name/325",[219,60.387]],["parent/325",[215,4.297]],["name/326",[182,49.401]],["parent/326",[215,4.297]],["name/327",[206,29.941]],["parent/327",[]],["name/328",[22,33.306]],["parent/328",[206,2.814]],["name/329",[220,60.387]],["parent/329",[206,2.814]],["name/330",[218,49.401]],["parent/330",[206,2.814]],["name/331",[174,55.278]],["parent/331",[206,2.814]],["name/332",[221,60.387]],["parent/332",[206,2.814]],["name/333",[222,60.387]],["parent/333",[206,2.814]],["name/334",[223,60.387]],["parent/334",[206,2.814]],["name/335",[224,60.387]],["parent/335",[206,2.814]],["name/336",[225,60.387]],["parent/336",[206,2.814]],["name/337",[226,60.387]],["parent/337",[206,2.814]],["name/338",[36,38.414]],["parent/338",[206,2.814]],["name/339",[138,43.041]],["parent/339",[206,2.814]],["name/340",[139,43.041]],["parent/340",[206,2.814]],["name/341",[140,43.041]],["parent/341",[206,2.814]],["name/342",[141,43.041]],["parent/342",[206,2.814]],["name/343",[142,43.041]],["parent/343",[206,2.814]],["name/344",[143,43.041]],["parent/344",[206,2.814]],["name/345",[144,43.041]],["parent/345",[206,2.814]],["name/346",[145,43.041]],["parent/346",[206,2.814]],["name/347",[146,43.041]],["parent/347",[206,2.814]],["name/348",[147,43.041]],["parent/348",[206,2.814]],["name/349",[148,43.041]],["parent/349",[206,2.814]],["name/350",[149,39.184]],["parent/350",[206,2.814]],["name/351",[150,43.041]],["parent/351",[206,2.814]],["name/352",[151,43.041]],["parent/352",[206,2.814]],["name/353",[152,43.041]],["parent/353",[206,2.814]],["name/354",[149,39.184]],["parent/354",[206,2.814]],["name/355",[153,49.401]],["parent/355",[206,2.814]],["name/356",[218,49.401]],["parent/356",[]],["name/357",[227,34.737]],["parent/357",[]],["name/358",[22,33.306]],["parent/358",[227,3.265]],["name/359",[159,51.914]],["parent/359",[227,3.265]],["name/360",[160,51.914]],["parent/360",[227,3.265]],["name/361",[138,43.041]],["parent/361",[227,3.265]],["name/362",[139,43.041]],["parent/362",[227,3.265]],["name/363",[140,43.041]],["parent/363",[227,3.265]],["name/364",[141,43.041]],["parent/364",[227,3.265]],["name/365",[142,43.041]],["parent/365",[227,3.265]],["name/366",[143,43.041]],["parent/366",[227,3.265]],["name/367",[144,43.041]],["parent/367",[227,3.265]],["name/368",[145,43.041]],["parent/368",[227,3.265]],["name/369",[146,43.041]],["parent/369",[227,3.265]],["name/370",[147,43.041]],["parent/370",[227,3.265]],["name/371",[148,43.041]],["parent/371",[227,3.265]],["name/372",[149,39.184]],["parent/372",[227,3.265]],["name/373",[150,43.041]],["parent/373",[227,3.265]],["name/374",[151,43.041]],["parent/374",[227,3.265]],["name/375",[152,43.041]],["parent/375",[227,3.265]],["name/376",[228,40.928]],["parent/376",[]],["name/377",[22,33.306]],["parent/377",[228,3.846]],["name/378",[229,60.387]],["parent/378",[228,3.846]],["name/379",[190,43.041]],["parent/379",[228,3.846]],["name/380",[191,55.278]],["parent/380",[228,3.846]],["name/381",[192,51.914]],["parent/381",[228,3.846]],["name/382",[193,55.278]],["parent/382",[228,3.846]],["name/383",[195,55.278]],["parent/383",[228,3.846]],["name/384",[194,55.278]],["parent/384",[228,3.846]],["name/385",[36,38.414]],["parent/385",[228,3.846]],["name/386",[230,41.928]],["parent/386",[]],["name/387",[198,51.914]],["parent/387",[230,3.94]],["name/388",[231,60.387]],["parent/388",[230,3.94]],["name/389",[22,33.306]],["parent/389",[230,3.94]],["name/390",[8,49.401]],["parent/390",[230,3.94]],["name/391",[190,43.041]],["parent/391",[230,3.94]],["name/392",[36,38.414]],["parent/392",[230,3.94]],["name/393",[62,43.041]],["parent/393",[230,3.94]],["name/394",[196,49.401]],["parent/394",[230,3.94]],["name/395",[232,60.387]],["parent/395",[]],["name/396",[233,45.723]],["parent/396",[]],["name/397",[22,33.306]],["parent/397",[233,4.297]],["name/398",[157,47.394]],["parent/398",[233,4.297]],["name/399",[182,49.401]],["parent/399",[233,4.297]],["name/400",[234,55.278]],["parent/400",[233,4.297]],["name/401",[235,55.278]],["parent/401",[233,4.297]],["name/402",[236,44.292]],["parent/402",[]],["name/403",[237,60.387]],["parent/403",[236,4.163]],["name/404",[238,60.387]],["parent/404",[236,4.163]],["name/405",[239,60.387]],["parent/405",[236,4.163]],["name/406",[240,60.387]],["parent/406",[236,4.163]],["name/407",[241,60.387]],["parent/407",[236,4.163]],["name/408",[242,60.387]],["parent/408",[236,4.163]],["name/409",[243,40.018]],["parent/409",[]],["name/410",[198,51.914]],["parent/410",[243,3.761]],["name/411",[244,60.387]],["parent/411",[243,3.761]],["name/412",[245,60.387]],["parent/412",[243,3.761]],["name/413",[22,33.306]],["parent/413",[243,3.761]],["name/414",[246,60.387]],["parent/414",[243,3.761]],["name/415",[190,43.041]],["parent/415",[243,3.761]],["name/416",[36,38.414]],["parent/416",[243,3.761]],["name/417",[62,43.041]],["parent/417",[243,3.761]],["name/418",[196,49.401]],["parent/418",[243,3.761]],["name/419",[247,60.387]],["parent/419",[243,3.761]],["name/420",[248,45.723]],["parent/420",[]],["name/421",[22,33.306]],["parent/421",[248,4.297]],["name/422",[157,47.394]],["parent/422",[248,4.297]],["name/423",[182,49.401]],["parent/423",[248,4.297]],["name/424",[234,55.278]],["parent/424",[248,4.297]],["name/425",[235,55.278]],["parent/425",[248,4.297]],["name/426",[249,44.292]],["parent/426",[]],["name/427",[250,60.387]],["parent/427",[249,4.163]],["name/428",[22,33.306]],["parent/428",[249,4.163]],["name/429",[190,43.041]],["parent/429",[249,4.163]],["name/430",[36,38.414]],["parent/430",[249,4.163]],["name/431",[62,43.041]],["parent/431",[249,4.163]],["name/432",[196,49.401]],["parent/432",[249,4.163]],["name/433",[251,45.723]],["parent/433",[]],["name/434",[12,51.914]],["parent/434",[251,4.297]],["name/435",[252,60.387]],["parent/435",[251,4.297]],["name/436",[22,33.306]],["parent/436",[251,4.297]],["name/437",[77,37.7]],["parent/437",[251,4.297]],["name/438",[190,43.041]],["parent/438",[251,4.297]],["name/439",[253,38.414]],["parent/439",[]],["name/440",[10,55.278]],["parent/440",[253,3.61]],["name/441",[11,55.278]],["parent/441",[253,3.61]],["name/442",[12,51.914]],["parent/442",[253,3.61]],["name/443",[254,60.387]],["parent/443",[253,3.61]],["name/444",[255,60.387]],["parent/444",[253,3.61]],["name/445",[13,55.278]],["parent/445",[253,3.61]],["name/446",[14,43.041]],["parent/446",[253,3.61]],["name/447",[256,60.387]],["parent/447",[253,3.61]],["name/448",[4,49.401]],["parent/448",[253,3.61]],["name/449",[257,60.387]],["parent/449",[253,3.61]],["name/450",[165,47.394]],["parent/450",[258,5.675]],["name/451",[179,51.914]],["parent/451",[259,5.195]],["name/452",[161,45.723]],["parent/452",[259,5.195]],["name/453",[15,55.278]],["parent/453",[253,3.61]],["name/454",[218,49.401]],["parent/454",[253,3.61]],["name/455",[62,43.041]],["parent/455",[0,3.089]],["name/456",[77,37.7]],["parent/456",[0,3.089]],["name/457",[22,33.306]],["parent/457",[0,3.089]],["name/458",[206,29.941]],["parent/458",[0,3.089]],["name/459",[199,36.408]],["parent/459",[0,3.089]],["name/460",[8,49.401]],["parent/460",[0,3.089]],["name/461",[69,49.401]],["parent/461",[0,3.089]],["name/462",[23,44.292]],["parent/462",[0,3.089]],["name/463",[260,60.387]],["parent/463",[0,3.089]],["name/464",[76,51.914]],["parent/464",[0,3.089]],["name/465",[70,51.914]],["parent/465",[0,3.089]],["name/466",[71,51.914]],["parent/466",[0,3.089]],["name/467",[31,41.928]],["parent/467",[0,3.089]],["name/468",[261,60.387]],["parent/468",[0,3.089]],["name/469",[72,51.914]],["parent/469",[0,3.089]],["name/470",[73,51.914]],["parent/470",[0,3.089]],["name/471",[74,49.401]],["parent/471",[0,3.089]],["name/472",[262,60.387]],["parent/472",[0,3.089]],["name/473",[75,47.394]],["parent/473",[0,3.089]],["name/474",[36,38.414]],["parent/474",[0,3.089]],["name/475",[263,51.914]],["parent/475",[]],["name/476",[264,60.387]],["parent/476",[263,4.879]],["name/477",[265,60.387]],["parent/477",[263,4.879]],["name/478",[266,45.723]],["parent/478",[]],["name/479",[267,51.914]],["parent/479",[266,4.297]],["name/480",[268,51.914]],["parent/480",[266,4.297]],["name/481",[113,49.401]],["parent/481",[266,4.297]],["name/482",[269,51.914]],["parent/482",[266,4.297]],["name/483",[270,51.914]],["parent/483",[266,4.297]],["name/484",[271,34.737]],["parent/484",[]],["name/485",[22,33.306]],["parent/485",[271,3.265]],["name/486",[159,51.914]],["parent/486",[271,3.265]],["name/487",[160,51.914]],["parent/487",[271,3.265]],["name/488",[138,43.041]],["parent/488",[271,3.265]],["name/489",[139,43.041]],["parent/489",[271,3.265]],["name/490",[140,43.041]],["parent/490",[271,3.265]],["name/491",[141,43.041]],["parent/491",[271,3.265]],["name/492",[142,43.041]],["parent/492",[271,3.265]],["name/493",[143,43.041]],["parent/493",[271,3.265]],["name/494",[144,43.041]],["parent/494",[271,3.265]],["name/495",[145,43.041]],["parent/495",[271,3.265]],["name/496",[146,43.041]],["parent/496",[271,3.265]],["name/497",[147,43.041]],["parent/497",[271,3.265]],["name/498",[148,43.041]],["parent/498",[271,3.265]],["name/499",[149,39.184]],["parent/499",[271,3.265]],["name/500",[150,43.041]],["parent/500",[271,3.265]],["name/501",[151,43.041]],["parent/501",[271,3.265]],["name/502",[152,43.041]],["parent/502",[271,3.265]],["name/503",[272,60.387]],["parent/503",[]],["name/504",[273,60.387]],["parent/504",[]],["name/505",[274,51.914]],["parent/505",[]],["name/506",[275,60.387]],["parent/506",[274,4.879]],["name/507",[267,51.914]],["parent/507",[276,4.454]],["name/508",[268,51.914]],["parent/508",[276,4.454]],["name/509",[113,49.401]],["parent/509",[276,4.454]],["name/510",[269,51.914]],["parent/510",[276,4.454]],["name/511",[270,51.914]],["parent/511",[276,4.454]],["name/512",[277,60.387]],["parent/512",[274,4.879]],["name/513",[267,51.914]],["parent/513",[278,4.454]],["name/514",[268,51.914]],["parent/514",[278,4.454]],["name/515",[113,49.401]],["parent/515",[278,4.454]],["name/516",[269,51.914]],["parent/516",[278,4.454]],["name/517",[270,51.914]],["parent/517",[278,4.454]],["name/518",[279,51.914]],["parent/518",[]],["name/519",[22,33.306]],["parent/519",[279,4.879]],["name/520",[280,60.387]],["parent/520",[279,4.879]],["name/521",[281,51.914]],["parent/521",[]],["name/522",[126,43.041]],["parent/522",[281,4.879]],["name/523",[124,41.928]],["parent/523",[281,4.879]],["name/524",[282,30.597]],["parent/524",[]],["name/525",[46,47.394]],["parent/525",[282,2.876]],["name/526",[23,44.292]],["parent/526",[282,2.876]],["name/527",[155,51.914]],["parent/527",[282,2.876]],["name/528",[22,33.306]],["parent/528",[282,2.876]],["name/529",[136,49.401]],["parent/529",[282,2.876]],["name/530",[128,28.198]],["parent/530",[282,2.876]],["name/531",[126,43.041]],["parent/531",[282,2.876]],["name/532",[124,41.928]],["parent/532",[282,2.876]],["name/533",[119,45.723]],["parent/533",[282,2.876]],["name/534",[137,49.401]],["parent/534",[282,2.876]],["name/535",[28,45.723]],["parent/535",[282,2.876]],["name/536",[77,37.7]],["parent/536",[282,2.876]],["name/537",[187,49.401]],["parent/537",[282,2.876]],["name/538",[138,43.041]],["parent/538",[282,2.876]],["name/539",[139,43.041]],["parent/539",[282,2.876]],["name/540",[140,43.041]],["parent/540",[282,2.876]],["name/541",[141,43.041]],["parent/541",[282,2.876]],["name/542",[142,43.041]],["parent/542",[282,2.876]],["name/543",[143,43.041]],["parent/543",[282,2.876]],["name/544",[144,43.041]],["parent/544",[282,2.876]],["name/545",[145,43.041]],["parent/545",[282,2.876]],["name/546",[146,43.041]],["parent/546",[282,2.876]],["name/547",[147,43.041]],["parent/547",[282,2.876]],["name/548",[148,43.041]],["parent/548",[282,2.876]],["name/549",[149,39.184]],["parent/549",[282,2.876]],["name/550",[150,43.041]],["parent/550",[282,2.876]],["name/551",[151,43.041]],["parent/551",[282,2.876]],["name/552",[152,43.041]],["parent/552",[282,2.876]],["name/553",[128,28.198]],["parent/553",[]],["name/554",[283,47.394]],["parent/554",[]],["name/555",[157,47.394]],["parent/555",[283,4.454]],["name/556",[128,28.198]],["parent/556",[283,4.454]],["name/557",[23,44.292]],["parent/557",[283,4.454]],["name/558",[31,41.928]],["parent/558",[283,4.454]],["name/559",[284,51.914]],["parent/559",[]],["name/560",[126,43.041]],["parent/560",[284,4.879]],["name/561",[124,41.928]],["parent/561",[284,4.879]],["name/562",[285,30.597]],["parent/562",[]],["name/563",[46,47.394]],["parent/563",[285,2.876]],["name/564",[23,44.292]],["parent/564",[285,2.876]],["name/565",[155,51.914]],["parent/565",[285,2.876]],["name/566",[22,33.306]],["parent/566",[285,2.876]],["name/567",[136,49.401]],["parent/567",[285,2.876]],["name/568",[128,28.198]],["parent/568",[285,2.876]],["name/569",[126,43.041]],["parent/569",[285,2.876]],["name/570",[124,41.928]],["parent/570",[285,2.876]],["name/571",[119,45.723]],["parent/571",[285,2.876]],["name/572",[137,49.401]],["parent/572",[285,2.876]],["name/573",[28,45.723]],["parent/573",[285,2.876]],["name/574",[77,37.7]],["parent/574",[285,2.876]],["name/575",[187,49.401]],["parent/575",[285,2.876]],["name/576",[138,43.041]],["parent/576",[285,2.876]],["name/577",[139,43.041]],["parent/577",[285,2.876]],["name/578",[140,43.041]],["parent/578",[285,2.876]],["name/579",[141,43.041]],["parent/579",[285,2.876]],["name/580",[142,43.041]],["parent/580",[285,2.876]],["name/581",[143,43.041]],["parent/581",[285,2.876]],["name/582",[144,43.041]],["parent/582",[285,2.876]],["name/583",[145,43.041]],["parent/583",[285,2.876]],["name/584",[146,43.041]],["parent/584",[285,2.876]],["name/585",[147,43.041]],["parent/585",[285,2.876]],["name/586",[148,43.041]],["parent/586",[285,2.876]],["name/587",[149,39.184]],["parent/587",[285,2.876]],["name/588",[150,43.041]],["parent/588",[285,2.876]],["name/589",[151,43.041]],["parent/589",[285,2.876]],["name/590",[152,43.041]],["parent/590",[285,2.876]],["name/591",[286,45.723]],["parent/591",[]],["name/592",[157,47.394]],["parent/592",[286,4.297]],["name/593",[128,28.198]],["parent/593",[286,4.297]],["name/594",[23,44.292]],["parent/594",[286,4.297]],["name/595",[31,41.928]],["parent/595",[286,4.297]],["name/596",[287,60.387]],["parent/596",[286,4.297]],["name/597",[288,60.387]],["parent/597",[]],["name/598",[156,47.394]],["parent/598",[203,2.352]],["name/599",[289,60.387]],["parent/599",[203,2.352]],["name/600",[31,41.928]],["parent/600",[203,2.352]],["name/601",[75,47.394]],["parent/601",[203,2.352]],["name/602",[74,49.401]],["parent/602",[203,2.352]],["name/603",[46,47.394]],["parent/603",[203,2.352]],["name/604",[290,60.387]],["parent/604",[203,2.352]],["name/605",[77,37.7]],["parent/605",[203,2.352]],["name/606",[291,35.819]],["parent/606",[]],["name/607",[62,43.041]],["parent/607",[291,3.366]],["name/608",[77,37.7]],["parent/608",[291,3.366]],["name/609",[292,60.387]],["parent/609",[291,3.366]],["name/610",[22,33.306]],["parent/610",[291,3.366]],["name/611",[69,49.401]],["parent/611",[291,3.366]],["name/612",[293,60.387]],["parent/612",[291,3.366]],["name/613",[72,51.914]],["parent/613",[291,3.366]],["name/614",[73,51.914]],["parent/614",[291,3.366]],["name/615",[1,51.914]],["parent/615",[291,3.366]],["name/616",[74,49.401]],["parent/616",[291,3.366]],["name/617",[31,41.928]],["parent/617",[291,3.366]],["name/618",[75,47.394]],["parent/618",[291,3.366]],["name/619",[70,51.914]],["parent/619",[291,3.366]],["name/620",[71,51.914]],["parent/620",[291,3.366]],["name/621",[76,51.914]],["parent/621",[291,3.366]],["name/622",[36,38.414]],["parent/622",[291,3.366]],["name/623",[294,60.387]],["parent/623",[]],["name/624",[295,60.387]],["parent/624",[]],["name/625",[296,60.387]],["parent/625",[]],["name/626",[297,55.278]],["parent/626",[]],["name/627",[298,60.387]],["parent/627",[297,5.195]]],"invertedIndex":[["231",{"_index":298,"name":{"627":{}},"parent":{}}],["__type",{"_index":165,"name":{"214":{},"232":{},"265":{},"267":{},"450":{}},"parent":{}}],["_buildhttplog",{"_index":25,"name":{"27":{}},"parent":{}}],["_context",{"_index":204,"name":{"275":{}},"parent":{}}],["_doctypehandlers",{"_index":292,"name":{"609":{}},"parent":{}}],["_initpinapi",{"_index":293,"name":{"612":{}},"parent":{}}],["_ipfs",{"_index":220,"name":{"329":{}},"parent":{}}],["_loaddoc",{"_index":262,"name":{"472":{}},"parent":{}}],["_notsupported",{"_index":35,"name":{"37":{}},"parent":{}}],["_syncstate",{"_index":290,"name":{"604":{}},"parent":{}}],["_totext",{"_index":176,"name":{"223":{}},"parent":{}}],["accountlinkdoctype",{"_index":282,"name":{"524":{}},"parent":{"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{}}}],["accountlinkdoctypehandler",{"_index":283,"name":{"554":{}},"parent":{"555":{},"556":{},"557":{},"558":{}}}],["accountlinkparams",{"_index":281,"name":{"521":{}},"parent":{"522":{},"523":{}}}],["add",{"_index":65,"name":{"70":{},"270":{}},"parent":{}}],["adddoctypehandler",{"_index":70,"name":{"76":{},"465":{},"619":{}},"parent":{}}],["addlistener",{"_index":138,"name":{"164":{},"192":{},"300":{},"339":{},"361":{},"488":{},"538":{},"576":{}},"parent":{}}],["addplugin",{"_index":175,"name":{"222":{}},"parent":{}}],["anchor",{"_index":208,"name":{"288":{}},"parent":{}}],["anchored",{"_index":106,"name":{"117":{}},"parent":{}}],["anchorproof",{"_index":112,"name":{"123":{},"148":{}},"parent":{"124":{},"125":{},"126":{},"127":{},"128":{}}}],["anchorrecord",{"_index":108,"name":{"119":{},"237":{}},"parent":{"120":{},"121":{},"122":{}}}],["anchorscheduledfor",{"_index":131,"name":{"147":{},"236":{}},"parent":{}}],["anchorservice",{"_index":80,"name":{"91":{},"189":{}},"parent":{"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{}}}],["anchorservicefactory",{"_index":279,"name":{"518":{}},"parent":{"519":{},"520":{}}}],["anchorserviceresponse",{"_index":180,"name":{"233":{}},"parent":{"234":{},"235":{},"236":{},"237":{}}}],["anchorserviceurl",{"_index":11,"name":{"11":{},"441":{}},"parent":{}}],["anchorstatus",{"_index":102,"name":{"113":{},"146":{}},"parent":{"114":{},"115":{},"116":{},"117":{},"118":{}}}],["api",{"_index":81,"name":{"92":{}},"parent":{}}],["api_path",{"_index":295,"name":{"624":{}},"parent":{}}],["applyonly",{"_index":134,"name":{"151":{}},"parent":{}}],["applyrecord",{"_index":31,"name":{"33":{},"83":{},"187":{},"287":{},"467":{},"558":{},"595":{},"600":{},"617":{}},"parent":{}}],["awaitcondition",{"_index":185,"name":{"240":{}},"parent":{}}],["backends",{"_index":250,"name":{"427":{}},"parent":{}}],["blocknumber",{"_index":114,"name":{"125":{}},"parent":{}}],["blocktimestamp",{"_index":115,"name":{"126":{}},"parent":{}}],["ceramic",{"_index":0,"name":{"0":{},"24":{}},"parent":{"1":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{}}}],["ceramic_host",{"_index":294,"name":{"623":{}},"parent":{}}],["ceramicapi",{"_index":68,"name":{"73":{}},"parent":{"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{}}}],["ceramicclient",{"_index":291,"name":{"606":{}},"parent":{"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{}}}],["ceramiccliutils",{"_index":43,"name":{"45":{}},"parent":{"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{}}}],["ceramicconfig",{"_index":253,"name":{"439":{}},"parent":{"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"453":{},"454":{}}}],["ceramicconfig.logtofilesplugin",{"_index":258,"name":{},"parent":{"450":{}}}],["ceramicconfig.logtofilesplugin.__type",{"_index":259,"name":{},"parent":{"451":{},"452":{}}}],["ceramicdaemon",{"_index":21,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{}}}],["ceramichost",{"_index":42,"name":{"44":{}},"parent":{}}],["chain",{"_index":268,"name":{"480":{},"508":{},"514":{}},"parent":{}}],["chainid",{"_index":113,"name":{"124":{},"481":{},"509":{},"515":{}},"parent":{}}],["change",{"_index":46,"name":{"48":{},"163":{},"525":{},"563":{},"603":{}},"parent":{}}],["cid",{"_index":264,"name":{"476":{}},"parent":{}}],["ciddoc",{"_index":263,"name":{"475":{}},"parent":{"476":{},"477":{}}}],["cliconfig",{"_index":40,"name":{"42":{}},"parent":{"43":{},"44":{}}}],["close",{"_index":36,"name":{"38":{},"85":{},"246":{},"254":{},"269":{},"298":{},"338":{},"385":{},"392":{},"416":{},"430":{},"474":{},"622":{}},"parent":{}}],["component",{"_index":171,"name":{"218":{}},"parent":{}}],["config",{"_index":63,"name":{"68":{}},"parent":{}}],["constructor",{"_index":22,"name":{"23":{},"154":{},"182":{},"207":{},"259":{},"261":{},"278":{},"328":{},"358":{},"377":{},"389":{},"397":{},"413":{},"421":{},"428":{},"436":{},"457":{},"485":{},"519":{},"528":{},"566":{},"610":{}},"parent":{}}],["content",{"_index":126,"name":{"137":{},"142":{},"157":{},"291":{},"522":{},"531":{},"560":{},"569":{}},"parent":{}}],["context",{"_index":77,"name":{"86":{},"162":{},"437":{},"456":{},"536":{},"574":{},"605":{},"608":{}},"parent":{"87":{},"88":{},"89":{},"90":{},"91":{},"92":{}}}],["convertrecordtodto",{"_index":94,"name":{"105":{}},"parent":{}}],["create",{"_index":23,"name":{"25":{},"281":{},"462":{},"526":{},"557":{},"564":{},"594":{}},"parent":{}}],["createdaemon",{"_index":44,"name":{"46":{}},"parent":{}}],["createdoc",{"_index":45,"name":{"47":{}},"parent":{}}],["createdocfromgenesis",{"_index":26,"name":{"28":{}},"parent":{}}],["createdocidfrombase",{"_index":84,"name":{"95":{}},"parent":{}}],["createdocidfromgenesis",{"_index":83,"name":{"94":{}},"parent":{}}],["createdocument",{"_index":72,"name":{"78":{},"469":{},"613":{}},"parent":{}}],["createdocumentfromgenesis",{"_index":73,"name":{"79":{},"470":{},"614":{}},"parent":{}}],["createfromgenesis",{"_index":289,"name":{"599":{}},"parent":{}}],["createopts",{"_index":6,"name":{"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{}}}],["debug",{"_index":16,"name":{"16":{}},"parent":{}}],["default_anchor_service_url",{"_index":39,"name":{"41":{}},"parent":{}}],["default_cli_config_file",{"_index":58,"name":{"63":{}},"parent":{}}],["default_cli_config_path",{"_index":60,"name":{"65":{}},"parent":{}}],["default_max_poll_time",{"_index":273,"name":{"504":{}},"parent":{}}],["default_pinning_store_path",{"_index":59,"name":{"64":{}},"parent":{}}],["default_poll_time",{"_index":272,"name":{"503":{}},"parent":{}}],["default_port",{"_index":37,"name":{"39":{}},"parent":{}}],["defaultmaxlisteners",{"_index":153,"name":{"180":{},"209":{},"316":{},"355":{}},"parent":{}}],["defaultopts",{"_index":177,"name":{"224":{}},"parent":{"225":{},"226":{},"227":{}}}],["defaultopts.stacktrace",{"_index":178,"name":{},"parent":{"228":{},"229":{},"230":{}}}],["depth",{"_index":169,"name":{"216":{},"229":{}},"parent":{}}],["deserializerecord",{"_index":90,"name":{"101":{}},"parent":{}}],["deserializestate",{"_index":92,"name":{"103":{}},"parent":{}}],["designator",{"_index":198,"name":{"258":{},"387":{},"410":{}},"parent":{}}],["did",{"_index":69,"name":{"75":{},"87":{},"461":{},"611":{}},"parent":{}}],["didprovider",{"_index":255,"name":{"444":{}},"parent":{}}],["didresolver",{"_index":254,"name":{"443":{}},"parent":{}}],["dispatcher",{"_index":206,"name":{"279":{},"327":{},"458":{}},"parent":{"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{},"349":{},"350":{},"351":{},"352":{},"353":{},"354":{},"355":{}}}],["docid",{"_index":265,"name":{"477":{}},"parent":{}}],["docmetadata",{"_index":118,"name":{"129":{}},"parent":{"130":{},"131":{},"132":{},"133":{}}}],["docnext",{"_index":125,"name":{"136":{}},"parent":{"137":{},"138":{},"139":{}}}],["docopts",{"_index":133,"name":{"150":{}},"parent":{"151":{},"152":{}}}],["docparams",{"_index":123,"name":{"134":{}},"parent":{"135":{}}}],["docstate",{"_index":127,"name":{"140":{}},"parent":{"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{}}}],["doctype",{"_index":128,"name":{"141":{},"153":{},"156":{},"186":{},"293":{},"530":{},"553":{},"556":{},"568":{},"593":{}},"parent":{"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{}}}],["doctypeconstructor",{"_index":154,"name":{"181":{}},"parent":{"182":{},"183":{}}}],["doctypehandler",{"_index":156,"name":{"184":{},"598":{}},"parent":{"185":{},"186":{},"187":{}}}],["doctypestatic",{"_index":158,"name":{"188":{}},"parent":{}}],["doctypeutils",{"_index":82,"name":{"93":{}},"parent":{"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{}}}],["document",{"_index":203,"name":{"274":{}},"parent":{"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{}}}],["eip155:1",{"_index":275,"name":{"506":{}},"parent":{}}],["eip155:3",{"_index":277,"name":{"512":{}},"parent":{}}],["emit",{"_index":148,"name":{"174":{},"202":{},"310":{},"349":{},"371":{},"498":{},"548":{},"586":{}},"parent":{}}],["emptytokenerror",{"_index":233,"name":{"396":{}},"parent":{"397":{},"398":{},"399":{},"400":{},"401":{}}}],["endpoint",{"_index":244,"name":{"411":{}},"parent":{}}],["error",{"_index":235,"name":{"401":{},"425":{}},"parent":{}}],["eth_chain_id_mappings",{"_index":274,"name":{"505":{}},"parent":{"506":{},"512":{}}}],["eth_chain_id_mappings.eip155:1",{"_index":276,"name":{},"parent":{"507":{},"508":{},"509":{},"510":{},"511":{}}}],["eth_chain_id_mappings.eip155:3",{"_index":278,"name":{},"parent":{"513":{},"514":{},"515":{},"516":{},"517":{}}}],["ethereumanchorservice",{"_index":271,"name":{"484":{}},"parent":{"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{}}}],["ethereumrpcurl",{"_index":10,"name":{"10":{},"440":{}},"parent":{}}],["ethnetwork",{"_index":266,"name":{"478":{}},"parent":{"479":{},"480":{},"481":{},"482":{},"483":{}}}],["event",{"_index":217,"name":{"323":{}},"parent":{}}],["eventnames",{"_index":152,"name":{"178":{},"206":{},"314":{},"353":{},"375":{},"502":{},"552":{},"590":{}},"parent":{}}],["excess",{"_index":170,"name":{"217":{},"230":{}},"parent":{}}],["exists",{"_index":193,"name":{"249":{},"382":{}},"parent":{}}],["failed",{"_index":107,"name":{"118":{}},"parent":{}}],["fetchjson",{"_index":288,"name":{"597":{}},"parent":{}}],["finddoctypehandler",{"_index":71,"name":{"77":{},"466":{},"620":{}},"parent":{}}],["findhandler",{"_index":260,"name":{"463":{}},"parent":{}}],["format",{"_index":163,"name":{"212":{},"226":{}},"parent":{}}],["from",{"_index":219,"name":{"325":{}},"parent":{}}],["from_context",{"_index":232,"name":{"395":{}},"parent":{}}],["fs",{"_index":56,"name":{"61":{}},"parent":{}}],["gateway",{"_index":15,"name":{"15":{},"453":{}},"parent":{}}],["genesis",{"_index":99,"name":{"110":{}},"parent":{}}],["get",{"_index":280,"name":{"520":{}},"parent":{}}],["getbasedocid",{"_index":87,"name":{"98":{}},"parent":{}}],["getdocfrommap",{"_index":261,"name":{"468":{}},"parent":{}}],["getgenesis",{"_index":86,"name":{"97":{}},"parent":{}}],["getmaxlisteners",{"_index":145,"name":{"171":{},"199":{},"307":{},"346":{},"368":{},"495":{},"545":{},"583":{}},"parent":{}}],["getversion",{"_index":207,"name":{"285":{},"286":{}},"parent":{}}],["getversionid",{"_index":88,"name":{"99":{}},"parent":{}}],["handlemessage",{"_index":226,"name":{"337":{}},"parent":{}}],["head",{"_index":137,"name":{"160":{},"294":{},"534":{},"572":{}},"parent":{}}],["httplog",{"_index":18,"name":{"19":{}},"parent":{"20":{},"21":{}}}],["id",{"_index":136,"name":{"155":{},"276":{},"529":{},"567":{}},"parent":{}}],["init",{"_index":174,"name":{"221":{},"331":{}},"parent":{}}],["ipfs",{"_index":8,"name":{"8":{},"88":{},"390":{},"460":{}},"parent":{}}],["ipfsaddress",{"_index":231,"name":{"388":{}},"parent":{}}],["ipfshost",{"_index":7,"name":{"7":{}},"parent":{}}],["ipfspinning",{"_index":230,"name":{"386":{}},"parent":{"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{}}}],["isanchorrecord",{"_index":97,"name":{"108":{}},"parent":{}}],["isschemavalid",{"_index":186,"name":{"241":{}},"parent":{}}],["issignedrecord",{"_index":96,"name":{"107":{}},"parent":{}}],["issignedrecorddto",{"_index":95,"name":{"106":{}},"parent":{}}],["isunique",{"_index":122,"name":{"133":{}},"parent":{}}],["job_status_canceled",{"_index":241,"name":{"407":{}},"parent":{}}],["job_status_executing",{"_index":239,"name":{"405":{}},"parent":{}}],["job_status_failed",{"_index":240,"name":{"406":{}},"parent":{}}],["job_status_queued",{"_index":238,"name":{"404":{}},"parent":{}}],["job_status_success",{"_index":242,"name":{"408":{}},"parent":{}}],["job_status_unspecified",{"_index":237,"name":{"403":{}},"parent":{}}],["jobstatus",{"_index":236,"name":{"402":{}},"parent":{"403":{},"404":{},"405":{},"406":{},"407":{},"408":{}}}],["keytodiddoc",{"_index":296,"name":{"625":{}},"parent":{}}],["level",{"_index":162,"name":{"211":{},"225":{}},"parent":{}}],["levels",{"_index":167,"name":{"215":{},"228":{}},"parent":{}}],["levelstatestore",{"_index":228,"name":{"376":{}},"parent":{"377":{},"378":{},"379":{},"380":{},"381":{},"382":{},"383":{},"384":{},"385":{}}}],["list",{"_index":194,"name":{"250":{},"384":{}},"parent":{}}],["listenercount",{"_index":149,"name":{"175":{},"179":{},"203":{},"208":{},"311":{},"315":{},"350":{},"354":{},"372":{},"499":{},"549":{},"587":{}},"parent":{}}],["listeners",{"_index":146,"name":{"172":{},"200":{},"308":{},"347":{},"369":{},"496":{},"546":{},"584":{}},"parent":{}}],["listpinned",{"_index":34,"name":{"36":{}},"parent":{}}],["listversions",{"_index":75,"name":{"82":{},"284":{},"473":{},"601":{},"618":{}},"parent":{}}],["load",{"_index":192,"name":{"248":{},"282":{},"381":{}},"parent":{}}],["loaddocument",{"_index":1,"name":{"1":{},"80":{},"615":{}},"parent":{}}],["loaddocumentrecords",{"_index":74,"name":{"81":{},"471":{},"602":{},"616":{}},"parent":{}}],["loadschema",{"_index":209,"name":{"289":{}},"parent":{}}],["loadschemabyid",{"_index":210,"name":{"290":{}},"parent":{}}],["log",{"_index":132,"name":{"149":{}},"parent":{}}],["loggerprovider",{"_index":173,"name":{"220":{}},"parent":{"221":{},"222":{},"223":{}}}],["loglevel",{"_index":256,"name":{"447":{}},"parent":{}}],["logmessage",{"_index":215,"name":{"321":{}},"parent":{"322":{},"323":{},"324":{},"325":{},"326":{}}}],["logpath",{"_index":17,"name":{"18":{}},"parent":{}}],["logtofiles",{"_index":4,"name":{"4":{},"17":{},"448":{}},"parent":{"5":{}}}],["logtofilesplugin",{"_index":257,"name":{"449":{}},"parent":{}}],["ls",{"_index":67,"name":{"72":{},"272":{}},"parent":{}}],["main",{"_index":5,"name":{"5":{}},"parent":{}}],["makegenesis",{"_index":155,"name":{"183":{},"527":{},"565":{}},"parent":{}}],["makereadonly",{"_index":93,"name":{"104":{}},"parent":{}}],["message",{"_index":182,"name":{"235":{},"326":{},"399":{},"423":{}},"parent":{}}],["metadata",{"_index":124,"name":{"135":{},"139":{},"144":{},"158":{},"296":{},"523":{},"532":{},"561":{},"570":{}},"parent":{}}],["mockanchorservice",{"_index":227,"name":{"357":{}},"parent":{"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{},"369":{},"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["msgtype",{"_index":213,"name":{"317":{}},"parent":{"318":{},"319":{},"320":{}}}],["name",{"_index":157,"name":{"185":{},"398":{},"422":{},"555":{},"592":{}},"parent":{}}],["network",{"_index":267,"name":{"479":{},"507":{},"513":{}},"parent":{}}],["networkid",{"_index":269,"name":{"482":{},"510":{},"516":{}},"parent":{}}],["next",{"_index":129,"name":{"143":{}},"parent":{}}],["normalizedocid",{"_index":85,"name":{"96":{}},"parent":{}}],["not_requested",{"_index":103,"name":{"114":{}},"parent":{}}],["off",{"_index":142,"name":{"168":{},"196":{},"304":{},"343":{},"365":{},"492":{},"542":{},"580":{}},"parent":{}}],["on",{"_index":139,"name":{"165":{},"193":{},"301":{},"340":{},"362":{},"489":{},"539":{},"577":{}},"parent":{}}],["once",{"_index":140,"name":{"166":{},"194":{},"302":{},"341":{},"363":{},"490":{},"540":{},"578":{}},"parent":{}}],["open",{"_index":190,"name":{"245":{},"253":{},"268":{},"379":{},"391":{},"415":{},"429":{},"438":{}},"parent":{}}],["options",{"_index":161,"name":{"210":{},"452":{}},"parent":{"211":{},"212":{},"213":{},"218":{}}}],["options.stacktrace",{"_index":166,"name":{},"parent":{"214":{}}}],["options.stacktrace.__type",{"_index":168,"name":{},"parent":{"215":{},"216":{},"217":{}}}],["owners",{"_index":119,"name":{"130":{},"138":{},"159":{},"295":{},"533":{},"571":{}},"parent":{}}],["partial",{"_index":100,"name":{"111":{}},"parent":{}}],["path",{"_index":111,"name":{"122":{}},"parent":{}}],["peer",{"_index":216,"name":{"322":{}},"parent":{}}],["pending",{"_index":104,"name":{"115":{}},"parent":{}}],["pin",{"_index":62,"name":{"67":{},"74":{},"255":{},"393":{},"417":{},"431":{},"455":{},"607":{}},"parent":{}}],["pinadd",{"_index":50,"name":{"55":{}},"parent":{}}],["pinapi",{"_index":64,"name":{"69":{}},"parent":{"70":{},"71":{},"72":{}}}],["pindocument",{"_index":32,"name":{"34":{}},"parent":{}}],["pinls",{"_index":52,"name":{"57":{}},"parent":{}}],["pinning",{"_index":14,"name":{"14":{},"252":{},"263":{},"446":{}},"parent":{"253":{},"254":{},"255":{},"256":{}}}],["pinningaggregation",{"_index":249,"name":{"426":{}},"parent":{"427":{},"428":{},"429":{},"430":{},"431":{},"432":{}}}],["pinnings",{"_index":252,"name":{"435":{}},"parent":{}}],["pinningstatic",{"_index":197,"name":{"257":{}},"parent":{"258":{},"259":{}}}],["pinrm",{"_index":51,"name":{"56":{}},"parent":{}}],["pinstore",{"_index":199,"name":{"260":{},"280":{},"459":{}},"parent":{"261":{},"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{},"271":{},"272":{},"273":{}}}],["pinstorefactory",{"_index":251,"name":{"433":{}},"parent":{"434":{},"435":{},"436":{},"437":{},"438":{}}}],["plugin",{"_index":179,"name":{"231":{},"451":{}},"parent":{"232":{}}}],["pluginoptions",{"_index":172,"name":{"219":{}},"parent":{}}],["pointsofinterest",{"_index":202,"name":{"273":{}},"parent":{}}],["port",{"_index":9,"name":{"9":{}},"parent":{}}],["pow",{"_index":246,"name":{"414":{}},"parent":{}}],["powergatepinning",{"_index":243,"name":{"409":{}},"parent":{"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{}}}],["prefix_regex",{"_index":57,"name":{"62":{}},"parent":{}}],["prefixtodrivermap",{"_index":297,"name":{"626":{}},"parent":{"627":{}}}],["prependlistener",{"_index":150,"name":{"176":{},"204":{},"312":{},"351":{},"373":{},"500":{},"550":{},"588":{}},"parent":{}}],["prependoncelistener",{"_index":151,"name":{"177":{},"205":{},"313":{},"352":{},"374":{},"501":{},"551":{},"589":{}},"parent":{}}],["prev",{"_index":109,"name":{"120":{}},"parent":{}}],["processing",{"_index":105,"name":{"116":{}},"parent":{}}],["proof",{"_index":110,"name":{"121":{}},"parent":{}}],["provider",{"_index":79,"name":{"90":{}},"parent":{}}],["publishhead",{"_index":225,"name":{"336":{}},"parent":{}}],["rawlisteners",{"_index":147,"name":{"173":{},"201":{},"309":{},"348":{},"370":{},"497":{},"547":{},"585":{}},"parent":{}}],["records",{"_index":30,"name":{"32":{}},"parent":{}}],["register",{"_index":221,"name":{"332":{}},"parent":{}}],["registerapipaths",{"_index":24,"name":{"26":{}},"parent":{}}],["remove",{"_index":195,"name":{"251":{},"383":{}},"parent":{}}],["removealllisteners",{"_index":143,"name":{"169":{},"197":{},"305":{},"344":{},"366":{},"493":{},"543":{},"581":{}},"parent":{}}],["removelistener",{"_index":141,"name":{"167":{},"195":{},"303":{},"342":{},"364":{},"491":{},"541":{},"579":{}},"parent":{}}],["request",{"_index":19,"name":{"20":{},"319":{}},"parent":{}}],["requestanchor",{"_index":159,"name":{"190":{},"359":{},"486":{}},"parent":{}}],["resolve",{"_index":201,"name":{"266":{}},"parent":{}}],["resolver",{"_index":78,"name":{"89":{}},"parent":{}}],["resolverregistry",{"_index":2,"name":{"2":{}},"parent":{}}],["response",{"_index":20,"name":{"21":{},"320":{}},"parent":{}}],["retrieve",{"_index":200,"name":{"264":{}},"parent":{}}],["retrieverecord",{"_index":224,"name":{"335":{}},"parent":{}}],["rm",{"_index":66,"name":{"71":{},"271":{}},"parent":{}}],["root",{"_index":117,"name":{"128":{}},"parent":{}}],["save",{"_index":191,"name":{"247":{},"380":{}},"parent":{}}],["schema",{"_index":120,"name":{"131":{}},"parent":{}}],["schemachangedoc",{"_index":49,"name":{"54":{}},"parent":{}}],["schemacreatedoc",{"_index":48,"name":{"53":{}},"parent":{}}],["schemas",{"_index":61,"name":{"66":{}},"parent":{}}],["seed",{"_index":41,"name":{"43":{}},"parent":{}}],["serializerecord",{"_index":89,"name":{"100":{}},"parent":{}}],["serializestate",{"_index":91,"name":{"102":{}},"parent":{}}],["setconfig",{"_index":54,"name":{"59":{}},"parent":{}}],["setdidprovider",{"_index":76,"name":{"84":{},"464":{},"621":{}},"parent":{}}],["setmaxlisteners",{"_index":144,"name":{"170":{},"198":{},"306":{},"345":{},"367":{},"494":{},"544":{},"582":{}},"parent":{}}],["show",{"_index":27,"name":{"29":{},"49":{}},"parent":{}}],["showconfig",{"_index":53,"name":{"58":{}},"parent":{}}],["signature",{"_index":130,"name":{"145":{}},"parent":{}}],["signaturestatus",{"_index":98,"name":{"109":{}},"parent":{"110":{},"111":{},"112":{}}}],["signed",{"_index":101,"name":{"112":{}},"parent":{}}],["skipwait",{"_index":135,"name":{"152":{}},"parent":{}}],["stack",{"_index":234,"name":{"400":{},"424":{}},"parent":{}}],["stacktrace",{"_index":164,"name":{"213":{},"227":{}},"parent":{}}],["state",{"_index":28,"name":{"30":{},"50":{},"161":{},"292":{},"535":{},"573":{}},"parent":{}}],["statestore",{"_index":189,"name":{"244":{},"262":{}},"parent":{"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{}}}],["statestorepath",{"_index":12,"name":{"12":{},"434":{},"442":{}},"parent":{}}],["status",{"_index":181,"name":{"234":{}},"parent":{}}],["store",{"_index":229,"name":{"378":{}},"parent":{}}],["storerecord",{"_index":223,"name":{"334":{}},"parent":{}}],["tags",{"_index":121,"name":{"132":{}},"parent":{}}],["tiledoctype",{"_index":285,"name":{"562":{}},"parent":{"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{}}}],["tiledoctypehandler",{"_index":286,"name":{"591":{}},"parent":{"592":{},"593":{},"594":{},"595":{},"596":{}}}],["tileparams",{"_index":284,"name":{"559":{}},"parent":{"560":{},"561":{}}}],["toapipath",{"_index":38,"name":{"40":{}},"parent":{}}],["token",{"_index":245,"name":{"412":{}},"parent":{}}],["topic",{"_index":218,"name":{"324":{},"330":{},"356":{},"454":{}},"parent":{}}],["tostring",{"_index":212,"name":{"299":{}},"parent":{}}],["txhash",{"_index":116,"name":{"127":{}},"parent":{}}],["type",{"_index":270,"name":{"483":{},"511":{},"517":{}},"parent":{}}],["unknownpinningservice",{"_index":248,"name":{"420":{}},"parent":{"421":{},"422":{},"423":{},"424":{},"425":{}}}],["unpin",{"_index":196,"name":{"256":{},"394":{},"418":{},"432":{}},"parent":{}}],["unpindocument",{"_index":33,"name":{"35":{}},"parent":{}}],["unregister",{"_index":222,"name":{"333":{}},"parent":{}}],["unsetconfig",{"_index":55,"name":{"60":{}},"parent":{}}],["update",{"_index":214,"name":{"318":{}},"parent":{}}],["utils",{"_index":183,"name":{"238":{}},"parent":{"239":{},"240":{},"241":{},"242":{},"243":{}}}],["validate",{"_index":187,"name":{"242":{},"283":{},"537":{},"575":{}},"parent":{}}],["validatechaininclusion",{"_index":160,"name":{"191":{},"360":{},"487":{}},"parent":{}}],["validatedocs",{"_index":13,"name":{"13":{},"445":{}},"parent":{}}],["validatedoctype",{"_index":188,"name":{"243":{}},"parent":{}}],["validator",{"_index":184,"name":{"239":{}},"parent":{}}],["verifyjws",{"_index":287,"name":{"596":{}},"parent":{}}],["version",{"_index":205,"name":{"277":{}},"parent":{}}],["versions",{"_index":29,"name":{"31":{},"52":{}},"parent":{}}],["wait",{"_index":211,"name":{"297":{}},"parent":{}}],["waitforjobstatus",{"_index":247,"name":{"419":{}},"parent":{}}],["watch",{"_index":47,"name":{"51":{}},"parent":{}}],["wrapdocument",{"_index":3,"name":{"3":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +{"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Ceramic","url":"classes/ceramic.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"loadDocument","url":"classes/ceramic.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":2,"kind":256,"name":"ResolverRegistry","url":"interfaces/resolverregistry.html","classes":"tsd-kind-interface"},{"id":3,"kind":64,"name":"wrapDocument","url":"globals.html#wrapdocument","classes":"tsd-kind-function"},{"id":4,"kind":128,"name":"LogToFiles","url":"classes/logtofiles.html","classes":"tsd-kind-class"},{"id":5,"kind":2048,"name":"main","url":"classes/logtofiles.html#main","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LogToFiles"},{"id":6,"kind":256,"name":"CreateOpts","url":"interfaces/createopts.html","classes":"tsd-kind-interface"},{"id":7,"kind":1024,"name":"ipfsHost","url":"interfaces/createopts.html#ipfshost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":8,"kind":1024,"name":"ipfs","url":"interfaces/createopts.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":9,"kind":1024,"name":"port","url":"interfaces/createopts.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":10,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/createopts.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":11,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/createopts.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":12,"kind":1024,"name":"stateStorePath","url":"interfaces/createopts.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":13,"kind":1024,"name":"validateDocs","url":"interfaces/createopts.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":14,"kind":1024,"name":"pinning","url":"interfaces/createopts.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":15,"kind":1024,"name":"gateway","url":"interfaces/createopts.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":16,"kind":1024,"name":"debug","url":"interfaces/createopts.html#debug","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":17,"kind":1024,"name":"logToFiles","url":"interfaces/createopts.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":18,"kind":1024,"name":"logPath","url":"interfaces/createopts.html#logpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":19,"kind":256,"name":"HttpLog","url":"interfaces/httplog.html","classes":"tsd-kind-interface"},{"id":20,"kind":1024,"name":"request","url":"interfaces/httplog.html#request","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":21,"kind":1024,"name":"response","url":"interfaces/httplog.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":22,"kind":128,"name":"CeramicDaemon","url":"classes/ceramicdaemon.html","classes":"tsd-kind-class"},{"id":23,"kind":512,"name":"constructor","url":"classes/ceramicdaemon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":24,"kind":1024,"name":"ceramic","url":"classes/ceramicdaemon.html#ceramic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":25,"kind":2048,"name":"create","url":"classes/ceramicdaemon.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicDaemon"},{"id":26,"kind":2048,"name":"registerAPIPaths","url":"classes/ceramicdaemon.html#registerapipaths","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":27,"kind":2048,"name":"_buildHttpLog","url":"classes/ceramicdaemon.html#_buildhttplog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":28,"kind":2048,"name":"createDocFromGenesis","url":"classes/ceramicdaemon.html#createdocfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":29,"kind":2048,"name":"show","url":"classes/ceramicdaemon.html#show","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":30,"kind":2048,"name":"state","url":"classes/ceramicdaemon.html#state","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":31,"kind":2048,"name":"versions","url":"classes/ceramicdaemon.html#versions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":32,"kind":2048,"name":"records","url":"classes/ceramicdaemon.html#records","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":33,"kind":2048,"name":"applyRecord","url":"classes/ceramicdaemon.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":34,"kind":2048,"name":"pinDocument","url":"classes/ceramicdaemon.html#pindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":35,"kind":2048,"name":"unpinDocument","url":"classes/ceramicdaemon.html#unpindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":36,"kind":2048,"name":"listPinned","url":"classes/ceramicdaemon.html#listpinned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":37,"kind":2048,"name":"_notSupported","url":"classes/ceramicdaemon.html#_notsupported","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":38,"kind":2048,"name":"close","url":"classes/ceramicdaemon.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":39,"kind":32,"name":"DEFAULT_PORT","url":"globals.html#default_port","classes":"tsd-kind-variable"},{"id":40,"kind":64,"name":"toApiPath","url":"globals.html#toapipath","classes":"tsd-kind-function"},{"id":41,"kind":32,"name":"DEFAULT_ANCHOR_SERVICE_URL","url":"globals.html#default_anchor_service_url","classes":"tsd-kind-variable"},{"id":42,"kind":256,"name":"CliConfig","url":"interfaces/cliconfig.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"seed","url":"interfaces/cliconfig.html#seed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":44,"kind":1024,"name":"ceramicHost","url":"interfaces/cliconfig.html#ceramichost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":45,"kind":128,"name":"CeramicCliUtils","url":"classes/ceramiccliutils.html","classes":"tsd-kind-class"},{"id":46,"kind":2048,"name":"createDaemon","url":"classes/ceramiccliutils.html#createdaemon","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":47,"kind":2048,"name":"createDoc","url":"classes/ceramiccliutils.html#createdoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":48,"kind":2048,"name":"change","url":"classes/ceramiccliutils.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":49,"kind":2048,"name":"show","url":"classes/ceramiccliutils.html#show","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":50,"kind":2048,"name":"state","url":"classes/ceramiccliutils.html#state","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":51,"kind":2048,"name":"watch","url":"classes/ceramiccliutils.html#watch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":52,"kind":2048,"name":"versions","url":"classes/ceramiccliutils.html#versions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":53,"kind":2048,"name":"schemaCreateDoc","url":"classes/ceramiccliutils.html#schemacreatedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":54,"kind":2048,"name":"schemaChangeDoc","url":"classes/ceramiccliutils.html#schemachangedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":55,"kind":2048,"name":"pinAdd","url":"classes/ceramiccliutils.html#pinadd","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":56,"kind":2048,"name":"pinRm","url":"classes/ceramiccliutils.html#pinrm","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":57,"kind":2048,"name":"pinLs","url":"classes/ceramiccliutils.html#pinls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":58,"kind":2048,"name":"showConfig","url":"classes/ceramiccliutils.html#showconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":59,"kind":2048,"name":"setConfig","url":"classes/ceramiccliutils.html#setconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":60,"kind":2048,"name":"unsetConfig","url":"classes/ceramiccliutils.html#unsetconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":61,"kind":32,"name":"fs","url":"globals.html#fs","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"DEFAULT_CLI_CONFIG_FILE","url":"globals.html#default_cli_config_file","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"DEFAULT_PINNING_STORE_PATH","url":"globals.html#default_pinning_store_path","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"DEFAULT_CLI_CONFIG_PATH","url":"globals.html#default_cli_config_path","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"schemas","url":"globals.html#schemas","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"pin","url":"globals.html#pin","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"config","url":"globals.html#config","classes":"tsd-kind-variable"},{"id":68,"kind":256,"name":"PinApi","url":"interfaces/pinapi.html","classes":"tsd-kind-interface"},{"id":69,"kind":2048,"name":"add","url":"interfaces/pinapi.html#add","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":70,"kind":2048,"name":"rm","url":"interfaces/pinapi.html#rm","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":71,"kind":2048,"name":"ls","url":"interfaces/pinapi.html#ls","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":72,"kind":256,"name":"CeramicApi","url":"interfaces/ceramicapi.html","classes":"tsd-kind-interface"},{"id":73,"kind":1024,"name":"pin","url":"interfaces/ceramicapi.html#pin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":74,"kind":1024,"name":"did","url":"interfaces/ceramicapi.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":75,"kind":2048,"name":"addDoctypeHandler","url":"interfaces/ceramicapi.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":76,"kind":2048,"name":"findDoctypeHandler","url":"interfaces/ceramicapi.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":77,"kind":2048,"name":"createDocument","url":"interfaces/ceramicapi.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":78,"kind":2048,"name":"createDocumentFromGenesis","url":"interfaces/ceramicapi.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":79,"kind":2048,"name":"loadDocument","url":"interfaces/ceramicapi.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":80,"kind":2048,"name":"loadDocumentRecords","url":"interfaces/ceramicapi.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":81,"kind":2048,"name":"listVersions","url":"interfaces/ceramicapi.html#listversions","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":82,"kind":2048,"name":"applyRecord","url":"interfaces/ceramicapi.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":83,"kind":2048,"name":"setDIDProvider","url":"interfaces/ceramicapi.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":84,"kind":2048,"name":"close","url":"interfaces/ceramicapi.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":85,"kind":256,"name":"Context","url":"interfaces/context.html","classes":"tsd-kind-interface"},{"id":86,"kind":1024,"name":"did","url":"interfaces/context.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":87,"kind":1024,"name":"ipfs","url":"interfaces/context.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":88,"kind":1024,"name":"resolver","url":"interfaces/context.html#resolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":89,"kind":1024,"name":"provider","url":"interfaces/context.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":90,"kind":1024,"name":"anchorService","url":"interfaces/context.html#anchorservice","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":91,"kind":1024,"name":"api","url":"interfaces/context.html#api","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":92,"kind":4,"name":"SignatureStatus","url":"enums/signaturestatus.html","classes":"tsd-kind-enum"},{"id":93,"kind":16,"name":"GENESIS","url":"enums/signaturestatus.html#genesis","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":94,"kind":16,"name":"PARTIAL","url":"enums/signaturestatus.html#partial","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":95,"kind":16,"name":"SIGNED","url":"enums/signaturestatus.html#signed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":96,"kind":4,"name":"AnchorStatus","url":"enums/anchorstatus.html","classes":"tsd-kind-enum"},{"id":97,"kind":16,"name":"NOT_REQUESTED","url":"enums/anchorstatus.html#not_requested","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":98,"kind":16,"name":"PENDING","url":"enums/anchorstatus.html#pending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":99,"kind":16,"name":"PROCESSING","url":"enums/anchorstatus.html#processing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":100,"kind":16,"name":"ANCHORED","url":"enums/anchorstatus.html#anchored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":101,"kind":16,"name":"FAILED","url":"enums/anchorstatus.html#failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":102,"kind":256,"name":"AnchorRecord","url":"interfaces/anchorrecord.html","classes":"tsd-kind-interface"},{"id":103,"kind":1024,"name":"prev","url":"interfaces/anchorrecord.html#prev","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":104,"kind":1024,"name":"proof","url":"interfaces/anchorrecord.html#proof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":105,"kind":1024,"name":"path","url":"interfaces/anchorrecord.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":106,"kind":256,"name":"AnchorProof","url":"interfaces/anchorproof.html","classes":"tsd-kind-interface"},{"id":107,"kind":1024,"name":"chainId","url":"interfaces/anchorproof.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":108,"kind":1024,"name":"blockNumber","url":"interfaces/anchorproof.html#blocknumber","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":109,"kind":1024,"name":"blockTimestamp","url":"interfaces/anchorproof.html#blocktimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":110,"kind":1024,"name":"txHash","url":"interfaces/anchorproof.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":111,"kind":1024,"name":"root","url":"interfaces/anchorproof.html#root","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":112,"kind":256,"name":"DocMetadata","url":"interfaces/docmetadata.html","classes":"tsd-kind-interface"},{"id":113,"kind":1024,"name":"controllers","url":"interfaces/docmetadata.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":114,"kind":1024,"name":"schema","url":"interfaces/docmetadata.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":115,"kind":1024,"name":"tags","url":"interfaces/docmetadata.html#tags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":116,"kind":1024,"name":"isUnique","url":"interfaces/docmetadata.html#isunique","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":117,"kind":256,"name":"DocParams","url":"interfaces/docparams.html","classes":"tsd-kind-interface"},{"id":118,"kind":1024,"name":"metadata","url":"interfaces/docparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocParams"},{"id":119,"kind":256,"name":"DocNext","url":"interfaces/docnext.html","classes":"tsd-kind-interface"},{"id":120,"kind":1024,"name":"content","url":"interfaces/docnext.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":121,"kind":1024,"name":"controllers","url":"interfaces/docnext.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":122,"kind":1024,"name":"metadata","url":"interfaces/docnext.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":123,"kind":256,"name":"DocState","url":"interfaces/docstate.html","classes":"tsd-kind-interface"},{"id":124,"kind":1024,"name":"doctype","url":"interfaces/docstate.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":125,"kind":1024,"name":"content","url":"interfaces/docstate.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":126,"kind":1024,"name":"next","url":"interfaces/docstate.html#next","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":127,"kind":1024,"name":"metadata","url":"interfaces/docstate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":128,"kind":1024,"name":"signature","url":"interfaces/docstate.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":129,"kind":1024,"name":"anchorStatus","url":"interfaces/docstate.html#anchorstatus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":130,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/docstate.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":131,"kind":1024,"name":"anchorProof","url":"interfaces/docstate.html#anchorproof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":132,"kind":1024,"name":"log","url":"interfaces/docstate.html#log","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":133,"kind":256,"name":"DocOpts","url":"interfaces/docopts.html","classes":"tsd-kind-interface"},{"id":134,"kind":1024,"name":"applyOnly","url":"interfaces/docopts.html#applyonly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":135,"kind":1024,"name":"skipWait","url":"interfaces/docopts.html#skipwait","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":136,"kind":128,"name":"Doctype","url":"classes/doctype.html","classes":"tsd-kind-class"},{"id":137,"kind":512,"name":"constructor","url":"classes/doctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Doctype"},{"id":138,"kind":262144,"name":"id","url":"classes/doctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":139,"kind":262144,"name":"doctype","url":"classes/doctype.html#doctype-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":140,"kind":262144,"name":"content","url":"classes/doctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":141,"kind":262144,"name":"metadata","url":"classes/doctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":142,"kind":262144,"name":"controllers","url":"classes/doctype.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":143,"kind":262144,"name":"head","url":"classes/doctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":144,"kind":262144,"name":"state","url":"classes/doctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":145,"kind":262144,"name":"context","url":"classes/doctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":146,"kind":2048,"name":"change","url":"classes/doctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Doctype"},{"id":147,"kind":2048,"name":"addListener","url":"classes/doctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":148,"kind":2048,"name":"on","url":"classes/doctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":149,"kind":2048,"name":"once","url":"classes/doctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":150,"kind":2048,"name":"removeListener","url":"classes/doctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":151,"kind":2048,"name":"off","url":"classes/doctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":152,"kind":2048,"name":"removeAllListeners","url":"classes/doctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":153,"kind":2048,"name":"setMaxListeners","url":"classes/doctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":154,"kind":2048,"name":"getMaxListeners","url":"classes/doctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":155,"kind":2048,"name":"listeners","url":"classes/doctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":156,"kind":2048,"name":"rawListeners","url":"classes/doctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":157,"kind":2048,"name":"emit","url":"classes/doctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":158,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":159,"kind":2048,"name":"prependListener","url":"classes/doctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":160,"kind":2048,"name":"prependOnceListener","url":"classes/doctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":161,"kind":2048,"name":"eventNames","url":"classes/doctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":162,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":163,"kind":1024,"name":"defaultMaxListeners","url":"classes/doctype.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":164,"kind":256,"name":"DoctypeConstructor","url":"interfaces/doctypeconstructor.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":165,"kind":512,"name":"constructor","url":"interfaces/doctypeconstructor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":166,"kind":2048,"name":"makeGenesis","url":"interfaces/doctypeconstructor.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":167,"kind":256,"name":"DoctypeHandler","url":"interfaces/doctypehandler.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":168,"kind":1024,"name":"name","url":"interfaces/doctypehandler.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":169,"kind":1024,"name":"doctype","url":"interfaces/doctypehandler.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":170,"kind":2048,"name":"applyRecord","url":"interfaces/doctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":171,"kind":64,"name":"DoctypeStatic","url":"globals.html#doctypestatic","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":172,"kind":128,"name":"AnchorService","url":"classes/anchorservice.html","classes":"tsd-kind-class"},{"id":173,"kind":2048,"name":"requestAnchor","url":"classes/anchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":174,"kind":2048,"name":"validateChainInclusion","url":"classes/anchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":175,"kind":2048,"name":"addListener","url":"classes/anchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":176,"kind":2048,"name":"on","url":"classes/anchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":177,"kind":2048,"name":"once","url":"classes/anchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":178,"kind":2048,"name":"removeListener","url":"classes/anchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":179,"kind":2048,"name":"off","url":"classes/anchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":180,"kind":2048,"name":"removeAllListeners","url":"classes/anchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":181,"kind":2048,"name":"setMaxListeners","url":"classes/anchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":182,"kind":2048,"name":"getMaxListeners","url":"classes/anchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":183,"kind":2048,"name":"listeners","url":"classes/anchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":184,"kind":2048,"name":"rawListeners","url":"classes/anchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":185,"kind":2048,"name":"emit","url":"classes/anchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":186,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":187,"kind":2048,"name":"prependListener","url":"classes/anchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":188,"kind":2048,"name":"prependOnceListener","url":"classes/anchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":189,"kind":2048,"name":"eventNames","url":"classes/anchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":190,"kind":512,"name":"constructor","url":"classes/anchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":191,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":192,"kind":1024,"name":"defaultMaxListeners","url":"classes/anchorservice.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":193,"kind":128,"name":"DoctypeUtils","url":"classes/doctypeutils.html","classes":"tsd-kind-class"},{"id":194,"kind":2048,"name":"serializeRecord","url":"classes/doctypeutils.html#serializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":195,"kind":2048,"name":"deserializeRecord","url":"classes/doctypeutils.html#deserializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":196,"kind":2048,"name":"serializeState","url":"classes/doctypeutils.html#serializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":197,"kind":2048,"name":"deserializeState","url":"classes/doctypeutils.html#deserializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":198,"kind":2048,"name":"makeReadOnly","url":"classes/doctypeutils.html#makereadonly","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"DoctypeUtils"},{"id":199,"kind":2048,"name":"convertRecordToDTO","url":"classes/doctypeutils.html#convertrecordtodto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":200,"kind":2048,"name":"isSignedRecordDTO","url":"classes/doctypeutils.html#issignedrecorddto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":201,"kind":2048,"name":"isSignedRecord","url":"classes/doctypeutils.html#issignedrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":202,"kind":2048,"name":"isAnchorRecord","url":"classes/doctypeutils.html#isanchorrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":203,"kind":256,"name":"Options","url":"interfaces/options.html","classes":"tsd-kind-interface"},{"id":204,"kind":1024,"name":"level","url":"interfaces/options.html#level","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":205,"kind":1024,"name":"format","url":"interfaces/options.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":206,"kind":1024,"name":"stacktrace","url":"interfaces/options.html#stacktrace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":207,"kind":65536,"name":"__type","url":"interfaces/options.html#stacktrace.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Options.stacktrace"},{"id":208,"kind":32,"name":"levels","url":"interfaces/options.html#stacktrace.__type.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":209,"kind":32,"name":"depth","url":"interfaces/options.html#stacktrace.__type.depth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":210,"kind":32,"name":"excess","url":"interfaces/options.html#stacktrace.__type.excess","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":211,"kind":1024,"name":"component","url":"interfaces/options.html#component","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":212,"kind":256,"name":"PluginOptions","url":"interfaces/pluginoptions.html","classes":"tsd-kind-interface"},{"id":213,"kind":128,"name":"LoggerProvider","url":"classes/loggerprovider.html","classes":"tsd-kind-class"},{"id":214,"kind":2048,"name":"init","url":"classes/loggerprovider.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":215,"kind":2048,"name":"addPlugin","url":"classes/loggerprovider.html#addplugin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":216,"kind":2048,"name":"_toText","url":"classes/loggerprovider.html#_totext","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":217,"kind":2097152,"name":"defaultOpts","url":"globals.html#defaultopts","classes":"tsd-kind-object-literal"},{"id":218,"kind":32,"name":"level","url":"globals.html#defaultopts.level","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":219,"kind":32,"name":"format","url":"globals.html#defaultopts.format","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":220,"kind":2097152,"name":"stacktrace","url":"globals.html#defaultopts.stacktrace","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":221,"kind":32,"name":"levels","url":"globals.html#defaultopts.stacktrace.levels","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":222,"kind":32,"name":"depth","url":"globals.html#defaultopts.stacktrace.depth","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":223,"kind":32,"name":"excess","url":"globals.html#defaultopts.stacktrace.excess","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":224,"kind":4194304,"name":"Plugin","url":"globals.html#plugin","classes":"tsd-kind-type-alias"},{"id":225,"kind":65536,"name":"__type","url":"globals.html#plugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Plugin"},{"id":226,"kind":256,"name":"AnchorServiceResponse","url":"interfaces/anchorserviceresponse.html","classes":"tsd-kind-interface"},{"id":227,"kind":1024,"name":"status","url":"interfaces/anchorserviceresponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":228,"kind":1024,"name":"message","url":"interfaces/anchorserviceresponse.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":229,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/anchorserviceresponse.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":230,"kind":1024,"name":"anchorRecord","url":"interfaces/anchorserviceresponse.html#anchorrecord","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":231,"kind":128,"name":"Utils","url":"classes/utils.html","classes":"tsd-kind-class"},{"id":232,"kind":1024,"name":"validator","url":"classes/utils.html#validator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":233,"kind":2048,"name":"awaitCondition","url":"classes/utils.html#awaitcondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":234,"kind":2048,"name":"isSchemaValid","url":"classes/utils.html#isschemavalid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":235,"kind":2048,"name":"validate","url":"classes/utils.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":236,"kind":2048,"name":"validateDoctype","url":"classes/utils.html#validatedoctype","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":237,"kind":256,"name":"StateStore","url":"interfaces/statestore.html","classes":"tsd-kind-interface"},{"id":238,"kind":2048,"name":"open","url":"interfaces/statestore.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":239,"kind":2048,"name":"close","url":"interfaces/statestore.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":240,"kind":2048,"name":"save","url":"interfaces/statestore.html#save","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":241,"kind":2048,"name":"load","url":"interfaces/statestore.html#load","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":242,"kind":2048,"name":"exists","url":"interfaces/statestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":243,"kind":2048,"name":"list","url":"interfaces/statestore.html#list","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":244,"kind":2048,"name":"remove","url":"interfaces/statestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":245,"kind":256,"name":"Pinning","url":"interfaces/pinning.html","classes":"tsd-kind-interface"},{"id":246,"kind":2048,"name":"open","url":"interfaces/pinning.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":247,"kind":2048,"name":"close","url":"interfaces/pinning.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":248,"kind":2048,"name":"pin","url":"interfaces/pinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":249,"kind":2048,"name":"unpin","url":"interfaces/pinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":250,"kind":256,"name":"PinningStatic","url":"interfaces/pinningstatic.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"designator","url":"interfaces/pinningstatic.html#designator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PinningStatic"},{"id":252,"kind":512,"name":"constructor","url":"interfaces/pinningstatic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"PinningStatic"},{"id":253,"kind":128,"name":"PinStore","url":"classes/pinstore.html","classes":"tsd-kind-class"},{"id":254,"kind":512,"name":"constructor","url":"classes/pinstore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStore"},{"id":255,"kind":1024,"name":"stateStore","url":"classes/pinstore.html#statestore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":256,"kind":1024,"name":"pinning","url":"classes/pinstore.html#pinning","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":257,"kind":1024,"name":"retrieve","url":"classes/pinstore.html#retrieve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":258,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":259,"kind":1024,"name":"resolve","url":"classes/pinstore.html#resolve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":260,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":261,"kind":2048,"name":"open","url":"classes/pinstore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":262,"kind":2048,"name":"close","url":"classes/pinstore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":263,"kind":2048,"name":"add","url":"classes/pinstore.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":264,"kind":2048,"name":"rm","url":"classes/pinstore.html#rm","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":265,"kind":2048,"name":"ls","url":"classes/pinstore.html#ls","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":266,"kind":2048,"name":"pointsOfInterest","url":"classes/pinstore.html#pointsofinterest","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PinStore"},{"id":267,"kind":128,"name":"Document","url":"classes/document.html","classes":"tsd-kind-class"},{"id":268,"kind":1024,"name":"_context","url":"classes/document.html#_context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":269,"kind":1024,"name":"id","url":"classes/document.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":270,"kind":1024,"name":"version","url":"classes/document.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":271,"kind":512,"name":"constructor","url":"classes/document.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":272,"kind":1024,"name":"dispatcher","url":"classes/document.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":273,"kind":1024,"name":"pinStore","url":"classes/document.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":274,"kind":2048,"name":"create","url":"classes/document.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":275,"kind":2048,"name":"load","url":"classes/document.html#load","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":276,"kind":2048,"name":"validate","url":"classes/document.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":277,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":278,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Document"},{"id":279,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":280,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":281,"kind":2048,"name":"anchor","url":"classes/document.html#anchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":282,"kind":2048,"name":"loadSchema","url":"classes/document.html#loadschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":283,"kind":2048,"name":"loadSchemaById","url":"classes/document.html#loadschemabyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":284,"kind":262144,"name":"content","url":"classes/document.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":285,"kind":262144,"name":"state","url":"classes/document.html#state","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":286,"kind":262144,"name":"doctype","url":"classes/document.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":287,"kind":262144,"name":"head","url":"classes/document.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":288,"kind":262144,"name":"controllers","url":"classes/document.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Document"},{"id":289,"kind":262144,"name":"metadata","url":"classes/document.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":290,"kind":2048,"name":"wait","url":"classes/document.html#wait","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":291,"kind":2048,"name":"close","url":"classes/document.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":292,"kind":2048,"name":"toString","url":"classes/document.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":293,"kind":2048,"name":"addListener","url":"classes/document.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":294,"kind":2048,"name":"on","url":"classes/document.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":295,"kind":2048,"name":"once","url":"classes/document.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":296,"kind":2048,"name":"removeListener","url":"classes/document.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":297,"kind":2048,"name":"off","url":"classes/document.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":298,"kind":2048,"name":"removeAllListeners","url":"classes/document.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":299,"kind":2048,"name":"setMaxListeners","url":"classes/document.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":300,"kind":2048,"name":"getMaxListeners","url":"classes/document.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":301,"kind":2048,"name":"listeners","url":"classes/document.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":302,"kind":2048,"name":"rawListeners","url":"classes/document.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":303,"kind":2048,"name":"emit","url":"classes/document.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":304,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":305,"kind":2048,"name":"prependListener","url":"classes/document.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":306,"kind":2048,"name":"prependOnceListener","url":"classes/document.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":307,"kind":2048,"name":"eventNames","url":"classes/document.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":308,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":309,"kind":1024,"name":"defaultMaxListeners","url":"classes/document.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":310,"kind":4,"name":"MsgType","url":"enums/msgtype.html","classes":"tsd-kind-enum"},{"id":311,"kind":16,"name":"UPDATE","url":"enums/msgtype.html#update","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":312,"kind":16,"name":"REQUEST","url":"enums/msgtype.html#request","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":313,"kind":16,"name":"RESPONSE","url":"enums/msgtype.html#response","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":314,"kind":256,"name":"LogMessage","url":"interfaces/logmessage.html","classes":"tsd-kind-interface"},{"id":315,"kind":1024,"name":"peer","url":"interfaces/logmessage.html#peer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":316,"kind":1024,"name":"event","url":"interfaces/logmessage.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":317,"kind":1024,"name":"topic","url":"interfaces/logmessage.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":318,"kind":1024,"name":"from","url":"interfaces/logmessage.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":319,"kind":1024,"name":"message","url":"interfaces/logmessage.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":320,"kind":128,"name":"Dispatcher","url":"classes/dispatcher.html","classes":"tsd-kind-class"},{"id":321,"kind":512,"name":"constructor","url":"classes/dispatcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Dispatcher"},{"id":322,"kind":1024,"name":"_ipfs","url":"classes/dispatcher.html#_ipfs","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":323,"kind":1024,"name":"topic","url":"classes/dispatcher.html#topic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":324,"kind":2048,"name":"init","url":"classes/dispatcher.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":325,"kind":2048,"name":"register","url":"classes/dispatcher.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":326,"kind":2048,"name":"unregister","url":"classes/dispatcher.html#unregister","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":327,"kind":2048,"name":"storeRecord","url":"classes/dispatcher.html#storerecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":328,"kind":2048,"name":"retrieveRecord","url":"classes/dispatcher.html#retrieverecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":329,"kind":2048,"name":"publishHead","url":"classes/dispatcher.html#publishhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":330,"kind":2048,"name":"handleMessage","url":"classes/dispatcher.html#handlemessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":331,"kind":2048,"name":"close","url":"classes/dispatcher.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":332,"kind":2048,"name":"addListener","url":"classes/dispatcher.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":333,"kind":2048,"name":"on","url":"classes/dispatcher.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":334,"kind":2048,"name":"once","url":"classes/dispatcher.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":335,"kind":2048,"name":"removeListener","url":"classes/dispatcher.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":336,"kind":2048,"name":"off","url":"classes/dispatcher.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":337,"kind":2048,"name":"removeAllListeners","url":"classes/dispatcher.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":338,"kind":2048,"name":"setMaxListeners","url":"classes/dispatcher.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":339,"kind":2048,"name":"getMaxListeners","url":"classes/dispatcher.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":340,"kind":2048,"name":"listeners","url":"classes/dispatcher.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":341,"kind":2048,"name":"rawListeners","url":"classes/dispatcher.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":342,"kind":2048,"name":"emit","url":"classes/dispatcher.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":343,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":344,"kind":2048,"name":"prependListener","url":"classes/dispatcher.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":345,"kind":2048,"name":"prependOnceListener","url":"classes/dispatcher.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":346,"kind":2048,"name":"eventNames","url":"classes/dispatcher.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":347,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":348,"kind":1024,"name":"defaultMaxListeners","url":"classes/dispatcher.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":349,"kind":32,"name":"TOPIC","url":"globals.html#topic","classes":"tsd-kind-variable"},{"id":350,"kind":128,"name":"MockAnchorService","url":"classes/mockanchorservice.html","classes":"tsd-kind-class"},{"id":351,"kind":512,"name":"constructor","url":"classes/mockanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"MockAnchorService"},{"id":352,"kind":2048,"name":"requestAnchor","url":"classes/mockanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":353,"kind":2048,"name":"validateChainInclusion","url":"classes/mockanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":354,"kind":2048,"name":"addListener","url":"classes/mockanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":355,"kind":2048,"name":"on","url":"classes/mockanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":356,"kind":2048,"name":"once","url":"classes/mockanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":357,"kind":2048,"name":"removeListener","url":"classes/mockanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":358,"kind":2048,"name":"off","url":"classes/mockanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":359,"kind":2048,"name":"removeAllListeners","url":"classes/mockanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":360,"kind":2048,"name":"setMaxListeners","url":"classes/mockanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":361,"kind":2048,"name":"getMaxListeners","url":"classes/mockanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":362,"kind":2048,"name":"listeners","url":"classes/mockanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":363,"kind":2048,"name":"rawListeners","url":"classes/mockanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":364,"kind":2048,"name":"emit","url":"classes/mockanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":365,"kind":2048,"name":"listenerCount","url":"classes/mockanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":366,"kind":2048,"name":"prependListener","url":"classes/mockanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":367,"kind":2048,"name":"prependOnceListener","url":"classes/mockanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":368,"kind":2048,"name":"eventNames","url":"classes/mockanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":369,"kind":128,"name":"LevelStateStore","url":"classes/levelstatestore.html","classes":"tsd-kind-class"},{"id":370,"kind":512,"name":"constructor","url":"classes/levelstatestore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LevelStateStore"},{"id":371,"kind":262144,"name":"store","url":"classes/levelstatestore.html#store","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LevelStateStore"},{"id":372,"kind":2048,"name":"open","url":"classes/levelstatestore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":373,"kind":2048,"name":"save","url":"classes/levelstatestore.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":374,"kind":2048,"name":"load","url":"classes/levelstatestore.html#load","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":375,"kind":2048,"name":"exists","url":"classes/levelstatestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":376,"kind":2048,"name":"remove","url":"classes/levelstatestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":377,"kind":2048,"name":"list","url":"classes/levelstatestore.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":378,"kind":2048,"name":"close","url":"classes/levelstatestore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":379,"kind":128,"name":"IpfsPinning","url":"classes/ipfspinning.html","classes":"tsd-kind-class"},{"id":380,"kind":1024,"name":"designator","url":"classes/ipfspinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"IpfsPinning"},{"id":381,"kind":1024,"name":"ipfsAddress","url":"classes/ipfspinning.html#ipfsaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IpfsPinning"},{"id":382,"kind":512,"name":"constructor","url":"classes/ipfspinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"IpfsPinning"},{"id":383,"kind":262144,"name":"ipfs","url":"classes/ipfspinning.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"IpfsPinning"},{"id":384,"kind":2048,"name":"open","url":"classes/ipfspinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":385,"kind":2048,"name":"close","url":"classes/ipfspinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":386,"kind":2048,"name":"pin","url":"classes/ipfspinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":387,"kind":2048,"name":"unpin","url":"classes/ipfspinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":388,"kind":32,"name":"FROM_CONTEXT","url":"globals.html#from_context","classes":"tsd-kind-variable"},{"id":389,"kind":128,"name":"EmptyTokenError","url":"classes/emptytokenerror.html","classes":"tsd-kind-class"},{"id":390,"kind":512,"name":"constructor","url":"classes/emptytokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EmptyTokenError"},{"id":391,"kind":1024,"name":"name","url":"classes/emptytokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":392,"kind":1024,"name":"message","url":"classes/emptytokenerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":393,"kind":1024,"name":"stack","url":"classes/emptytokenerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"EmptyTokenError"},{"id":394,"kind":1024,"name":"Error","url":"classes/emptytokenerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EmptyTokenError"},{"id":395,"kind":4,"name":"JobStatus","url":"enums/jobstatus.html","classes":"tsd-kind-enum"},{"id":396,"kind":16,"name":"JOB_STATUS_UNSPECIFIED","url":"enums/jobstatus.html#job_status_unspecified","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":397,"kind":16,"name":"JOB_STATUS_QUEUED","url":"enums/jobstatus.html#job_status_queued","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":398,"kind":16,"name":"JOB_STATUS_EXECUTING","url":"enums/jobstatus.html#job_status_executing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":399,"kind":16,"name":"JOB_STATUS_FAILED","url":"enums/jobstatus.html#job_status_failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":400,"kind":16,"name":"JOB_STATUS_CANCELED","url":"enums/jobstatus.html#job_status_canceled","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":401,"kind":16,"name":"JOB_STATUS_SUCCESS","url":"enums/jobstatus.html#job_status_success","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":402,"kind":128,"name":"PowergatePinning","url":"classes/powergatepinning.html","classes":"tsd-kind-class"},{"id":403,"kind":1024,"name":"designator","url":"classes/powergatepinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PowergatePinning"},{"id":404,"kind":1024,"name":"endpoint","url":"classes/powergatepinning.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":405,"kind":1024,"name":"token","url":"classes/powergatepinning.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":406,"kind":512,"name":"constructor","url":"classes/powergatepinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PowergatePinning"},{"id":407,"kind":262144,"name":"pow","url":"classes/powergatepinning.html#pow","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PowergatePinning"},{"id":408,"kind":2048,"name":"open","url":"classes/powergatepinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":409,"kind":2048,"name":"close","url":"classes/powergatepinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":410,"kind":2048,"name":"pin","url":"classes/powergatepinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":411,"kind":2048,"name":"unpin","url":"classes/powergatepinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":412,"kind":2048,"name":"waitForJobStatus","url":"classes/powergatepinning.html#waitforjobstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PowergatePinning"},{"id":413,"kind":128,"name":"UnknownPinningService","url":"classes/unknownpinningservice.html","classes":"tsd-kind-class"},{"id":414,"kind":512,"name":"constructor","url":"classes/unknownpinningservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UnknownPinningService"},{"id":415,"kind":1024,"name":"name","url":"classes/unknownpinningservice.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":416,"kind":1024,"name":"message","url":"classes/unknownpinningservice.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":417,"kind":1024,"name":"stack","url":"classes/unknownpinningservice.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"UnknownPinningService"},{"id":418,"kind":1024,"name":"Error","url":"classes/unknownpinningservice.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"UnknownPinningService"},{"id":419,"kind":128,"name":"PinningAggregation","url":"classes/pinningaggregation.html","classes":"tsd-kind-class"},{"id":420,"kind":1024,"name":"backends","url":"classes/pinningaggregation.html#backends","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinningAggregation"},{"id":421,"kind":512,"name":"constructor","url":"classes/pinningaggregation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinningAggregation"},{"id":422,"kind":2048,"name":"open","url":"classes/pinningaggregation.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":423,"kind":2048,"name":"close","url":"classes/pinningaggregation.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":424,"kind":2048,"name":"pin","url":"classes/pinningaggregation.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":425,"kind":2048,"name":"unpin","url":"classes/pinningaggregation.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":426,"kind":128,"name":"PinStoreFactory","url":"classes/pinstorefactory.html","classes":"tsd-kind-class"},{"id":427,"kind":1024,"name":"stateStorePath","url":"classes/pinstorefactory.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":428,"kind":1024,"name":"pinnings","url":"classes/pinstorefactory.html#pinnings","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":429,"kind":512,"name":"constructor","url":"classes/pinstorefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":430,"kind":1024,"name":"context","url":"classes/pinstorefactory.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":431,"kind":2048,"name":"open","url":"classes/pinstorefactory.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":432,"kind":256,"name":"CeramicConfig","url":"interfaces/ceramicconfig.html","classes":"tsd-kind-interface"},{"id":433,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/ceramicconfig.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":434,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/ceramicconfig.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":435,"kind":1024,"name":"stateStorePath","url":"interfaces/ceramicconfig.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":436,"kind":1024,"name":"didResolver","url":"interfaces/ceramicconfig.html#didresolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":437,"kind":1024,"name":"didProvider","url":"interfaces/ceramicconfig.html#didprovider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":438,"kind":1024,"name":"validateDocs","url":"interfaces/ceramicconfig.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":439,"kind":1024,"name":"pinning","url":"interfaces/ceramicconfig.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":440,"kind":1024,"name":"logLevel","url":"interfaces/ceramicconfig.html#loglevel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":441,"kind":1024,"name":"logToFiles","url":"interfaces/ceramicconfig.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":442,"kind":1024,"name":"logToFilesPlugin","url":"interfaces/ceramicconfig.html#logtofilesplugin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":443,"kind":65536,"name":"__type","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"CeramicConfig.logToFilesPlugin"},{"id":444,"kind":32,"name":"plugin","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.plugin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":445,"kind":32,"name":"options","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.options","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":446,"kind":1024,"name":"gateway","url":"interfaces/ceramicconfig.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":447,"kind":1024,"name":"topic","url":"interfaces/ceramicconfig.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":448,"kind":1024,"name":"pin","url":"classes/ceramic.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":449,"kind":1024,"name":"context","url":"classes/ceramic.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":450,"kind":512,"name":"constructor","url":"classes/ceramic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Ceramic"},{"id":451,"kind":1024,"name":"dispatcher","url":"classes/ceramic.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":452,"kind":1024,"name":"pinStore","url":"classes/ceramic.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":453,"kind":262144,"name":"ipfs","url":"classes/ceramic.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":454,"kind":262144,"name":"did","url":"classes/ceramic.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":455,"kind":2048,"name":"create","url":"classes/ceramic.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Ceramic"},{"id":456,"kind":2048,"name":"findHandler","url":"classes/ceramic.html#findhandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":457,"kind":2048,"name":"setDIDProvider","url":"classes/ceramic.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":458,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramic.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":459,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramic.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":460,"kind":2048,"name":"applyRecord","url":"classes/ceramic.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":461,"kind":2048,"name":"getDocFromMap","url":"classes/ceramic.html#getdocfrommap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":462,"kind":2048,"name":"createDocument","url":"classes/ceramic.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":463,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramic.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":464,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramic.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":465,"kind":2048,"name":"_loadDoc","url":"classes/ceramic.html#_loaddoc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":466,"kind":2048,"name":"listVersions","url":"classes/ceramic.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":467,"kind":2048,"name":"close","url":"classes/ceramic.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":468,"kind":64,"name":"normalizeDocID","url":"globals.html#normalizedocid","classes":"tsd-kind-function"},{"id":469,"kind":256,"name":"CidDoc","url":"interfaces/ciddoc.html","classes":"tsd-kind-interface"},{"id":470,"kind":1024,"name":"cid","url":"interfaces/ciddoc.html#cid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":471,"kind":1024,"name":"docId","url":"interfaces/ciddoc.html#docid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":472,"kind":256,"name":"EthNetwork","url":"interfaces/ethnetwork.html","classes":"tsd-kind-interface"},{"id":473,"kind":1024,"name":"network","url":"interfaces/ethnetwork.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":474,"kind":1024,"name":"chain","url":"interfaces/ethnetwork.html#chain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":475,"kind":1024,"name":"chainId","url":"interfaces/ethnetwork.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":476,"kind":1024,"name":"networkId","url":"interfaces/ethnetwork.html#networkid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":477,"kind":1024,"name":"type","url":"interfaces/ethnetwork.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":478,"kind":128,"name":"EthereumAnchorService","url":"classes/ethereumanchorservice.html","classes":"tsd-kind-class"},{"id":479,"kind":512,"name":"constructor","url":"classes/ethereumanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EthereumAnchorService"},{"id":480,"kind":2048,"name":"requestAnchor","url":"classes/ethereumanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":481,"kind":2048,"name":"validateChainInclusion","url":"classes/ethereumanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":482,"kind":2048,"name":"addListener","url":"classes/ethereumanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":483,"kind":2048,"name":"on","url":"classes/ethereumanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":484,"kind":2048,"name":"once","url":"classes/ethereumanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":485,"kind":2048,"name":"removeListener","url":"classes/ethereumanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":486,"kind":2048,"name":"off","url":"classes/ethereumanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":487,"kind":2048,"name":"removeAllListeners","url":"classes/ethereumanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":488,"kind":2048,"name":"setMaxListeners","url":"classes/ethereumanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":489,"kind":2048,"name":"getMaxListeners","url":"classes/ethereumanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":490,"kind":2048,"name":"listeners","url":"classes/ethereumanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":491,"kind":2048,"name":"rawListeners","url":"classes/ethereumanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":492,"kind":2048,"name":"emit","url":"classes/ethereumanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":493,"kind":2048,"name":"listenerCount","url":"classes/ethereumanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":494,"kind":2048,"name":"prependListener","url":"classes/ethereumanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":495,"kind":2048,"name":"prependOnceListener","url":"classes/ethereumanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":496,"kind":2048,"name":"eventNames","url":"classes/ethereumanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":497,"kind":32,"name":"DEFAULT_POLL_TIME","url":"globals.html#default_poll_time","classes":"tsd-kind-variable"},{"id":498,"kind":32,"name":"DEFAULT_MAX_POLL_TIME","url":"globals.html#default_max_poll_time","classes":"tsd-kind-variable"},{"id":499,"kind":2097152,"name":"ETH_CHAIN_ID_MAPPINGS","url":"globals.html#eth_chain_id_mappings","classes":"tsd-kind-object-literal"},{"id":500,"kind":2097152,"name":"eip155:1","url":"globals.html#eth_chain_id_mappings.eip155_1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":501,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_1.network","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":502,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_1.chain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":503,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_1.chainid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":504,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_1.networkid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":505,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_1.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":506,"kind":2097152,"name":"eip155:3","url":"globals.html#eth_chain_id_mappings.eip155_3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":507,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_3.network-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":508,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_3.chain-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":509,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_3.chainid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":510,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_3.networkid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":511,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_3.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":512,"kind":128,"name":"AnchorServiceFactory","url":"classes/anchorservicefactory.html","classes":"tsd-kind-class"},{"id":513,"kind":512,"name":"constructor","url":"classes/anchorservicefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":514,"kind":2048,"name":"get","url":"classes/anchorservicefactory.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":515,"kind":256,"name":"AccountLinkParams","url":"interfaces/accountlinkparams.html","classes":"tsd-kind-interface"},{"id":516,"kind":1024,"name":"content","url":"interfaces/accountlinkparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountLinkParams"},{"id":517,"kind":1024,"name":"metadata","url":"interfaces/accountlinkparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"AccountLinkParams"},{"id":518,"kind":128,"name":"AccountLinkDoctype","url":"classes/accountlinkdoctype.html","classes":"tsd-kind-class"},{"id":519,"kind":2048,"name":"change","url":"classes/accountlinkdoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"AccountLinkDoctype"},{"id":520,"kind":2048,"name":"create","url":"classes/accountlinkdoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":521,"kind":2048,"name":"makeGenesis","url":"classes/accountlinkdoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":522,"kind":512,"name":"constructor","url":"classes/accountlinkdoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":523,"kind":262144,"name":"id","url":"classes/accountlinkdoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":524,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":525,"kind":262144,"name":"content","url":"classes/accountlinkdoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":526,"kind":262144,"name":"metadata","url":"classes/accountlinkdoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":527,"kind":262144,"name":"owners","url":"classes/accountlinkdoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":528,"kind":262144,"name":"head","url":"classes/accountlinkdoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":529,"kind":262144,"name":"state","url":"classes/accountlinkdoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":530,"kind":262144,"name":"context","url":"classes/accountlinkdoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":531,"kind":2048,"name":"addListener","url":"classes/accountlinkdoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":532,"kind":2048,"name":"on","url":"classes/accountlinkdoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":533,"kind":2048,"name":"once","url":"classes/accountlinkdoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":534,"kind":2048,"name":"removeListener","url":"classes/accountlinkdoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":535,"kind":2048,"name":"off","url":"classes/accountlinkdoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":536,"kind":2048,"name":"removeAllListeners","url":"classes/accountlinkdoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":537,"kind":2048,"name":"setMaxListeners","url":"classes/accountlinkdoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":538,"kind":2048,"name":"getMaxListeners","url":"classes/accountlinkdoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":539,"kind":2048,"name":"listeners","url":"classes/accountlinkdoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":540,"kind":2048,"name":"rawListeners","url":"classes/accountlinkdoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":541,"kind":2048,"name":"emit","url":"classes/accountlinkdoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":542,"kind":2048,"name":"listenerCount","url":"classes/accountlinkdoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":543,"kind":2048,"name":"prependListener","url":"classes/accountlinkdoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":544,"kind":2048,"name":"prependOnceListener","url":"classes/accountlinkdoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":545,"kind":2048,"name":"eventNames","url":"classes/accountlinkdoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":546,"kind":32,"name":"DOCTYPE","url":"globals.html#doctype","classes":"tsd-kind-variable"},{"id":547,"kind":128,"name":"AccountLinkDoctypeHandler","url":"classes/accountlinkdoctypehandler.html","classes":"tsd-kind-class"},{"id":548,"kind":262144,"name":"name","url":"classes/accountlinkdoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":549,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":550,"kind":2048,"name":"create","url":"classes/accountlinkdoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":551,"kind":2048,"name":"applyRecord","url":"classes/accountlinkdoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":552,"kind":256,"name":"TileParams","url":"interfaces/tileparams.html","classes":"tsd-kind-interface"},{"id":553,"kind":1024,"name":"content","url":"interfaces/tileparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TileParams"},{"id":554,"kind":1024,"name":"metadata","url":"interfaces/tileparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"TileParams"},{"id":555,"kind":128,"name":"TileDoctype","url":"classes/tiledoctype.html","classes":"tsd-kind-class"},{"id":556,"kind":2048,"name":"change","url":"classes/tiledoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"TileDoctype"},{"id":557,"kind":2048,"name":"create","url":"classes/tiledoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":558,"kind":2048,"name":"makeGenesis","url":"classes/tiledoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":559,"kind":512,"name":"constructor","url":"classes/tiledoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":560,"kind":262144,"name":"id","url":"classes/tiledoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":561,"kind":262144,"name":"doctype","url":"classes/tiledoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":562,"kind":262144,"name":"content","url":"classes/tiledoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":563,"kind":262144,"name":"metadata","url":"classes/tiledoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":564,"kind":262144,"name":"owners","url":"classes/tiledoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":565,"kind":262144,"name":"head","url":"classes/tiledoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":566,"kind":262144,"name":"state","url":"classes/tiledoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":567,"kind":262144,"name":"context","url":"classes/tiledoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":568,"kind":2048,"name":"addListener","url":"classes/tiledoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":569,"kind":2048,"name":"on","url":"classes/tiledoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":570,"kind":2048,"name":"once","url":"classes/tiledoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":571,"kind":2048,"name":"removeListener","url":"classes/tiledoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":572,"kind":2048,"name":"off","url":"classes/tiledoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":573,"kind":2048,"name":"removeAllListeners","url":"classes/tiledoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":574,"kind":2048,"name":"setMaxListeners","url":"classes/tiledoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":575,"kind":2048,"name":"getMaxListeners","url":"classes/tiledoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":576,"kind":2048,"name":"listeners","url":"classes/tiledoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":577,"kind":2048,"name":"rawListeners","url":"classes/tiledoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":578,"kind":2048,"name":"emit","url":"classes/tiledoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":579,"kind":2048,"name":"listenerCount","url":"classes/tiledoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":580,"kind":2048,"name":"prependListener","url":"classes/tiledoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":581,"kind":2048,"name":"prependOnceListener","url":"classes/tiledoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":582,"kind":2048,"name":"eventNames","url":"classes/tiledoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":583,"kind":128,"name":"TileDoctypeHandler","url":"classes/tiledoctypehandler.html","classes":"tsd-kind-class"},{"id":584,"kind":262144,"name":"name","url":"classes/tiledoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":585,"kind":262144,"name":"doctype","url":"classes/tiledoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":586,"kind":2048,"name":"create","url":"classes/tiledoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":587,"kind":2048,"name":"applyRecord","url":"classes/tiledoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":588,"kind":2048,"name":"verifyJWS","url":"classes/tiledoctypehandler.html#verifyjws","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":589,"kind":64,"name":"fetchJson","url":"globals.html#fetchjson","classes":"tsd-kind-function"},{"id":590,"kind":64,"name":"typeDocID","url":"globals.html#typedocid","classes":"tsd-kind-function"},{"id":591,"kind":1024,"name":"doctypeHandler","url":"classes/document.html#doctypehandler","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":592,"kind":2048,"name":"createFromGenesis","url":"classes/document.html#createfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":593,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":594,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":595,"kind":2048,"name":"loadDocumentRecords","url":"classes/document.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":596,"kind":2048,"name":"change","url":"classes/document.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":597,"kind":2048,"name":"_syncState","url":"classes/document.html#_syncstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":598,"kind":262144,"name":"owners","url":"classes/document.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":599,"kind":262144,"name":"context","url":"classes/document.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":600,"kind":64,"name":"docIdUrl","url":"globals.html#docidurl","classes":"tsd-kind-function"},{"id":601,"kind":128,"name":"CeramicClient","url":"classes/ceramicclient.html","classes":"tsd-kind-class"},{"id":602,"kind":1024,"name":"pin","url":"classes/ceramicclient.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":603,"kind":1024,"name":"context","url":"classes/ceramicclient.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":604,"kind":1024,"name":"_doctypeHandlers","url":"classes/ceramicclient.html#_doctypehandlers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":605,"kind":512,"name":"constructor","url":"classes/ceramicclient.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicClient"},{"id":606,"kind":262144,"name":"did","url":"classes/ceramicclient.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CeramicClient"},{"id":607,"kind":2048,"name":"_initPinApi","url":"classes/ceramicclient.html#_initpinapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":608,"kind":2048,"name":"createDocument","url":"classes/ceramicclient.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":609,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramicclient.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":610,"kind":2048,"name":"loadDocument","url":"classes/ceramicclient.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":611,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramicclient.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":612,"kind":2048,"name":"applyRecord","url":"classes/ceramicclient.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":613,"kind":2048,"name":"listVersions","url":"classes/ceramicclient.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":614,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramicclient.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":615,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramicclient.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":616,"kind":2048,"name":"setDIDProvider","url":"classes/ceramicclient.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":617,"kind":2048,"name":"close","url":"classes/ceramicclient.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":618,"kind":32,"name":"CERAMIC_HOST","url":"globals.html#ceramic_host","classes":"tsd-kind-variable"},{"id":619,"kind":32,"name":"API_PATH","url":"globals.html#api_path","classes":"tsd-kind-variable"},{"id":620,"kind":2097152,"name":"table","url":"globals.html#table","classes":"tsd-kind-object-literal"},{"id":621,"kind":32,"name":"tile","url":"globals.html#table.tile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":622,"kind":32,"name":"caip10-link","url":"globals.html#table.caip10_link","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":623,"kind":128,"name":"DocID","url":"classes/docid.html","classes":"tsd-kind-class"},{"id":624,"kind":512,"name":"constructor","url":"classes/docid.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DocID"},{"id":625,"kind":2048,"name":"fromBytes","url":"classes/docid.html#frombytes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":626,"kind":2048,"name":"_genesisCIDLength","url":"classes/docid.html#_genesiscidlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":627,"kind":2048,"name":"fromString","url":"classes/docid.html#fromstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":628,"kind":262144,"name":"baseID","url":"classes/docid.html#baseid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":629,"kind":262144,"name":"type","url":"classes/docid.html#type","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":630,"kind":262144,"name":"typeName","url":"classes/docid.html#typename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":631,"kind":262144,"name":"cid","url":"classes/docid.html#cid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":632,"kind":262144,"name":"version","url":"classes/docid.html#version","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":633,"kind":262144,"name":"multibaseName","url":"classes/docid.html#multibasename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":634,"kind":262144,"name":"multihash","url":"classes/docid.html#multihash","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":635,"kind":262144,"name":"codec","url":"classes/docid.html#codec","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":636,"kind":262144,"name":"bytes","url":"classes/docid.html#bytes","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":637,"kind":2048,"name":"equals","url":"classes/docid.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":638,"kind":2048,"name":"toBaseEncodedString","url":"classes/docid.html#tobaseencodedstring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":639,"kind":2048,"name":"toString","url":"classes/docid.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":640,"kind":2048,"name":"toUrl","url":"classes/docid.html#tourl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":641,"kind":2048,"name":"[Symbol.for('nodejs.util.inspect.custom')]","url":"classes/docid.html#_symbol_for__nodejs_util_inspect_custom___","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":642,"kind":2048,"name":"[Symbol.toPrimitive]","url":"classes/docid.html#_symbol_toprimitive_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":643,"kind":2048,"name":"isDocID","url":"classes/docid.html#isdocid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":644,"kind":32,"name":"DOCID_CODEC","url":"globals.html#docid_codec","classes":"tsd-kind-variable"},{"id":645,"kind":64,"name":"getKey","url":"globals.html#getkey","classes":"tsd-kind-function"},{"id":646,"kind":64,"name":"keyToDidDoc","url":"globals.html#keytodiddoc","classes":"tsd-kind-function"},{"id":647,"kind":2097152,"name":"prefixToDriverMap","url":"globals.html#prefixtodrivermap","classes":"tsd-kind-object-literal"},{"id":648,"kind":32,"name":"231","url":"globals.html#prefixtodrivermap.231","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"prefixToDriverMap"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,33.221]],["parent/0",[]],["name/1",[1,52.275]],["parent/1",[0,3.112]],["name/2",[2,60.753]],["parent/2",[]],["name/3",[3,60.753]],["parent/3",[]],["name/4",[4,49.76]],["parent/4",[]],["name/5",[5,60.753]],["parent/5",[4,4.662]],["name/6",[6,38.767]],["parent/6",[]],["name/7",[7,60.753]],["parent/7",[6,3.632]],["name/8",[8,49.76]],["parent/8",[6,3.632]],["name/9",[9,60.753]],["parent/9",[6,3.632]],["name/10",[10,55.642]],["parent/10",[6,3.632]],["name/11",[11,55.642]],["parent/11",[6,3.632]],["name/12",[12,52.275]],["parent/12",[6,3.632]],["name/13",[13,55.642]],["parent/13",[6,3.632]],["name/14",[14,43.396]],["parent/14",[6,3.632]],["name/15",[15,55.642]],["parent/15",[6,3.632]],["name/16",[16,60.753]],["parent/16",[6,3.632]],["name/17",[4,49.76]],["parent/17",[6,3.632]],["name/18",[17,60.753]],["parent/18",[6,3.632]],["name/19",[18,52.275]],["parent/19",[]],["name/20",[19,55.642]],["parent/20",[18,4.897]],["name/21",[20,55.642]],["parent/21",[18,4.897]],["name/22",[21,36.17]],["parent/22",[]],["name/23",[22,33.221]],["parent/23",[21,3.389]],["name/24",[0,33.221]],["parent/24",[21,3.389]],["name/25",[23,44.649]],["parent/25",[21,3.389]],["name/26",[24,60.753]],["parent/26",[21,3.389]],["name/27",[25,60.753]],["parent/27",[21,3.389]],["name/28",[26,60.753]],["parent/28",[21,3.389]],["name/29",[27,55.642]],["parent/29",[21,3.389]],["name/30",[28,46.081]],["parent/30",[21,3.389]],["name/31",[29,55.642]],["parent/31",[21,3.389]],["name/32",[30,60.753]],["parent/32",[21,3.389]],["name/33",[31,42.283]],["parent/33",[21,3.389]],["name/34",[32,60.753]],["parent/34",[21,3.389]],["name/35",[33,60.753]],["parent/35",[21,3.389]],["name/36",[34,60.753]],["parent/36",[21,3.389]],["name/37",[35,60.753]],["parent/37",[21,3.389]],["name/38",[36,38.767]],["parent/38",[21,3.389]],["name/39",[37,60.753]],["parent/39",[]],["name/40",[38,60.753]],["parent/40",[]],["name/41",[39,60.753]],["parent/41",[]],["name/42",[40,52.275]],["parent/42",[]],["name/43",[41,60.753]],["parent/43",[40,4.897]],["name/44",[42,60.753]],["parent/44",[40,4.897]],["name/45",[43,36.759]],["parent/45",[]],["name/46",[44,60.753]],["parent/46",[43,3.444]],["name/47",[45,60.753]],["parent/47",[43,3.444]],["name/48",[46,47.752]],["parent/48",[43,3.444]],["name/49",[27,55.642]],["parent/49",[43,3.444]],["name/50",[28,46.081]],["parent/50",[43,3.444]],["name/51",[47,60.753]],["parent/51",[43,3.444]],["name/52",[29,55.642]],["parent/52",[43,3.444]],["name/53",[48,60.753]],["parent/53",[43,3.444]],["name/54",[49,60.753]],["parent/54",[43,3.444]],["name/55",[50,60.753]],["parent/55",[43,3.444]],["name/56",[51,60.753]],["parent/56",[43,3.444]],["name/57",[52,60.753]],["parent/57",[43,3.444]],["name/58",[53,60.753]],["parent/58",[43,3.444]],["name/59",[54,60.753]],["parent/59",[43,3.444]],["name/60",[55,60.753]],["parent/60",[43,3.444]],["name/61",[56,60.753]],["parent/61",[]],["name/62",[57,60.753]],["parent/62",[]],["name/63",[58,60.753]],["parent/63",[]],["name/64",[59,60.753]],["parent/64",[]],["name/65",[60,60.753]],["parent/65",[]],["name/66",[61,43.396]],["parent/66",[]],["name/67",[62,60.753]],["parent/67",[]],["name/68",[63,49.76]],["parent/68",[]],["name/69",[64,55.642]],["parent/69",[63,4.662]],["name/70",[65,55.642]],["parent/70",[63,4.662]],["name/71",[66,55.642]],["parent/71",[63,4.662]],["name/72",[67,38.767]],["parent/72",[]],["name/73",[61,43.396]],["parent/73",[67,3.632]],["name/74",[68,49.76]],["parent/74",[67,3.632]],["name/75",[69,52.275]],["parent/75",[67,3.632]],["name/76",[70,52.275]],["parent/76",[67,3.632]],["name/77",[71,52.275]],["parent/77",[67,3.632]],["name/78",[72,52.275]],["parent/78",[67,3.632]],["name/79",[1,52.275]],["parent/79",[67,3.632]],["name/80",[73,49.76]],["parent/80",[67,3.632]],["name/81",[74,47.752]],["parent/81",[67,3.632]],["name/82",[31,42.283]],["parent/82",[67,3.632]],["name/83",[75,52.275]],["parent/83",[67,3.632]],["name/84",[36,38.767]],["parent/84",[67,3.632]],["name/85",[76,38.052]],["parent/85",[]],["name/86",[68,49.76]],["parent/86",[76,3.565]],["name/87",[8,49.76]],["parent/87",[76,3.565]],["name/88",[77,60.753]],["parent/88",[76,3.565]],["name/89",[78,60.753]],["parent/89",[76,3.565]],["name/90",[79,33.656]],["parent/90",[76,3.565]],["name/91",[80,60.753]],["parent/91",[76,3.565]],["name/92",[81,49.76]],["parent/92",[]],["name/93",[82,60.753]],["parent/93",[81,4.662]],["name/94",[83,60.753]],["parent/94",[81,4.662]],["name/95",[84,60.753]],["parent/95",[81,4.662]],["name/96",[85,44.649]],["parent/96",[]],["name/97",[86,60.753]],["parent/97",[85,4.183]],["name/98",[87,60.753]],["parent/98",[85,4.183]],["name/99",[88,60.753]],["parent/99",[85,4.183]],["name/100",[89,60.753]],["parent/100",[85,4.183]],["name/101",[90,60.753]],["parent/101",[85,4.183]],["name/102",[91,47.752]],["parent/102",[]],["name/103",[92,60.753]],["parent/103",[91,4.474]],["name/104",[93,60.753]],["parent/104",[91,4.474]],["name/105",[94,60.753]],["parent/105",[91,4.474]],["name/106",[95,44.649]],["parent/106",[]],["name/107",[96,49.76]],["parent/107",[95,4.183]],["name/108",[97,60.753]],["parent/108",[95,4.183]],["name/109",[98,60.753]],["parent/109",[95,4.183]],["name/110",[99,60.753]],["parent/110",[95,4.183]],["name/111",[100,60.753]],["parent/111",[95,4.183]],["name/112",[101,47.752]],["parent/112",[]],["name/113",[102,49.76]],["parent/113",[101,4.474]],["name/114",[103,60.753]],["parent/114",[101,4.474]],["name/115",[104,60.753]],["parent/115",[101,4.474]],["name/116",[105,60.753]],["parent/116",[101,4.474]],["name/117",[106,55.642]],["parent/117",[]],["name/118",[107,42.283]],["parent/118",[106,5.213]],["name/119",[108,49.76]],["parent/119",[]],["name/120",[109,43.396]],["parent/120",[108,4.662]],["name/121",[102,49.76]],["parent/121",[108,4.662]],["name/122",[107,42.283]],["parent/122",[108,4.662]],["name/123",[110,41.282]],["parent/123",[]],["name/124",[111,28.544]],["parent/124",[110,3.868]],["name/125",[109,43.396]],["parent/125",[110,3.868]],["name/126",[112,60.753]],["parent/126",[110,3.868]],["name/127",[107,42.283]],["parent/127",[110,3.868]],["name/128",[113,60.753]],["parent/128",[110,3.868]],["name/129",[85,44.649]],["parent/129",[110,3.868]],["name/130",[114,55.642]],["parent/130",[110,3.868]],["name/131",[95,44.649]],["parent/131",[110,3.868]],["name/132",[115,60.753]],["parent/132",[110,3.868]],["name/133",[116,52.275]],["parent/133",[]],["name/134",[117,60.753]],["parent/134",[116,4.897]],["name/135",[118,60.753]],["parent/135",[116,4.897]],["name/136",[111,28.544]],["parent/136",[]],["name/137",[22,33.221]],["parent/137",[111,2.674]],["name/138",[119,49.76]],["parent/138",[111,2.674]],["name/139",[111,28.544]],["parent/139",[111,2.674]],["name/140",[109,43.396]],["parent/140",[111,2.674]],["name/141",[107,42.283]],["parent/141",[111,2.674]],["name/142",[102,49.76]],["parent/142",[111,2.674]],["name/143",[120,49.76]],["parent/143",[111,2.674]],["name/144",[28,46.081]],["parent/144",[111,2.674]],["name/145",[76,38.052]],["parent/145",[111,2.674]],["name/146",[46,47.752]],["parent/146",[111,2.674]],["name/147",[121,43.396]],["parent/147",[111,2.674]],["name/148",[122,43.396]],["parent/148",[111,2.674]],["name/149",[123,43.396]],["parent/149",[111,2.674]],["name/150",[124,43.396]],["parent/150",[111,2.674]],["name/151",[125,43.396]],["parent/151",[111,2.674]],["name/152",[126,43.396]],["parent/152",[111,2.674]],["name/153",[127,43.396]],["parent/153",[111,2.674]],["name/154",[128,43.396]],["parent/154",[111,2.674]],["name/155",[129,43.396]],["parent/155",[111,2.674]],["name/156",[130,43.396]],["parent/156",[111,2.674]],["name/157",[131,43.396]],["parent/157",[111,2.674]],["name/158",[132,39.537]],["parent/158",[111,2.674]],["name/159",[133,43.396]],["parent/159",[111,2.674]],["name/160",[134,43.396]],["parent/160",[111,2.674]],["name/161",[135,43.396]],["parent/161",[111,2.674]],["name/162",[132,39.537]],["parent/162",[111,2.674]],["name/163",[136,49.76]],["parent/163",[111,2.674]],["name/164",[137,52.275]],["parent/164",[]],["name/165",[22,33.221]],["parent/165",[137,4.897]],["name/166",[138,52.275]],["parent/166",[137,4.897]],["name/167",[139,47.752]],["parent/167",[]],["name/168",[140,47.752]],["parent/168",[139,4.474]],["name/169",[111,28.544]],["parent/169",[139,4.474]],["name/170",[31,42.283]],["parent/170",[139,4.474]],["name/171",[141,60.753]],["parent/171",[]],["name/172",[79,33.656]],["parent/172",[]],["name/173",[142,52.275]],["parent/173",[79,3.153]],["name/174",[143,52.275]],["parent/174",[79,3.153]],["name/175",[121,43.396]],["parent/175",[79,3.153]],["name/176",[122,43.396]],["parent/176",[79,3.153]],["name/177",[123,43.396]],["parent/177",[79,3.153]],["name/178",[124,43.396]],["parent/178",[79,3.153]],["name/179",[125,43.396]],["parent/179",[79,3.153]],["name/180",[126,43.396]],["parent/180",[79,3.153]],["name/181",[127,43.396]],["parent/181",[79,3.153]],["name/182",[128,43.396]],["parent/182",[79,3.153]],["name/183",[129,43.396]],["parent/183",[79,3.153]],["name/184",[130,43.396]],["parent/184",[79,3.153]],["name/185",[131,43.396]],["parent/185",[79,3.153]],["name/186",[132,39.537]],["parent/186",[79,3.153]],["name/187",[133,43.396]],["parent/187",[79,3.153]],["name/188",[134,43.396]],["parent/188",[79,3.153]],["name/189",[135,43.396]],["parent/189",[79,3.153]],["name/190",[22,33.221]],["parent/190",[79,3.153]],["name/191",[132,39.537]],["parent/191",[79,3.153]],["name/192",[136,49.76]],["parent/192",[79,3.153]],["name/193",[144,41.282]],["parent/193",[]],["name/194",[145,60.753]],["parent/194",[144,3.868]],["name/195",[146,60.753]],["parent/195",[144,3.868]],["name/196",[147,60.753]],["parent/196",[144,3.868]],["name/197",[148,60.753]],["parent/197",[144,3.868]],["name/198",[149,60.753]],["parent/198",[144,3.868]],["name/199",[150,60.753]],["parent/199",[144,3.868]],["name/200",[151,60.753]],["parent/200",[144,3.868]],["name/201",[152,60.753]],["parent/201",[144,3.868]],["name/202",[153,60.753]],["parent/202",[144,3.868]],["name/203",[154,46.081]],["parent/203",[]],["name/204",[155,55.642]],["parent/204",[154,4.317]],["name/205",[156,55.642]],["parent/205",[154,4.317]],["name/206",[157,55.642]],["parent/206",[154,4.317]],["name/207",[158,47.752]],["parent/207",[159,5.692]],["name/208",[160,55.642]],["parent/208",[161,4.897]],["name/209",[162,55.642]],["parent/209",[161,4.897]],["name/210",[163,55.642]],["parent/210",[161,4.897]],["name/211",[164,60.753]],["parent/211",[154,4.317]],["name/212",[165,60.753]],["parent/212",[]],["name/213",[166,49.76]],["parent/213",[]],["name/214",[167,55.642]],["parent/214",[166,4.662]],["name/215",[168,60.753]],["parent/215",[166,4.662]],["name/216",[169,60.753]],["parent/216",[166,4.662]],["name/217",[170,49.76]],["parent/217",[]],["name/218",[155,55.642]],["parent/218",[170,4.662]],["name/219",[156,55.642]],["parent/219",[170,4.662]],["name/220",[157,55.642]],["parent/220",[170,4.662]],["name/221",[160,55.642]],["parent/221",[171,4.897]],["name/222",[162,55.642]],["parent/222",[171,4.897]],["name/223",[163,55.642]],["parent/223",[171,4.897]],["name/224",[172,52.275]],["parent/224",[]],["name/225",[158,47.752]],["parent/225",[172,4.897]],["name/226",[173,47.752]],["parent/226",[]],["name/227",[174,60.753]],["parent/227",[173,4.474]],["name/228",[175,49.76]],["parent/228",[173,4.474]],["name/229",[114,55.642]],["parent/229",[173,4.474]],["name/230",[91,47.752]],["parent/230",[173,4.474]],["name/231",[176,46.081]],["parent/231",[]],["name/232",[177,60.753]],["parent/232",[176,4.317]],["name/233",[178,60.753]],["parent/233",[176,4.317]],["name/234",[179,60.753]],["parent/234",[176,4.317]],["name/235",[180,55.642]],["parent/235",[176,4.317]],["name/236",[181,60.753]],["parent/236",[176,4.317]],["name/237",[182,42.283]],["parent/237",[]],["name/238",[183,43.396]],["parent/238",[182,3.961]],["name/239",[36,38.767]],["parent/239",[182,3.961]],["name/240",[184,55.642]],["parent/240",[182,3.961]],["name/241",[185,52.275]],["parent/241",[182,3.961]],["name/242",[186,55.642]],["parent/242",[182,3.961]],["name/243",[187,55.642]],["parent/243",[182,3.961]],["name/244",[188,55.642]],["parent/244",[182,3.961]],["name/245",[14,43.396]],["parent/245",[]],["name/246",[183,43.396]],["parent/246",[14,4.066]],["name/247",[36,38.767]],["parent/247",[14,4.066]],["name/248",[61,43.396]],["parent/248",[14,4.066]],["name/249",[189,49.76]],["parent/249",[14,4.066]],["name/250",[190,52.275]],["parent/250",[]],["name/251",[191,52.275]],["parent/251",[190,4.897]],["name/252",[22,33.221]],["parent/252",[190,4.897]],["name/253",[192,36.759]],["parent/253",[]],["name/254",[22,33.221]],["parent/254",[192,3.444]],["name/255",[182,42.283]],["parent/255",[192,3.444]],["name/256",[14,43.396]],["parent/256",[192,3.444]],["name/257",[193,60.753]],["parent/257",[192,3.444]],["name/258",[158,47.752]],["parent/258",[192,3.444]],["name/259",[194,60.753]],["parent/259",[192,3.444]],["name/260",[158,47.752]],["parent/260",[192,3.444]],["name/261",[183,43.396]],["parent/261",[192,3.444]],["name/262",[36,38.767]],["parent/262",[192,3.444]],["name/263",[64,55.642]],["parent/263",[192,3.444]],["name/264",[65,55.642]],["parent/264",[192,3.444]],["name/265",[66,55.642]],["parent/265",[192,3.444]],["name/266",[195,60.753]],["parent/266",[192,3.444]],["name/267",[196,25.177]],["parent/267",[]],["name/268",[197,60.753]],["parent/268",[196,2.359]],["name/269",[119,49.76]],["parent/269",[196,2.359]],["name/270",[198,55.642]],["parent/270",[196,2.359]],["name/271",[22,33.221]],["parent/271",[196,2.359]],["name/272",[199,30.289]],["parent/272",[196,2.359]],["name/273",[192,36.759]],["parent/273",[196,2.359]],["name/274",[23,44.649]],["parent/274",[196,2.359]],["name/275",[185,52.275]],["parent/275",[196,2.359]],["name/276",[180,55.642]],["parent/276",[196,2.359]],["name/277",[74,47.752]],["parent/277",[196,2.359]],["name/278",[200,55.642]],["parent/278",[196,2.359]],["name/279",[200,55.642]],["parent/279",[196,2.359]],["name/280",[31,42.283]],["parent/280",[196,2.359]],["name/281",[201,60.753]],["parent/281",[196,2.359]],["name/282",[202,60.753]],["parent/282",[196,2.359]],["name/283",[203,60.753]],["parent/283",[196,2.359]],["name/284",[109,43.396]],["parent/284",[196,2.359]],["name/285",[28,46.081]],["parent/285",[196,2.359]],["name/286",[111,28.544]],["parent/286",[196,2.359]],["name/287",[120,49.76]],["parent/287",[196,2.359]],["name/288",[102,49.76]],["parent/288",[196,2.359]],["name/289",[107,42.283]],["parent/289",[196,2.359]],["name/290",[204,60.753]],["parent/290",[196,2.359]],["name/291",[36,38.767]],["parent/291",[196,2.359]],["name/292",[205,55.642]],["parent/292",[196,2.359]],["name/293",[121,43.396]],["parent/293",[196,2.359]],["name/294",[122,43.396]],["parent/294",[196,2.359]],["name/295",[123,43.396]],["parent/295",[196,2.359]],["name/296",[124,43.396]],["parent/296",[196,2.359]],["name/297",[125,43.396]],["parent/297",[196,2.359]],["name/298",[126,43.396]],["parent/298",[196,2.359]],["name/299",[127,43.396]],["parent/299",[196,2.359]],["name/300",[128,43.396]],["parent/300",[196,2.359]],["name/301",[129,43.396]],["parent/301",[196,2.359]],["name/302",[130,43.396]],["parent/302",[196,2.359]],["name/303",[131,43.396]],["parent/303",[196,2.359]],["name/304",[132,39.537]],["parent/304",[196,2.359]],["name/305",[133,43.396]],["parent/305",[196,2.359]],["name/306",[134,43.396]],["parent/306",[196,2.359]],["name/307",[135,43.396]],["parent/307",[196,2.359]],["name/308",[132,39.537]],["parent/308",[196,2.359]],["name/309",[136,49.76]],["parent/309",[196,2.359]],["name/310",[206,49.76]],["parent/310",[]],["name/311",[207,60.753]],["parent/311",[206,4.662]],["name/312",[19,55.642]],["parent/312",[206,4.662]],["name/313",[20,55.642]],["parent/313",[206,4.662]],["name/314",[208,46.081]],["parent/314",[]],["name/315",[209,60.753]],["parent/315",[208,4.317]],["name/316",[210,60.753]],["parent/316",[208,4.317]],["name/317",[211,49.76]],["parent/317",[208,4.317]],["name/318",[212,60.753]],["parent/318",[208,4.317]],["name/319",[175,49.76]],["parent/319",[208,4.317]],["name/320",[199,30.289]],["parent/320",[]],["name/321",[22,33.221]],["parent/321",[199,2.838]],["name/322",[213,60.753]],["parent/322",[199,2.838]],["name/323",[211,49.76]],["parent/323",[199,2.838]],["name/324",[167,55.642]],["parent/324",[199,2.838]],["name/325",[214,60.753]],["parent/325",[199,2.838]],["name/326",[215,60.753]],["parent/326",[199,2.838]],["name/327",[216,60.753]],["parent/327",[199,2.838]],["name/328",[217,60.753]],["parent/328",[199,2.838]],["name/329",[218,60.753]],["parent/329",[199,2.838]],["name/330",[219,60.753]],["parent/330",[199,2.838]],["name/331",[36,38.767]],["parent/331",[199,2.838]],["name/332",[121,43.396]],["parent/332",[199,2.838]],["name/333",[122,43.396]],["parent/333",[199,2.838]],["name/334",[123,43.396]],["parent/334",[199,2.838]],["name/335",[124,43.396]],["parent/335",[199,2.838]],["name/336",[125,43.396]],["parent/336",[199,2.838]],["name/337",[126,43.396]],["parent/337",[199,2.838]],["name/338",[127,43.396]],["parent/338",[199,2.838]],["name/339",[128,43.396]],["parent/339",[199,2.838]],["name/340",[129,43.396]],["parent/340",[199,2.838]],["name/341",[130,43.396]],["parent/341",[199,2.838]],["name/342",[131,43.396]],["parent/342",[199,2.838]],["name/343",[132,39.537]],["parent/343",[199,2.838]],["name/344",[133,43.396]],["parent/344",[199,2.838]],["name/345",[134,43.396]],["parent/345",[199,2.838]],["name/346",[135,43.396]],["parent/346",[199,2.838]],["name/347",[132,39.537]],["parent/347",[199,2.838]],["name/348",[136,49.76]],["parent/348",[199,2.838]],["name/349",[211,49.76]],["parent/349",[]],["name/350",[220,35.088]],["parent/350",[]],["name/351",[22,33.221]],["parent/351",[220,3.287]],["name/352",[142,52.275]],["parent/352",[220,3.287]],["name/353",[143,52.275]],["parent/353",[220,3.287]],["name/354",[121,43.396]],["parent/354",[220,3.287]],["name/355",[122,43.396]],["parent/355",[220,3.287]],["name/356",[123,43.396]],["parent/356",[220,3.287]],["name/357",[124,43.396]],["parent/357",[220,3.287]],["name/358",[125,43.396]],["parent/358",[220,3.287]],["name/359",[126,43.396]],["parent/359",[220,3.287]],["name/360",[127,43.396]],["parent/360",[220,3.287]],["name/361",[128,43.396]],["parent/361",[220,3.287]],["name/362",[129,43.396]],["parent/362",[220,3.287]],["name/363",[130,43.396]],["parent/363",[220,3.287]],["name/364",[131,43.396]],["parent/364",[220,3.287]],["name/365",[132,39.537]],["parent/365",[220,3.287]],["name/366",[133,43.396]],["parent/366",[220,3.287]],["name/367",[134,43.396]],["parent/367",[220,3.287]],["name/368",[135,43.396]],["parent/368",[220,3.287]],["name/369",[221,41.282]],["parent/369",[]],["name/370",[22,33.221]],["parent/370",[221,3.868]],["name/371",[222,60.753]],["parent/371",[221,3.868]],["name/372",[183,43.396]],["parent/372",[221,3.868]],["name/373",[184,55.642]],["parent/373",[221,3.868]],["name/374",[185,52.275]],["parent/374",[221,3.868]],["name/375",[186,55.642]],["parent/375",[221,3.868]],["name/376",[188,55.642]],["parent/376",[221,3.868]],["name/377",[187,55.642]],["parent/377",[221,3.868]],["name/378",[36,38.767]],["parent/378",[221,3.868]],["name/379",[223,42.283]],["parent/379",[]],["name/380",[191,52.275]],["parent/380",[223,3.961]],["name/381",[224,60.753]],["parent/381",[223,3.961]],["name/382",[22,33.221]],["parent/382",[223,3.961]],["name/383",[8,49.76]],["parent/383",[223,3.961]],["name/384",[183,43.396]],["parent/384",[223,3.961]],["name/385",[36,38.767]],["parent/385",[223,3.961]],["name/386",[61,43.396]],["parent/386",[223,3.961]],["name/387",[189,49.76]],["parent/387",[223,3.961]],["name/388",[225,60.753]],["parent/388",[]],["name/389",[226,46.081]],["parent/389",[]],["name/390",[22,33.221]],["parent/390",[226,4.317]],["name/391",[140,47.752]],["parent/391",[226,4.317]],["name/392",[175,49.76]],["parent/392",[226,4.317]],["name/393",[227,55.642]],["parent/393",[226,4.317]],["name/394",[228,55.642]],["parent/394",[226,4.317]],["name/395",[229,44.649]],["parent/395",[]],["name/396",[230,60.753]],["parent/396",[229,4.183]],["name/397",[231,60.753]],["parent/397",[229,4.183]],["name/398",[232,60.753]],["parent/398",[229,4.183]],["name/399",[233,60.753]],["parent/399",[229,4.183]],["name/400",[234,60.753]],["parent/400",[229,4.183]],["name/401",[235,60.753]],["parent/401",[229,4.183]],["name/402",[236,40.372]],["parent/402",[]],["name/403",[191,52.275]],["parent/403",[236,3.782]],["name/404",[237,60.753]],["parent/404",[236,3.782]],["name/405",[238,60.753]],["parent/405",[236,3.782]],["name/406",[22,33.221]],["parent/406",[236,3.782]],["name/407",[239,60.753]],["parent/407",[236,3.782]],["name/408",[183,43.396]],["parent/408",[236,3.782]],["name/409",[36,38.767]],["parent/409",[236,3.782]],["name/410",[61,43.396]],["parent/410",[236,3.782]],["name/411",[189,49.76]],["parent/411",[236,3.782]],["name/412",[240,60.753]],["parent/412",[236,3.782]],["name/413",[241,46.081]],["parent/413",[]],["name/414",[22,33.221]],["parent/414",[241,4.317]],["name/415",[140,47.752]],["parent/415",[241,4.317]],["name/416",[175,49.76]],["parent/416",[241,4.317]],["name/417",[227,55.642]],["parent/417",[241,4.317]],["name/418",[228,55.642]],["parent/418",[241,4.317]],["name/419",[242,44.649]],["parent/419",[]],["name/420",[243,60.753]],["parent/420",[242,4.183]],["name/421",[22,33.221]],["parent/421",[242,4.183]],["name/422",[183,43.396]],["parent/422",[242,4.183]],["name/423",[36,38.767]],["parent/423",[242,4.183]],["name/424",[61,43.396]],["parent/424",[242,4.183]],["name/425",[189,49.76]],["parent/425",[242,4.183]],["name/426",[244,46.081]],["parent/426",[]],["name/427",[12,52.275]],["parent/427",[244,4.317]],["name/428",[245,60.753]],["parent/428",[244,4.317]],["name/429",[22,33.221]],["parent/429",[244,4.317]],["name/430",[76,38.052]],["parent/430",[244,4.317]],["name/431",[183,43.396]],["parent/431",[244,4.317]],["name/432",[246,38.767]],["parent/432",[]],["name/433",[10,55.642]],["parent/433",[246,3.632]],["name/434",[11,55.642]],["parent/434",[246,3.632]],["name/435",[12,52.275]],["parent/435",[246,3.632]],["name/436",[247,60.753]],["parent/436",[246,3.632]],["name/437",[248,60.753]],["parent/437",[246,3.632]],["name/438",[13,55.642]],["parent/438",[246,3.632]],["name/439",[14,43.396]],["parent/439",[246,3.632]],["name/440",[249,60.753]],["parent/440",[246,3.632]],["name/441",[4,49.76]],["parent/441",[246,3.632]],["name/442",[250,60.753]],["parent/442",[246,3.632]],["name/443",[158,47.752]],["parent/443",[251,5.692]],["name/444",[172,52.275]],["parent/444",[252,5.213]],["name/445",[154,46.081]],["parent/445",[252,5.213]],["name/446",[15,55.642]],["parent/446",[246,3.632]],["name/447",[211,49.76]],["parent/447",[246,3.632]],["name/448",[61,43.396]],["parent/448",[0,3.112]],["name/449",[76,38.052]],["parent/449",[0,3.112]],["name/450",[22,33.221]],["parent/450",[0,3.112]],["name/451",[199,30.289]],["parent/451",[0,3.112]],["name/452",[192,36.759]],["parent/452",[0,3.112]],["name/453",[8,49.76]],["parent/453",[0,3.112]],["name/454",[68,49.76]],["parent/454",[0,3.112]],["name/455",[23,44.649]],["parent/455",[0,3.112]],["name/456",[253,60.753]],["parent/456",[0,3.112]],["name/457",[75,52.275]],["parent/457",[0,3.112]],["name/458",[69,52.275]],["parent/458",[0,3.112]],["name/459",[70,52.275]],["parent/459",[0,3.112]],["name/460",[31,42.283]],["parent/460",[0,3.112]],["name/461",[254,60.753]],["parent/461",[0,3.112]],["name/462",[71,52.275]],["parent/462",[0,3.112]],["name/463",[72,52.275]],["parent/463",[0,3.112]],["name/464",[73,49.76]],["parent/464",[0,3.112]],["name/465",[255,60.753]],["parent/465",[0,3.112]],["name/466",[74,47.752]],["parent/466",[0,3.112]],["name/467",[36,38.767]],["parent/467",[0,3.112]],["name/468",[256,60.753]],["parent/468",[]],["name/469",[257,52.275]],["parent/469",[]],["name/470",[258,55.642]],["parent/470",[257,4.897]],["name/471",[259,33.656]],["parent/471",[257,4.897]],["name/472",[260,46.081]],["parent/472",[]],["name/473",[261,52.275]],["parent/473",[260,4.317]],["name/474",[262,52.275]],["parent/474",[260,4.317]],["name/475",[96,49.76]],["parent/475",[260,4.317]],["name/476",[263,52.275]],["parent/476",[260,4.317]],["name/477",[264,49.76]],["parent/477",[260,4.317]],["name/478",[265,35.088]],["parent/478",[]],["name/479",[22,33.221]],["parent/479",[265,3.287]],["name/480",[142,52.275]],["parent/480",[265,3.287]],["name/481",[143,52.275]],["parent/481",[265,3.287]],["name/482",[121,43.396]],["parent/482",[265,3.287]],["name/483",[122,43.396]],["parent/483",[265,3.287]],["name/484",[123,43.396]],["parent/484",[265,3.287]],["name/485",[124,43.396]],["parent/485",[265,3.287]],["name/486",[125,43.396]],["parent/486",[265,3.287]],["name/487",[126,43.396]],["parent/487",[265,3.287]],["name/488",[127,43.396]],["parent/488",[265,3.287]],["name/489",[128,43.396]],["parent/489",[265,3.287]],["name/490",[129,43.396]],["parent/490",[265,3.287]],["name/491",[130,43.396]],["parent/491",[265,3.287]],["name/492",[131,43.396]],["parent/492",[265,3.287]],["name/493",[132,39.537]],["parent/493",[265,3.287]],["name/494",[133,43.396]],["parent/494",[265,3.287]],["name/495",[134,43.396]],["parent/495",[265,3.287]],["name/496",[135,43.396]],["parent/496",[265,3.287]],["name/497",[266,60.753]],["parent/497",[]],["name/498",[267,60.753]],["parent/498",[]],["name/499",[268,52.275]],["parent/499",[]],["name/500",[269,60.753]],["parent/500",[268,4.897]],["name/501",[261,52.275]],["parent/501",[270,4.474]],["name/502",[262,52.275]],["parent/502",[270,4.474]],["name/503",[96,49.76]],["parent/503",[270,4.474]],["name/504",[263,52.275]],["parent/504",[270,4.474]],["name/505",[264,49.76]],["parent/505",[270,4.474]],["name/506",[271,60.753]],["parent/506",[268,4.897]],["name/507",[261,52.275]],["parent/507",[272,4.474]],["name/508",[262,52.275]],["parent/508",[272,4.474]],["name/509",[96,49.76]],["parent/509",[272,4.474]],["name/510",[263,52.275]],["parent/510",[272,4.474]],["name/511",[264,49.76]],["parent/511",[272,4.474]],["name/512",[273,52.275]],["parent/512",[]],["name/513",[22,33.221]],["parent/513",[273,4.897]],["name/514",[274,60.753]],["parent/514",[273,4.897]],["name/515",[275,52.275]],["parent/515",[]],["name/516",[109,43.396]],["parent/516",[275,4.897]],["name/517",[107,42.283]],["parent/517",[275,4.897]],["name/518",[276,31.29]],["parent/518",[]],["name/519",[46,47.752]],["parent/519",[276,2.931]],["name/520",[23,44.649]],["parent/520",[276,2.931]],["name/521",[138,52.275]],["parent/521",[276,2.931]],["name/522",[22,33.221]],["parent/522",[276,2.931]],["name/523",[119,49.76]],["parent/523",[276,2.931]],["name/524",[111,28.544]],["parent/524",[276,2.931]],["name/525",[109,43.396]],["parent/525",[276,2.931]],["name/526",[107,42.283]],["parent/526",[276,2.931]],["name/527",[277,52.275]],["parent/527",[276,2.931]],["name/528",[120,49.76]],["parent/528",[276,2.931]],["name/529",[28,46.081]],["parent/529",[276,2.931]],["name/530",[76,38.052]],["parent/530",[276,2.931]],["name/531",[121,43.396]],["parent/531",[276,2.931]],["name/532",[122,43.396]],["parent/532",[276,2.931]],["name/533",[123,43.396]],["parent/533",[276,2.931]],["name/534",[124,43.396]],["parent/534",[276,2.931]],["name/535",[125,43.396]],["parent/535",[276,2.931]],["name/536",[126,43.396]],["parent/536",[276,2.931]],["name/537",[127,43.396]],["parent/537",[276,2.931]],["name/538",[128,43.396]],["parent/538",[276,2.931]],["name/539",[129,43.396]],["parent/539",[276,2.931]],["name/540",[130,43.396]],["parent/540",[276,2.931]],["name/541",[131,43.396]],["parent/541",[276,2.931]],["name/542",[132,39.537]],["parent/542",[276,2.931]],["name/543",[133,43.396]],["parent/543",[276,2.931]],["name/544",[134,43.396]],["parent/544",[276,2.931]],["name/545",[135,43.396]],["parent/545",[276,2.931]],["name/546",[111,28.544]],["parent/546",[]],["name/547",[278,47.752]],["parent/547",[]],["name/548",[140,47.752]],["parent/548",[278,4.474]],["name/549",[111,28.544]],["parent/549",[278,4.474]],["name/550",[23,44.649]],["parent/550",[278,4.474]],["name/551",[31,42.283]],["parent/551",[278,4.474]],["name/552",[279,52.275]],["parent/552",[]],["name/553",[109,43.396]],["parent/553",[279,4.897]],["name/554",[107,42.283]],["parent/554",[279,4.897]],["name/555",[280,31.29]],["parent/555",[]],["name/556",[46,47.752]],["parent/556",[280,2.931]],["name/557",[23,44.649]],["parent/557",[280,2.931]],["name/558",[138,52.275]],["parent/558",[280,2.931]],["name/559",[22,33.221]],["parent/559",[280,2.931]],["name/560",[119,49.76]],["parent/560",[280,2.931]],["name/561",[111,28.544]],["parent/561",[280,2.931]],["name/562",[109,43.396]],["parent/562",[280,2.931]],["name/563",[107,42.283]],["parent/563",[280,2.931]],["name/564",[277,52.275]],["parent/564",[280,2.931]],["name/565",[120,49.76]],["parent/565",[280,2.931]],["name/566",[28,46.081]],["parent/566",[280,2.931]],["name/567",[76,38.052]],["parent/567",[280,2.931]],["name/568",[121,43.396]],["parent/568",[280,2.931]],["name/569",[122,43.396]],["parent/569",[280,2.931]],["name/570",[123,43.396]],["parent/570",[280,2.931]],["name/571",[124,43.396]],["parent/571",[280,2.931]],["name/572",[125,43.396]],["parent/572",[280,2.931]],["name/573",[126,43.396]],["parent/573",[280,2.931]],["name/574",[127,43.396]],["parent/574",[280,2.931]],["name/575",[128,43.396]],["parent/575",[280,2.931]],["name/576",[129,43.396]],["parent/576",[280,2.931]],["name/577",[130,43.396]],["parent/577",[280,2.931]],["name/578",[131,43.396]],["parent/578",[280,2.931]],["name/579",[132,39.537]],["parent/579",[280,2.931]],["name/580",[133,43.396]],["parent/580",[280,2.931]],["name/581",[134,43.396]],["parent/581",[280,2.931]],["name/582",[135,43.396]],["parent/582",[280,2.931]],["name/583",[281,46.081]],["parent/583",[]],["name/584",[140,47.752]],["parent/584",[281,4.317]],["name/585",[111,28.544]],["parent/585",[281,4.317]],["name/586",[23,44.649]],["parent/586",[281,4.317]],["name/587",[31,42.283]],["parent/587",[281,4.317]],["name/588",[282,60.753]],["parent/588",[281,4.317]],["name/589",[283,60.753]],["parent/589",[]],["name/590",[284,60.753]],["parent/590",[]],["name/591",[139,47.752]],["parent/591",[196,2.359]],["name/592",[285,60.753]],["parent/592",[196,2.359]],["name/593",[31,42.283]],["parent/593",[196,2.359]],["name/594",[74,47.752]],["parent/594",[196,2.359]],["name/595",[73,49.76]],["parent/595",[196,2.359]],["name/596",[46,47.752]],["parent/596",[196,2.359]],["name/597",[286,60.753]],["parent/597",[196,2.359]],["name/598",[277,52.275]],["parent/598",[196,2.359]],["name/599",[76,38.052]],["parent/599",[196,2.359]],["name/600",[287,60.753]],["parent/600",[]],["name/601",[288,36.17]],["parent/601",[]],["name/602",[61,43.396]],["parent/602",[288,3.389]],["name/603",[76,38.052]],["parent/603",[288,3.389]],["name/604",[289,60.753]],["parent/604",[288,3.389]],["name/605",[22,33.221]],["parent/605",[288,3.389]],["name/606",[68,49.76]],["parent/606",[288,3.389]],["name/607",[290,60.753]],["parent/607",[288,3.389]],["name/608",[71,52.275]],["parent/608",[288,3.389]],["name/609",[72,52.275]],["parent/609",[288,3.389]],["name/610",[1,52.275]],["parent/610",[288,3.389]],["name/611",[73,49.76]],["parent/611",[288,3.389]],["name/612",[31,42.283]],["parent/612",[288,3.389]],["name/613",[74,47.752]],["parent/613",[288,3.389]],["name/614",[69,52.275]],["parent/614",[288,3.389]],["name/615",[70,52.275]],["parent/615",[288,3.389]],["name/616",[75,52.275]],["parent/616",[288,3.389]],["name/617",[36,38.767]],["parent/617",[288,3.389]],["name/618",[291,60.753]],["parent/618",[]],["name/619",[292,60.753]],["parent/619",[]],["name/620",[293,52.275]],["parent/620",[]],["name/621",[294,60.753]],["parent/621",[293,4.897]],["name/622",[295,43.127,296,43.127]],["parent/622",[293,4.897]],["name/623",[259,33.656]],["parent/623",[]],["name/624",[22,33.221]],["parent/624",[259,3.153]],["name/625",[297,60.753]],["parent/625",[259,3.153]],["name/626",[298,60.753]],["parent/626",[259,3.153]],["name/627",[299,60.753]],["parent/627",[259,3.153]],["name/628",[300,60.753]],["parent/628",[259,3.153]],["name/629",[264,49.76]],["parent/629",[259,3.153]],["name/630",[301,60.753]],["parent/630",[259,3.153]],["name/631",[258,55.642]],["parent/631",[259,3.153]],["name/632",[198,55.642]],["parent/632",[259,3.153]],["name/633",[302,60.753]],["parent/633",[259,3.153]],["name/634",[303,60.753]],["parent/634",[259,3.153]],["name/635",[304,60.753]],["parent/635",[259,3.153]],["name/636",[305,60.753]],["parent/636",[259,3.153]],["name/637",[306,60.753]],["parent/637",[259,3.153]],["name/638",[307,60.753]],["parent/638",[259,3.153]],["name/639",[205,55.642]],["parent/639",[259,3.153]],["name/640",[308,60.753]],["parent/640",[259,3.153]],["name/641",[309,60.753]],["parent/641",[259,3.153]],["name/642",[310,60.753]],["parent/642",[259,3.153]],["name/643",[311,60.753]],["parent/643",[259,3.153]],["name/644",[312,60.753]],["parent/644",[]],["name/645",[313,60.753]],["parent/645",[]],["name/646",[314,60.753]],["parent/646",[]],["name/647",[315,55.642]],["parent/647",[]],["name/648",[316,60.753]],["parent/648",[315,5.213]]],"invertedIndex":[["231",{"_index":316,"name":{"648":{}},"parent":{}}],["__type",{"_index":158,"name":{"207":{},"225":{},"258":{},"260":{},"443":{}},"parent":{}}],["_buildhttplog",{"_index":25,"name":{"27":{}},"parent":{}}],["_context",{"_index":197,"name":{"268":{}},"parent":{}}],["_doctypehandlers",{"_index":289,"name":{"604":{}},"parent":{}}],["_genesiscidlength",{"_index":298,"name":{"626":{}},"parent":{}}],["_initpinapi",{"_index":290,"name":{"607":{}},"parent":{}}],["_ipfs",{"_index":213,"name":{"322":{}},"parent":{}}],["_loaddoc",{"_index":255,"name":{"465":{}},"parent":{}}],["_notsupported",{"_index":35,"name":{"37":{}},"parent":{}}],["_syncstate",{"_index":286,"name":{"597":{}},"parent":{}}],["_totext",{"_index":169,"name":{"216":{}},"parent":{}}],["accountlinkdoctype",{"_index":276,"name":{"518":{}},"parent":{"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{}}}],["accountlinkdoctypehandler",{"_index":278,"name":{"547":{}},"parent":{"548":{},"549":{},"550":{},"551":{}}}],["accountlinkparams",{"_index":275,"name":{"515":{}},"parent":{"516":{},"517":{}}}],["add",{"_index":64,"name":{"69":{},"263":{}},"parent":{}}],["adddoctypehandler",{"_index":69,"name":{"75":{},"458":{},"614":{}},"parent":{}}],["addlistener",{"_index":121,"name":{"147":{},"175":{},"293":{},"332":{},"354":{},"482":{},"531":{},"568":{}},"parent":{}}],["addplugin",{"_index":168,"name":{"215":{}},"parent":{}}],["anchor",{"_index":201,"name":{"281":{}},"parent":{}}],["anchored",{"_index":89,"name":{"100":{}},"parent":{}}],["anchorproof",{"_index":95,"name":{"106":{},"131":{}},"parent":{"107":{},"108":{},"109":{},"110":{},"111":{}}}],["anchorrecord",{"_index":91,"name":{"102":{},"230":{}},"parent":{"103":{},"104":{},"105":{}}}],["anchorscheduledfor",{"_index":114,"name":{"130":{},"229":{}},"parent":{}}],["anchorservice",{"_index":79,"name":{"90":{},"172":{}},"parent":{"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{}}}],["anchorservicefactory",{"_index":273,"name":{"512":{}},"parent":{"513":{},"514":{}}}],["anchorserviceresponse",{"_index":173,"name":{"226":{}},"parent":{"227":{},"228":{},"229":{},"230":{}}}],["anchorserviceurl",{"_index":11,"name":{"11":{},"434":{}},"parent":{}}],["anchorstatus",{"_index":85,"name":{"96":{},"129":{}},"parent":{"97":{},"98":{},"99":{},"100":{},"101":{}}}],["api",{"_index":80,"name":{"91":{}},"parent":{}}],["api_path",{"_index":292,"name":{"619":{}},"parent":{}}],["applyonly",{"_index":117,"name":{"134":{}},"parent":{}}],["applyrecord",{"_index":31,"name":{"33":{},"82":{},"170":{},"280":{},"460":{},"551":{},"587":{},"593":{},"612":{}},"parent":{}}],["awaitcondition",{"_index":178,"name":{"233":{}},"parent":{}}],["backends",{"_index":243,"name":{"420":{}},"parent":{}}],["baseid",{"_index":300,"name":{"628":{}},"parent":{}}],["blocknumber",{"_index":97,"name":{"108":{}},"parent":{}}],["blocktimestamp",{"_index":98,"name":{"109":{}},"parent":{}}],["bytes",{"_index":305,"name":{"636":{}},"parent":{}}],["caip10",{"_index":295,"name":{"622":{}},"parent":{}}],["ceramic",{"_index":0,"name":{"0":{},"24":{}},"parent":{"1":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{}}}],["ceramic_host",{"_index":291,"name":{"618":{}},"parent":{}}],["ceramicapi",{"_index":67,"name":{"72":{}},"parent":{"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{}}}],["ceramicclient",{"_index":288,"name":{"601":{}},"parent":{"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{}}}],["ceramiccliutils",{"_index":43,"name":{"45":{}},"parent":{"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{}}}],["ceramicconfig",{"_index":246,"name":{"432":{}},"parent":{"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"446":{},"447":{}}}],["ceramicconfig.logtofilesplugin",{"_index":251,"name":{},"parent":{"443":{}}}],["ceramicconfig.logtofilesplugin.__type",{"_index":252,"name":{},"parent":{"444":{},"445":{}}}],["ceramicdaemon",{"_index":21,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{}}}],["ceramichost",{"_index":42,"name":{"44":{}},"parent":{}}],["chain",{"_index":262,"name":{"474":{},"502":{},"508":{}},"parent":{}}],["chainid",{"_index":96,"name":{"107":{},"475":{},"503":{},"509":{}},"parent":{}}],["change",{"_index":46,"name":{"48":{},"146":{},"519":{},"556":{},"596":{}},"parent":{}}],["cid",{"_index":258,"name":{"470":{},"631":{}},"parent":{}}],["ciddoc",{"_index":257,"name":{"469":{}},"parent":{"470":{},"471":{}}}],["cliconfig",{"_index":40,"name":{"42":{}},"parent":{"43":{},"44":{}}}],["close",{"_index":36,"name":{"38":{},"84":{},"239":{},"247":{},"262":{},"291":{},"331":{},"378":{},"385":{},"409":{},"423":{},"467":{},"617":{}},"parent":{}}],["codec",{"_index":304,"name":{"635":{}},"parent":{}}],["component",{"_index":164,"name":{"211":{}},"parent":{}}],["config",{"_index":62,"name":{"67":{}},"parent":{}}],["constructor",{"_index":22,"name":{"23":{},"137":{},"165":{},"190":{},"252":{},"254":{},"271":{},"321":{},"351":{},"370":{},"382":{},"390":{},"406":{},"414":{},"421":{},"429":{},"450":{},"479":{},"513":{},"522":{},"559":{},"605":{},"624":{}},"parent":{}}],["content",{"_index":109,"name":{"120":{},"125":{},"140":{},"284":{},"516":{},"525":{},"553":{},"562":{}},"parent":{}}],["context",{"_index":76,"name":{"85":{},"145":{},"430":{},"449":{},"530":{},"567":{},"599":{},"603":{}},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{}}}],["controllers",{"_index":102,"name":{"113":{},"121":{},"142":{},"288":{}},"parent":{}}],["convertrecordtodto",{"_index":150,"name":{"199":{}},"parent":{}}],["create",{"_index":23,"name":{"25":{},"274":{},"455":{},"520":{},"550":{},"557":{},"586":{}},"parent":{}}],["createdaemon",{"_index":44,"name":{"46":{}},"parent":{}}],["createdoc",{"_index":45,"name":{"47":{}},"parent":{}}],["createdocfromgenesis",{"_index":26,"name":{"28":{}},"parent":{}}],["createdocument",{"_index":71,"name":{"77":{},"462":{},"608":{}},"parent":{}}],["createdocumentfromgenesis",{"_index":72,"name":{"78":{},"463":{},"609":{}},"parent":{}}],["createfromgenesis",{"_index":285,"name":{"592":{}},"parent":{}}],["createopts",{"_index":6,"name":{"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{}}}],["debug",{"_index":16,"name":{"16":{}},"parent":{}}],["default_anchor_service_url",{"_index":39,"name":{"41":{}},"parent":{}}],["default_cli_config_file",{"_index":57,"name":{"62":{}},"parent":{}}],["default_cli_config_path",{"_index":59,"name":{"64":{}},"parent":{}}],["default_max_poll_time",{"_index":267,"name":{"498":{}},"parent":{}}],["default_pinning_store_path",{"_index":58,"name":{"63":{}},"parent":{}}],["default_poll_time",{"_index":266,"name":{"497":{}},"parent":{}}],["default_port",{"_index":37,"name":{"39":{}},"parent":{}}],["defaultmaxlisteners",{"_index":136,"name":{"163":{},"192":{},"309":{},"348":{}},"parent":{}}],["defaultopts",{"_index":170,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{}}}],["defaultopts.stacktrace",{"_index":171,"name":{},"parent":{"221":{},"222":{},"223":{}}}],["depth",{"_index":162,"name":{"209":{},"222":{}},"parent":{}}],["deserializerecord",{"_index":146,"name":{"195":{}},"parent":{}}],["deserializestate",{"_index":148,"name":{"197":{}},"parent":{}}],["designator",{"_index":191,"name":{"251":{},"380":{},"403":{}},"parent":{}}],["did",{"_index":68,"name":{"74":{},"86":{},"454":{},"606":{}},"parent":{}}],["didprovider",{"_index":248,"name":{"437":{}},"parent":{}}],["didresolver",{"_index":247,"name":{"436":{}},"parent":{}}],["dispatcher",{"_index":199,"name":{"272":{},"320":{},"451":{}},"parent":{"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{}}}],["docid",{"_index":259,"name":{"471":{},"623":{}},"parent":{"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{}}}],["docid_codec",{"_index":312,"name":{"644":{}},"parent":{}}],["docidurl",{"_index":287,"name":{"600":{}},"parent":{}}],["docmetadata",{"_index":101,"name":{"112":{}},"parent":{"113":{},"114":{},"115":{},"116":{}}}],["docnext",{"_index":108,"name":{"119":{}},"parent":{"120":{},"121":{},"122":{}}}],["docopts",{"_index":116,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["docparams",{"_index":106,"name":{"117":{}},"parent":{"118":{}}}],["docstate",{"_index":110,"name":{"123":{}},"parent":{"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{}}}],["doctype",{"_index":111,"name":{"124":{},"136":{},"139":{},"169":{},"286":{},"524":{},"546":{},"549":{},"561":{},"585":{}},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["doctypeconstructor",{"_index":137,"name":{"164":{}},"parent":{"165":{},"166":{}}}],["doctypehandler",{"_index":139,"name":{"167":{},"591":{}},"parent":{"168":{},"169":{},"170":{}}}],["doctypestatic",{"_index":141,"name":{"171":{}},"parent":{}}],["doctypeutils",{"_index":144,"name":{"193":{}},"parent":{"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{}}}],["document",{"_index":196,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{}}}],["eip155:1",{"_index":269,"name":{"500":{}},"parent":{}}],["eip155:3",{"_index":271,"name":{"506":{}},"parent":{}}],["emit",{"_index":131,"name":{"157":{},"185":{},"303":{},"342":{},"364":{},"492":{},"541":{},"578":{}},"parent":{}}],["emptytokenerror",{"_index":226,"name":{"389":{}},"parent":{"390":{},"391":{},"392":{},"393":{},"394":{}}}],["endpoint",{"_index":237,"name":{"404":{}},"parent":{}}],["equals",{"_index":306,"name":{"637":{}},"parent":{}}],["error",{"_index":228,"name":{"394":{},"418":{}},"parent":{}}],["eth_chain_id_mappings",{"_index":268,"name":{"499":{}},"parent":{"500":{},"506":{}}}],["eth_chain_id_mappings.eip155:1",{"_index":270,"name":{},"parent":{"501":{},"502":{},"503":{},"504":{},"505":{}}}],["eth_chain_id_mappings.eip155:3",{"_index":272,"name":{},"parent":{"507":{},"508":{},"509":{},"510":{},"511":{}}}],["ethereumanchorservice",{"_index":265,"name":{"478":{}},"parent":{"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{}}}],["ethereumrpcurl",{"_index":10,"name":{"10":{},"433":{}},"parent":{}}],["ethnetwork",{"_index":260,"name":{"472":{}},"parent":{"473":{},"474":{},"475":{},"476":{},"477":{}}}],["event",{"_index":210,"name":{"316":{}},"parent":{}}],["eventnames",{"_index":135,"name":{"161":{},"189":{},"307":{},"346":{},"368":{},"496":{},"545":{},"582":{}},"parent":{}}],["excess",{"_index":163,"name":{"210":{},"223":{}},"parent":{}}],["exists",{"_index":186,"name":{"242":{},"375":{}},"parent":{}}],["failed",{"_index":90,"name":{"101":{}},"parent":{}}],["fetchjson",{"_index":283,"name":{"589":{}},"parent":{}}],["finddoctypehandler",{"_index":70,"name":{"76":{},"459":{},"615":{}},"parent":{}}],["findhandler",{"_index":253,"name":{"456":{}},"parent":{}}],["format",{"_index":156,"name":{"205":{},"219":{}},"parent":{}}],["from",{"_index":212,"name":{"318":{}},"parent":{}}],["from_context",{"_index":225,"name":{"388":{}},"parent":{}}],["frombytes",{"_index":297,"name":{"625":{}},"parent":{}}],["fromstring",{"_index":299,"name":{"627":{}},"parent":{}}],["fs",{"_index":56,"name":{"61":{}},"parent":{}}],["gateway",{"_index":15,"name":{"15":{},"446":{}},"parent":{}}],["genesis",{"_index":82,"name":{"93":{}},"parent":{}}],["get",{"_index":274,"name":{"514":{}},"parent":{}}],["getdocfrommap",{"_index":254,"name":{"461":{}},"parent":{}}],["getkey",{"_index":313,"name":{"645":{}},"parent":{}}],["getmaxlisteners",{"_index":128,"name":{"154":{},"182":{},"300":{},"339":{},"361":{},"489":{},"538":{},"575":{}},"parent":{}}],["getversion",{"_index":200,"name":{"278":{},"279":{}},"parent":{}}],["handlemessage",{"_index":219,"name":{"330":{}},"parent":{}}],["head",{"_index":120,"name":{"143":{},"287":{},"528":{},"565":{}},"parent":{}}],["httplog",{"_index":18,"name":{"19":{}},"parent":{"20":{},"21":{}}}],["id",{"_index":119,"name":{"138":{},"269":{},"523":{},"560":{}},"parent":{}}],["init",{"_index":167,"name":{"214":{},"324":{}},"parent":{}}],["ipfs",{"_index":8,"name":{"8":{},"87":{},"383":{},"453":{}},"parent":{}}],["ipfsaddress",{"_index":224,"name":{"381":{}},"parent":{}}],["ipfshost",{"_index":7,"name":{"7":{}},"parent":{}}],["ipfspinning",{"_index":223,"name":{"379":{}},"parent":{"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{}}}],["isanchorrecord",{"_index":153,"name":{"202":{}},"parent":{}}],["isdocid",{"_index":311,"name":{"643":{}},"parent":{}}],["isschemavalid",{"_index":179,"name":{"234":{}},"parent":{}}],["issignedrecord",{"_index":152,"name":{"201":{}},"parent":{}}],["issignedrecorddto",{"_index":151,"name":{"200":{}},"parent":{}}],["isunique",{"_index":105,"name":{"116":{}},"parent":{}}],["job_status_canceled",{"_index":234,"name":{"400":{}},"parent":{}}],["job_status_executing",{"_index":232,"name":{"398":{}},"parent":{}}],["job_status_failed",{"_index":233,"name":{"399":{}},"parent":{}}],["job_status_queued",{"_index":231,"name":{"397":{}},"parent":{}}],["job_status_success",{"_index":235,"name":{"401":{}},"parent":{}}],["job_status_unspecified",{"_index":230,"name":{"396":{}},"parent":{}}],["jobstatus",{"_index":229,"name":{"395":{}},"parent":{"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["keytodiddoc",{"_index":314,"name":{"646":{}},"parent":{}}],["level",{"_index":155,"name":{"204":{},"218":{}},"parent":{}}],["levels",{"_index":160,"name":{"208":{},"221":{}},"parent":{}}],["levelstatestore",{"_index":221,"name":{"369":{}},"parent":{"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{}}}],["link",{"_index":296,"name":{"622":{}},"parent":{}}],["list",{"_index":187,"name":{"243":{},"377":{}},"parent":{}}],["listenercount",{"_index":132,"name":{"158":{},"162":{},"186":{},"191":{},"304":{},"308":{},"343":{},"347":{},"365":{},"493":{},"542":{},"579":{}},"parent":{}}],["listeners",{"_index":129,"name":{"155":{},"183":{},"301":{},"340":{},"362":{},"490":{},"539":{},"576":{}},"parent":{}}],["listpinned",{"_index":34,"name":{"36":{}},"parent":{}}],["listversions",{"_index":74,"name":{"81":{},"277":{},"466":{},"594":{},"613":{}},"parent":{}}],["load",{"_index":185,"name":{"241":{},"275":{},"374":{}},"parent":{}}],["loaddocument",{"_index":1,"name":{"1":{},"79":{},"610":{}},"parent":{}}],["loaddocumentrecords",{"_index":73,"name":{"80":{},"464":{},"595":{},"611":{}},"parent":{}}],["loadschema",{"_index":202,"name":{"282":{}},"parent":{}}],["loadschemabyid",{"_index":203,"name":{"283":{}},"parent":{}}],["log",{"_index":115,"name":{"132":{}},"parent":{}}],["loggerprovider",{"_index":166,"name":{"213":{}},"parent":{"214":{},"215":{},"216":{}}}],["loglevel",{"_index":249,"name":{"440":{}},"parent":{}}],["logmessage",{"_index":208,"name":{"314":{}},"parent":{"315":{},"316":{},"317":{},"318":{},"319":{}}}],["logpath",{"_index":17,"name":{"18":{}},"parent":{}}],["logtofiles",{"_index":4,"name":{"4":{},"17":{},"441":{}},"parent":{"5":{}}}],["logtofilesplugin",{"_index":250,"name":{"442":{}},"parent":{}}],["ls",{"_index":66,"name":{"71":{},"265":{}},"parent":{}}],["main",{"_index":5,"name":{"5":{}},"parent":{}}],["makegenesis",{"_index":138,"name":{"166":{},"521":{},"558":{}},"parent":{}}],["makereadonly",{"_index":149,"name":{"198":{}},"parent":{}}],["message",{"_index":175,"name":{"228":{},"319":{},"392":{},"416":{}},"parent":{}}],["metadata",{"_index":107,"name":{"118":{},"122":{},"127":{},"141":{},"289":{},"517":{},"526":{},"554":{},"563":{}},"parent":{}}],["mockanchorservice",{"_index":220,"name":{"350":{}},"parent":{"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{}}}],["msgtype",{"_index":206,"name":{"310":{}},"parent":{"311":{},"312":{},"313":{}}}],["multibasename",{"_index":302,"name":{"633":{}},"parent":{}}],["multihash",{"_index":303,"name":{"634":{}},"parent":{}}],["name",{"_index":140,"name":{"168":{},"391":{},"415":{},"548":{},"584":{}},"parent":{}}],["network",{"_index":261,"name":{"473":{},"501":{},"507":{}},"parent":{}}],["networkid",{"_index":263,"name":{"476":{},"504":{},"510":{}},"parent":{}}],["next",{"_index":112,"name":{"126":{}},"parent":{}}],["normalizedocid",{"_index":256,"name":{"468":{}},"parent":{}}],["not_requested",{"_index":86,"name":{"97":{}},"parent":{}}],["off",{"_index":125,"name":{"151":{},"179":{},"297":{},"336":{},"358":{},"486":{},"535":{},"572":{}},"parent":{}}],["on",{"_index":122,"name":{"148":{},"176":{},"294":{},"333":{},"355":{},"483":{},"532":{},"569":{}},"parent":{}}],["once",{"_index":123,"name":{"149":{},"177":{},"295":{},"334":{},"356":{},"484":{},"533":{},"570":{}},"parent":{}}],["open",{"_index":183,"name":{"238":{},"246":{},"261":{},"372":{},"384":{},"408":{},"422":{},"431":{}},"parent":{}}],["options",{"_index":154,"name":{"203":{},"445":{}},"parent":{"204":{},"205":{},"206":{},"211":{}}}],["options.stacktrace",{"_index":159,"name":{},"parent":{"207":{}}}],["options.stacktrace.__type",{"_index":161,"name":{},"parent":{"208":{},"209":{},"210":{}}}],["owners",{"_index":277,"name":{"527":{},"564":{},"598":{}},"parent":{}}],["partial",{"_index":83,"name":{"94":{}},"parent":{}}],["path",{"_index":94,"name":{"105":{}},"parent":{}}],["peer",{"_index":209,"name":{"315":{}},"parent":{}}],["pending",{"_index":87,"name":{"98":{}},"parent":{}}],["pin",{"_index":61,"name":{"66":{},"73":{},"248":{},"386":{},"410":{},"424":{},"448":{},"602":{}},"parent":{}}],["pinadd",{"_index":50,"name":{"55":{}},"parent":{}}],["pinapi",{"_index":63,"name":{"68":{}},"parent":{"69":{},"70":{},"71":{}}}],["pindocument",{"_index":32,"name":{"34":{}},"parent":{}}],["pinls",{"_index":52,"name":{"57":{}},"parent":{}}],["pinning",{"_index":14,"name":{"14":{},"245":{},"256":{},"439":{}},"parent":{"246":{},"247":{},"248":{},"249":{}}}],["pinningaggregation",{"_index":242,"name":{"419":{}},"parent":{"420":{},"421":{},"422":{},"423":{},"424":{},"425":{}}}],["pinnings",{"_index":245,"name":{"428":{}},"parent":{}}],["pinningstatic",{"_index":190,"name":{"250":{}},"parent":{"251":{},"252":{}}}],["pinrm",{"_index":51,"name":{"56":{}},"parent":{}}],["pinstore",{"_index":192,"name":{"253":{},"273":{},"452":{}},"parent":{"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["pinstorefactory",{"_index":244,"name":{"426":{}},"parent":{"427":{},"428":{},"429":{},"430":{},"431":{}}}],["plugin",{"_index":172,"name":{"224":{},"444":{}},"parent":{"225":{}}}],["pluginoptions",{"_index":165,"name":{"212":{}},"parent":{}}],["pointsofinterest",{"_index":195,"name":{"266":{}},"parent":{}}],["port",{"_index":9,"name":{"9":{}},"parent":{}}],["pow",{"_index":239,"name":{"407":{}},"parent":{}}],["powergatepinning",{"_index":236,"name":{"402":{}},"parent":{"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{}}}],["prefixtodrivermap",{"_index":315,"name":{"647":{}},"parent":{"648":{}}}],["prependlistener",{"_index":133,"name":{"159":{},"187":{},"305":{},"344":{},"366":{},"494":{},"543":{},"580":{}},"parent":{}}],["prependoncelistener",{"_index":134,"name":{"160":{},"188":{},"306":{},"345":{},"367":{},"495":{},"544":{},"581":{}},"parent":{}}],["prev",{"_index":92,"name":{"103":{}},"parent":{}}],["processing",{"_index":88,"name":{"99":{}},"parent":{}}],["proof",{"_index":93,"name":{"104":{}},"parent":{}}],["provider",{"_index":78,"name":{"89":{}},"parent":{}}],["publishhead",{"_index":218,"name":{"329":{}},"parent":{}}],["rawlisteners",{"_index":130,"name":{"156":{},"184":{},"302":{},"341":{},"363":{},"491":{},"540":{},"577":{}},"parent":{}}],["records",{"_index":30,"name":{"32":{}},"parent":{}}],["register",{"_index":214,"name":{"325":{}},"parent":{}}],["registerapipaths",{"_index":24,"name":{"26":{}},"parent":{}}],["remove",{"_index":188,"name":{"244":{},"376":{}},"parent":{}}],["removealllisteners",{"_index":126,"name":{"152":{},"180":{},"298":{},"337":{},"359":{},"487":{},"536":{},"573":{}},"parent":{}}],["removelistener",{"_index":124,"name":{"150":{},"178":{},"296":{},"335":{},"357":{},"485":{},"534":{},"571":{}},"parent":{}}],["request",{"_index":19,"name":{"20":{},"312":{}},"parent":{}}],["requestanchor",{"_index":142,"name":{"173":{},"352":{},"480":{}},"parent":{}}],["resolve",{"_index":194,"name":{"259":{}},"parent":{}}],["resolver",{"_index":77,"name":{"88":{}},"parent":{}}],["resolverregistry",{"_index":2,"name":{"2":{}},"parent":{}}],["response",{"_index":20,"name":{"21":{},"313":{}},"parent":{}}],["retrieve",{"_index":193,"name":{"257":{}},"parent":{}}],["retrieverecord",{"_index":217,"name":{"328":{}},"parent":{}}],["rm",{"_index":65,"name":{"70":{},"264":{}},"parent":{}}],["root",{"_index":100,"name":{"111":{}},"parent":{}}],["save",{"_index":184,"name":{"240":{},"373":{}},"parent":{}}],["schema",{"_index":103,"name":{"114":{}},"parent":{}}],["schemachangedoc",{"_index":49,"name":{"54":{}},"parent":{}}],["schemacreatedoc",{"_index":48,"name":{"53":{}},"parent":{}}],["schemas",{"_index":60,"name":{"65":{}},"parent":{}}],["seed",{"_index":41,"name":{"43":{}},"parent":{}}],["serializerecord",{"_index":145,"name":{"194":{}},"parent":{}}],["serializestate",{"_index":147,"name":{"196":{}},"parent":{}}],["setconfig",{"_index":54,"name":{"59":{}},"parent":{}}],["setdidprovider",{"_index":75,"name":{"83":{},"457":{},"616":{}},"parent":{}}],["setmaxlisteners",{"_index":127,"name":{"153":{},"181":{},"299":{},"338":{},"360":{},"488":{},"537":{},"574":{}},"parent":{}}],["show",{"_index":27,"name":{"29":{},"49":{}},"parent":{}}],["showconfig",{"_index":53,"name":{"58":{}},"parent":{}}],["signature",{"_index":113,"name":{"128":{}},"parent":{}}],["signaturestatus",{"_index":81,"name":{"92":{}},"parent":{"93":{},"94":{},"95":{}}}],["signed",{"_index":84,"name":{"95":{}},"parent":{}}],["skipwait",{"_index":118,"name":{"135":{}},"parent":{}}],["stack",{"_index":227,"name":{"393":{},"417":{}},"parent":{}}],["stacktrace",{"_index":157,"name":{"206":{},"220":{}},"parent":{}}],["state",{"_index":28,"name":{"30":{},"50":{},"144":{},"285":{},"529":{},"566":{}},"parent":{}}],["statestore",{"_index":182,"name":{"237":{},"255":{}},"parent":{"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["statestorepath",{"_index":12,"name":{"12":{},"427":{},"435":{}},"parent":{}}],["status",{"_index":174,"name":{"227":{}},"parent":{}}],["store",{"_index":222,"name":{"371":{}},"parent":{}}],["storerecord",{"_index":216,"name":{"327":{}},"parent":{}}],["symbol.for('nodejs.util.inspect.custom",{"_index":309,"name":{"641":{}},"parent":{}}],["symbol.toprimitive",{"_index":310,"name":{"642":{}},"parent":{}}],["table",{"_index":293,"name":{"620":{}},"parent":{"621":{},"622":{}}}],["tags",{"_index":104,"name":{"115":{}},"parent":{}}],["tile",{"_index":294,"name":{"621":{}},"parent":{}}],["tiledoctype",{"_index":280,"name":{"555":{}},"parent":{"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{}}}],["tiledoctypehandler",{"_index":281,"name":{"583":{}},"parent":{"584":{},"585":{},"586":{},"587":{},"588":{}}}],["tileparams",{"_index":279,"name":{"552":{}},"parent":{"553":{},"554":{}}}],["toapipath",{"_index":38,"name":{"40":{}},"parent":{}}],["tobaseencodedstring",{"_index":307,"name":{"638":{}},"parent":{}}],["token",{"_index":238,"name":{"405":{}},"parent":{}}],["topic",{"_index":211,"name":{"317":{},"323":{},"349":{},"447":{}},"parent":{}}],["tostring",{"_index":205,"name":{"292":{},"639":{}},"parent":{}}],["tourl",{"_index":308,"name":{"640":{}},"parent":{}}],["txhash",{"_index":99,"name":{"110":{}},"parent":{}}],["type",{"_index":264,"name":{"477":{},"505":{},"511":{},"629":{}},"parent":{}}],["typedocid",{"_index":284,"name":{"590":{}},"parent":{}}],["typename",{"_index":301,"name":{"630":{}},"parent":{}}],["unknownpinningservice",{"_index":241,"name":{"413":{}},"parent":{"414":{},"415":{},"416":{},"417":{},"418":{}}}],["unpin",{"_index":189,"name":{"249":{},"387":{},"411":{},"425":{}},"parent":{}}],["unpindocument",{"_index":33,"name":{"35":{}},"parent":{}}],["unregister",{"_index":215,"name":{"326":{}},"parent":{}}],["unsetconfig",{"_index":55,"name":{"60":{}},"parent":{}}],["update",{"_index":207,"name":{"311":{}},"parent":{}}],["utils",{"_index":176,"name":{"231":{}},"parent":{"232":{},"233":{},"234":{},"235":{},"236":{}}}],["validate",{"_index":180,"name":{"235":{},"276":{}},"parent":{}}],["validatechaininclusion",{"_index":143,"name":{"174":{},"353":{},"481":{}},"parent":{}}],["validatedocs",{"_index":13,"name":{"13":{},"438":{}},"parent":{}}],["validatedoctype",{"_index":181,"name":{"236":{}},"parent":{}}],["validator",{"_index":177,"name":{"232":{}},"parent":{}}],["verifyjws",{"_index":282,"name":{"588":{}},"parent":{}}],["version",{"_index":198,"name":{"270":{},"632":{}},"parent":{}}],["versions",{"_index":29,"name":{"31":{},"52":{}},"parent":{}}],["wait",{"_index":204,"name":{"290":{}},"parent":{}}],["waitforjobstatus",{"_index":240,"name":{"412":{}},"parent":{}}],["watch",{"_index":47,"name":{"51":{}},"parent":{}}],["wrapdocument",{"_index":3,"name":{"3":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/api/classes/accountlinkdoctype.html b/docs/api/classes/accountlinkdoctype.html index b088594acb..d4f00d3a00 100644 --- a/docs/api/classes/accountlinkdoctype.html +++ b/docs/api/classes/accountlinkdoctype.html @@ -126,7 +126,6 @@

Methods

  • removeAllListeners
  • removeListener
  • setMaxListeners
  • -
  • validate
  • create
  • makeGenesis
  • @@ -147,7 +146,7 @@

    constructor

    Parameters

    @@ -177,7 +176,7 @@

    content

    Returns any

    @@ -196,7 +195,7 @@

    context

    Returns Context

    @@ -205,7 +204,7 @@

    Returns Context

    Inherited from AccountLinkDoctype.context

      -
    • Defined in packages/ceramic-common/lib/doctype.d.ts:72
    • +
    • Defined in packages/ceramic-common/lib/doctype.d.ts:73

    Parameters

    @@ -229,7 +228,7 @@

    doctype

    Returns string

    @@ -247,7 +246,7 @@

    head

    Returns CID

    @@ -258,17 +257,17 @@

    Returns CID

    id

      -
    • get id(): string
    • +
    • get id(): DocID
    • -

      Returns string

      +

      Returns DocID

    @@ -283,7 +282,7 @@

    metadata

    Returns DocMetadata

    @@ -301,7 +300,7 @@

    owners

    Returns Array<string>

    @@ -320,7 +319,7 @@

    state

    Returns DocState

    @@ -329,7 +328,7 @@

    Returns DocState<

    Parameters

    @@ -401,7 +400,7 @@

    change

    @@ -881,24 +880,6 @@

    Returns this -
    - -

    validate

    -
      -
    • validate(): Promise<void>
    • -
    -
      -
    • - -

      Returns Promise<void>

      -
    • -
    -

    Static create

    @@ -909,7 +890,7 @@

    Static create

  • @@ -952,7 +933,7 @@

    Static makeGenesis

  • @@ -1065,9 +1046,6 @@

    Returns Promise setMaxListeners

  • -
  • - validate -
  • create
  • diff --git a/docs/api/classes/accountlinkdoctypehandler.html b/docs/api/classes/accountlinkdoctypehandler.html index d2c8283f17..0b72d78c13 100644 --- a/docs/api/classes/accountlinkdoctypehandler.html +++ b/docs/api/classes/accountlinkdoctypehandler.html @@ -111,7 +111,7 @@

    doctype

  • @@ -133,7 +133,7 @@

    name

  • @@ -158,7 +158,7 @@

    applyRecord

  • @@ -207,7 +207,7 @@

    create

  • diff --git a/docs/api/classes/anchorservice.html b/docs/api/classes/anchorservice.html index d54dfdff8f..df3af30e56 100644 --- a/docs/api/classes/anchorservice.html +++ b/docs/api/classes/anchorservice.html @@ -653,7 +653,7 @@

    Abstract requestAnchor
    @@ -714,7 +714,7 @@

    Abstract validateChain
    diff --git a/docs/api/classes/anchorservicefactory.html b/docs/api/classes/anchorservicefactory.html index 23c5962e9a..51dee0f936 100644 --- a/docs/api/classes/anchorservicefactory.html +++ b/docs/api/classes/anchorservicefactory.html @@ -110,7 +110,7 @@

    constructor

  • Parameters

    @@ -139,7 +139,7 @@

    get

  • diff --git a/docs/api/classes/ceramic.html b/docs/api/classes/ceramic.html index 6426a3bb14..b8e242e619 100644 --- a/docs/api/classes/ceramic.html +++ b/docs/api/classes/ceramic.html @@ -149,7 +149,7 @@

    constructor

  • Parameters

    @@ -180,7 +180,7 @@

    Readonly context

    context: Context
  • @@ -190,7 +190,7 @@

    dispatcher

    dispatcher: Dispatcher
    @@ -200,7 +200,7 @@

    Readonly pin

    pin: PinApi
    @@ -210,7 +210,7 @@

    pinStore

    pinStore: PinStore
    @@ -227,7 +227,7 @@

    did

  • @@ -249,7 +249,7 @@

    ipfs

  • @@ -268,13 +268,13 @@

    Methods

    _loadDoc

      -
    • _loadDoc(docId: string, opts?: DocOpts): Promise<Document>
    • +
    • _loadDoc(docId: DocID | string, opts?: DocOpts): Promise<Document>
    • @@ -285,7 +285,7 @@

      _loadDoc

      Parameters

      • -
        docId: string
        +
        docId: DocID | string

        Document ID

        @@ -311,7 +311,7 @@

        addDoctypeHandler

      • @@ -342,13 +342,13 @@

        Returns void

        applyRecord

          -
        • applyRecord<T>(docId: string, record: object, opts?: DocOpts): Promise<T>
        • +
        • applyRecord<T>(docId: DocID | string, record: object, opts?: DocOpts): Promise<T>
        • @@ -365,7 +365,7 @@

          T: Parameters

          • -
            docId: string
            +
            docId: DocID | string

            Document ID

            @@ -397,7 +397,7 @@

            close

          • @@ -419,7 +419,7 @@

            createDocument

          • @@ -468,7 +468,7 @@

            createDocumentFromGenesis

          • @@ -511,7 +511,7 @@

            findDoctypeHandler

          • @@ -548,7 +548,7 @@

            findHandler

          • @@ -579,13 +579,13 @@

            Returns T<

            getDocFromMap

            • @@ -596,9 +596,7 @@

              getDocFromMap

              Parameters

              • -
                genesisCid: any
                -
                -
                +
                docId: DocID

              Returns Document

              @@ -609,13 +607,13 @@

              Returns

              listVersions

                -
              • listVersions(docId: string): Promise<string[]>
              • +
              • listVersions(docId: DocID | string): Promise<string[]>
              • @@ -626,7 +624,7 @@

                listVersions

                Parameters

                • -
                  docId: string
                  +
                  docId: DocID | string

                  Document ID

                  @@ -646,7 +644,7 @@

                  loadDocument

                • @@ -673,13 +671,13 @@

                  Returns Promise

                  loadDocumentRecords

                    -
                  • loadDocumentRecords(docId: string): Promise<Array<Record<string, any>>>
                  • +
                  • loadDocumentRecords(docId: DocID | string): Promise<Array<Record<string, any>>>
                  • @@ -690,7 +688,7 @@

                    loadDocumentRecords

                    Parameters

                    @@ -123,7 +123,7 @@

                    Readonly message

                    message: string
                    @@ -133,7 +133,7 @@

                    Readonly status

                    status: string
                    diff --git a/docs/api/interfaces/ceramicapi.html b/docs/api/interfaces/ceramicapi.html index 5f98312bbc..9fc7fb9cc6 100644 --- a/docs/api/interfaces/ceramicapi.html +++ b/docs/api/interfaces/ceramicapi.html @@ -116,7 +116,7 @@

                    Optional did

                    did: DID
                    @@ -126,7 +126,7 @@

                    pin

                    pin: PinApi
                    @@ -143,7 +143,7 @@

                    addDoctypeHandler

                  • @@ -174,13 +174,13 @@

                    Returns void

                    applyRecord

                      -
                    • applyRecord<T>(docId: string, record: object, opts?: DocOpts): Promise<T>
                    • +
                    • applyRecord<T>(docId: DocID | string, record: object, opts?: DocOpts): Promise<T>
                    • @@ -197,7 +197,7 @@

                      T: Parameters

                    • diff --git a/docs/api/interfaces/docopts.html b/docs/api/interfaces/docopts.html index 853985d1f6..386f732f6e 100644 --- a/docs/api/interfaces/docopts.html +++ b/docs/api/interfaces/docopts.html @@ -101,7 +101,7 @@

                      Optional applyOnly

                      applyOnly: boolean
                      @@ -111,7 +111,7 @@

                      Optional skipWait

                      skipWait: boolean
                      diff --git a/docs/api/interfaces/docparams.html b/docs/api/interfaces/docparams.html index ab7df5321e..97c8f61235 100644 --- a/docs/api/interfaces/docparams.html +++ b/docs/api/interfaces/docparams.html @@ -109,7 +109,7 @@

                      Optional metadata

                      metadata: DocMetadata
                      diff --git a/docs/api/interfaces/docstate.html b/docs/api/interfaces/docstate.html index 6a43e408c0..e4c8944672 100644 --- a/docs/api/interfaces/docstate.html +++ b/docs/api/interfaces/docstate.html @@ -108,7 +108,7 @@

                      Optional anchorProof

                      anchorProof: AnchorProof
                      @@ -118,7 +118,7 @@

                      Optional anchorScheduled<
                      anchorScheduledFor: number
                      @@ -128,7 +128,7 @@

                      anchorStatus

                      anchorStatus: AnchorStatus
                      @@ -138,7 +138,7 @@

                      content

                      content: any
                      @@ -148,7 +148,7 @@

                      doctype

                      doctype: string
                      @@ -158,7 +158,7 @@

                      log

                      log: Array<CID>
                      @@ -168,7 +168,7 @@

                      metadata

                      metadata: DocMetadata
                      @@ -178,7 +178,7 @@

                      Optional next

                      next: DocNext
                      @@ -188,7 +188,7 @@

                      signature

                      signature: SignatureStatus
                      diff --git a/docs/api/interfaces/doctypeconstructor.html b/docs/api/interfaces/doctypeconstructor.html index a5a9dc7c97..18bda217ff 100644 --- a/docs/api/interfaces/doctypeconstructor.html +++ b/docs/api/interfaces/doctypeconstructor.html @@ -118,7 +118,7 @@

                      constructor

                    • @@ -162,7 +162,7 @@

                      makeGenesis

                    • diff --git a/docs/api/interfaces/doctypehandler.html b/docs/api/interfaces/doctypehandler.html index df08df888a..67f72aacf0 100644 --- a/docs/api/interfaces/doctypehandler.html +++ b/docs/api/interfaces/doctypehandler.html @@ -115,7 +115,7 @@

                      doctype

                      doctype: DoctypeConstructor<T>
                      @@ -130,7 +130,7 @@

                      name

                      name: string
                      @@ -152,7 +152,7 @@

                      applyRecord

                    • diff --git a/docs/api/interfaces/ethnetwork.html b/docs/api/interfaces/ethnetwork.html index 6704a1d0d5..06d87d4fc7 100644 --- a/docs/api/interfaces/ethnetwork.html +++ b/docs/api/interfaces/ethnetwork.html @@ -104,7 +104,7 @@

                      chain

                      chain: string
                      @@ -114,7 +114,7 @@

                      chainId

                      chainId: number
                      @@ -124,7 +124,7 @@

                      network

                      network: string
                      @@ -134,7 +134,7 @@

                      networkId

                      networkId: number
                      @@ -144,7 +144,7 @@

                      type

                      type: string
                      diff --git a/docs/api/interfaces/httplog.html b/docs/api/interfaces/httplog.html index 46e29a15eb..45ea84b48e 100644 --- a/docs/api/interfaces/httplog.html +++ b/docs/api/interfaces/httplog.html @@ -94,7 +94,7 @@

                      request

                      request: object
                      @@ -104,7 +104,7 @@

                      Optional response

                      response: object
                      diff --git a/docs/api/interfaces/logmessage.html b/docs/api/interfaces/logmessage.html index 80da3022fb..cf2cd5f62b 100644 --- a/docs/api/interfaces/logmessage.html +++ b/docs/api/interfaces/logmessage.html @@ -104,7 +104,7 @@

                      event

                      event: string
                      @@ -114,7 +114,7 @@

                      Optional from

                      from: string
                      @@ -124,7 +124,7 @@

                      Optional message

                      message: object
                      @@ -134,7 +134,7 @@

                      peer

                      peer: string
                      @@ -144,7 +144,7 @@

                      topic

                      topic: string
                      diff --git a/docs/api/interfaces/options.html b/docs/api/interfaces/options.html index ed97ec7683..e72b047761 100644 --- a/docs/api/interfaces/options.html +++ b/docs/api/interfaces/options.html @@ -103,7 +103,7 @@

                      Optional component

                      component: string
                      @@ -113,7 +113,7 @@

                      Optional format

                      format: string
                      @@ -123,7 +123,7 @@

                      Optional level

                      level: string
                      @@ -133,7 +133,7 @@

                      Optional stacktrace

                      stacktrace: { depth: 3; excess: 0; levels: ["trace", "warn", "error"] }
                      diff --git a/docs/api/interfaces/pinapi.html b/docs/api/interfaces/pinapi.html index c5ce97111d..5a3b8c8c0c 100644 --- a/docs/api/interfaces/pinapi.html +++ b/docs/api/interfaces/pinapi.html @@ -100,13 +100,13 @@

                      Methods

                      add

                        -
                      • add(docId: string): Promise<void>
                      • +
                      • add(docId: DocID): Promise<void>
                      • @@ -117,7 +117,7 @@

                        add

                        Parameters

                        • -
                          docId: string
                          +
                          docId: DocID

                          Document ID

                          @@ -131,13 +131,13 @@

                          Returns Promise

                          ls

                            -
                          • ls(docId?: string): Promise<AsyncIterable<string>>
                          • +
                          • ls(docId?: DocID): Promise<AsyncIterable<string>>
                          • @@ -148,7 +148,7 @@

                            ls

                            Parameters

                            • -
                              Optional docId: string
                              +
                              Optional docId: DocID

                              Document ID for filtering

                              @@ -162,13 +162,13 @@

                              Returns Promise

                              rm

                                -
                              • rm(docId: string): Promise<void>
                              • +
                              • rm(docId: DocID): Promise<void>
                              • @@ -179,7 +179,7 @@

                                rm

                                Parameters

                                • -
                                  docId: string
                                  +
                                  docId: DocID

                                  Document ID

                                  diff --git a/docs/api/interfaces/pinning.html b/docs/api/interfaces/pinning.html index e133ffb5bb..8dcbf288dd 100644 --- a/docs/api/interfaces/pinning.html +++ b/docs/api/interfaces/pinning.html @@ -108,7 +108,7 @@

                                  close

                                • Returns Promise<void>

                                  @@ -125,7 +125,7 @@

                                  open

                                • Returns Promise<void>

                                  @@ -142,7 +142,7 @@

                                  pin

                                • Parameters

                                  @@ -165,7 +165,7 @@

                                  unpin

                                • Parameters

                                  diff --git a/docs/api/interfaces/pinningstatic.html b/docs/api/interfaces/pinningstatic.html index 64b0a3e07d..0626a65c1d 100644 --- a/docs/api/interfaces/pinningstatic.html +++ b/docs/api/interfaces/pinningstatic.html @@ -103,7 +103,7 @@

                                  constructor

                                • Parameters

                                  @@ -128,7 +128,7 @@

                                  designator

                                  designator: string
                                  diff --git a/docs/api/interfaces/statestore.html b/docs/api/interfaces/statestore.html index 691d3d5901..ebab78e534 100644 --- a/docs/api/interfaces/statestore.html +++ b/docs/api/interfaces/statestore.html @@ -109,7 +109,7 @@

                                  close

                                • Returns Promise<void>

                                  @@ -120,19 +120,19 @@

                                  Returns Promise

                                  exists

                                    -
                                  • exists(docId: string): Promise<boolean>
                                  • +
                                  • exists(docId: DocID): Promise<boolean>
                                  • Parameters

                                    • -
                                      docId: string
                                      +
                                      docId: DocID

                                    Returns Promise<boolean>

                                    @@ -143,19 +143,19 @@

                                    Returns Promise

                                    list

                                      -
                                    • list(docId?: string): Promise<string[]>
                                    • +
                                    • list(docId?: DocID): Promise<string[]>
                                    • Parameters

                                      • -
                                        Optional docId: string
                                        +
                                        Optional docId: DocID

                                      Returns Promise<string[]>

                                      @@ -166,19 +166,19 @@

                                      Returns Promise

                                      load

                                        -
                                      • load(docId: string): Promise<DocState | null>
                                      • +
                                      • load(docId: DocID): Promise<DocState | null>
                                      • Parameters

                                        • -
                                          docId: string
                                          +
                                          docId: DocID

                                        Returns Promise<DocState | null>

                                        @@ -195,7 +195,7 @@

                                        open

                                      • Returns Promise<void>

                                        @@ -206,19 +206,19 @@

                                        Returns Promise

                                        remove

                                          -
                                        • remove(docId: string): Promise<void>
                                        • +
                                        • remove(docId: DocID): Promise<void>
                                        • Parameters

                                          • -
                                            docId: string
                                            +
                                            docId: DocID

                                          Returns Promise<void>

                                          @@ -235,7 +235,7 @@

                                          save

                                        • Parameters

                                          diff --git a/docs/api/interfaces/tileparams.html b/docs/api/interfaces/tileparams.html index 862042a302..0795b3ec9d 100644 --- a/docs/api/interfaces/tileparams.html +++ b/docs/api/interfaces/tileparams.html @@ -115,7 +115,7 @@

                                          Optional content

                                          content: object
                                          @@ -126,7 +126,7 @@

                                          Optional metadata

                                          From 799e5ec1cd40dfb85845d75a1cf30e8b9ae03a7b Mon Sep 17 00:00:00 2001 From: Spencer T Brody Date: Fri, 23 Oct 2020 16:33:13 -0400 Subject: [PATCH 3/4] Update docs part 2 --- docs/api/assets/js/search.json | 2 +- docs/api/classes/accountlinkdoctype.html | 50 ++++---- .../classes/accountlinkdoctypehandler.html | 8 +- docs/api/classes/anchorservice.html | 4 +- docs/api/classes/anchorservicefactory.html | 4 +- docs/api/classes/ceramic.html | 42 +++---- docs/api/classes/ceramicclient.html | 32 ++--- docs/api/classes/ceramiccliutils.html | 30 ++--- docs/api/classes/ceramicdaemon.html | 32 ++--- docs/api/classes/dispatcher.html | 22 ++-- docs/api/classes/doctype.html | 24 ++-- docs/api/classes/doctypeutils.html | 18 +-- docs/api/classes/document.html | 95 ++++++--------- docs/api/classes/emptytokenerror.html | 2 +- docs/api/classes/ethereumanchorservice.html | 6 +- docs/api/classes/ipfspinning.html | 16 +-- docs/api/classes/levelstatestore.html | 18 +-- docs/api/classes/loggerprovider.html | 6 +- docs/api/classes/logtofiles.html | 2 +- docs/api/classes/mockanchorservice.html | 6 +- docs/api/classes/pinningaggregation.html | 12 +- docs/api/classes/pinstore.html | 22 ++-- docs/api/classes/pinstorefactory.html | 10 +- docs/api/classes/powergatepinning.html | 20 ++-- docs/api/classes/tiledoctype.html | 50 ++++---- docs/api/classes/tiledoctypehandler.html | 10 +- docs/api/classes/unknownpinningservice.html | 2 +- docs/api/classes/utils.html | 10 +- docs/api/enums/anchorstatus.html | 10 +- docs/api/enums/jobstatus.html | 12 +- docs/api/enums/msgtype.html | 6 +- docs/api/enums/signaturestatus.html | 6 +- docs/api/globals.html | 112 +++++++++--------- docs/api/interfaces/accountlinkparams.html | 2 +- docs/api/interfaces/anchorproof.html | 10 +- docs/api/interfaces/anchorrecord.html | 6 +- .../api/interfaces/anchorserviceresponse.html | 8 +- docs/api/interfaces/ceramicapi.html | 24 ++-- docs/api/interfaces/ceramicconfig.html | 24 ++-- docs/api/interfaces/ciddoc.html | 4 +- docs/api/interfaces/cliconfig.html | 4 +- docs/api/interfaces/context.html | 12 +- docs/api/interfaces/createopts.html | 24 ++-- docs/api/interfaces/docmetadata.html | 8 +- docs/api/interfaces/docnext.html | 6 +- docs/api/interfaces/docopts.html | 4 +- docs/api/interfaces/docparams.html | 2 +- docs/api/interfaces/docstate.html | 18 +-- docs/api/interfaces/doctypeconstructor.html | 4 +- docs/api/interfaces/doctypehandler.html | 6 +- docs/api/interfaces/ethnetwork.html | 10 +- docs/api/interfaces/httplog.html | 4 +- docs/api/interfaces/logmessage.html | 10 +- docs/api/interfaces/options.html | 8 +- docs/api/interfaces/pinapi.html | 6 +- docs/api/interfaces/pinning.html | 8 +- docs/api/interfaces/pinningstatic.html | 4 +- docs/api/interfaces/statestore.html | 14 +-- docs/api/interfaces/tileparams.html | 2 +- 59 files changed, 456 insertions(+), 477 deletions(-) diff --git a/docs/api/assets/js/search.json b/docs/api/assets/js/search.json index 0b9c208982..78454ffb28 100644 --- a/docs/api/assets/js/search.json +++ b/docs/api/assets/js/search.json @@ -1 +1 @@ -{"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Ceramic","url":"classes/ceramic.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"loadDocument","url":"classes/ceramic.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":2,"kind":256,"name":"ResolverRegistry","url":"interfaces/resolverregistry.html","classes":"tsd-kind-interface"},{"id":3,"kind":64,"name":"wrapDocument","url":"globals.html#wrapdocument","classes":"tsd-kind-function"},{"id":4,"kind":128,"name":"LogToFiles","url":"classes/logtofiles.html","classes":"tsd-kind-class"},{"id":5,"kind":2048,"name":"main","url":"classes/logtofiles.html#main","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LogToFiles"},{"id":6,"kind":256,"name":"CreateOpts","url":"interfaces/createopts.html","classes":"tsd-kind-interface"},{"id":7,"kind":1024,"name":"ipfsHost","url":"interfaces/createopts.html#ipfshost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":8,"kind":1024,"name":"ipfs","url":"interfaces/createopts.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":9,"kind":1024,"name":"port","url":"interfaces/createopts.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":10,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/createopts.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":11,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/createopts.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":12,"kind":1024,"name":"stateStorePath","url":"interfaces/createopts.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":13,"kind":1024,"name":"validateDocs","url":"interfaces/createopts.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":14,"kind":1024,"name":"pinning","url":"interfaces/createopts.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":15,"kind":1024,"name":"gateway","url":"interfaces/createopts.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":16,"kind":1024,"name":"debug","url":"interfaces/createopts.html#debug","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":17,"kind":1024,"name":"logToFiles","url":"interfaces/createopts.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":18,"kind":1024,"name":"logPath","url":"interfaces/createopts.html#logpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":19,"kind":256,"name":"HttpLog","url":"interfaces/httplog.html","classes":"tsd-kind-interface"},{"id":20,"kind":1024,"name":"request","url":"interfaces/httplog.html#request","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":21,"kind":1024,"name":"response","url":"interfaces/httplog.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":22,"kind":128,"name":"CeramicDaemon","url":"classes/ceramicdaemon.html","classes":"tsd-kind-class"},{"id":23,"kind":512,"name":"constructor","url":"classes/ceramicdaemon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":24,"kind":1024,"name":"ceramic","url":"classes/ceramicdaemon.html#ceramic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":25,"kind":2048,"name":"create","url":"classes/ceramicdaemon.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicDaemon"},{"id":26,"kind":2048,"name":"registerAPIPaths","url":"classes/ceramicdaemon.html#registerapipaths","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":27,"kind":2048,"name":"_buildHttpLog","url":"classes/ceramicdaemon.html#_buildhttplog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":28,"kind":2048,"name":"createDocFromGenesis","url":"classes/ceramicdaemon.html#createdocfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":29,"kind":2048,"name":"show","url":"classes/ceramicdaemon.html#show","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":30,"kind":2048,"name":"state","url":"classes/ceramicdaemon.html#state","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":31,"kind":2048,"name":"versions","url":"classes/ceramicdaemon.html#versions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":32,"kind":2048,"name":"records","url":"classes/ceramicdaemon.html#records","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":33,"kind":2048,"name":"applyRecord","url":"classes/ceramicdaemon.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":34,"kind":2048,"name":"pinDocument","url":"classes/ceramicdaemon.html#pindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":35,"kind":2048,"name":"unpinDocument","url":"classes/ceramicdaemon.html#unpindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":36,"kind":2048,"name":"listPinned","url":"classes/ceramicdaemon.html#listpinned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":37,"kind":2048,"name":"_notSupported","url":"classes/ceramicdaemon.html#_notsupported","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":38,"kind":2048,"name":"close","url":"classes/ceramicdaemon.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":39,"kind":32,"name":"DEFAULT_PORT","url":"globals.html#default_port","classes":"tsd-kind-variable"},{"id":40,"kind":64,"name":"toApiPath","url":"globals.html#toapipath","classes":"tsd-kind-function"},{"id":41,"kind":32,"name":"DEFAULT_ANCHOR_SERVICE_URL","url":"globals.html#default_anchor_service_url","classes":"tsd-kind-variable"},{"id":42,"kind":256,"name":"CliConfig","url":"interfaces/cliconfig.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"seed","url":"interfaces/cliconfig.html#seed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":44,"kind":1024,"name":"ceramicHost","url":"interfaces/cliconfig.html#ceramichost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":45,"kind":128,"name":"CeramicCliUtils","url":"classes/ceramiccliutils.html","classes":"tsd-kind-class"},{"id":46,"kind":2048,"name":"createDaemon","url":"classes/ceramiccliutils.html#createdaemon","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":47,"kind":2048,"name":"createDoc","url":"classes/ceramiccliutils.html#createdoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":48,"kind":2048,"name":"change","url":"classes/ceramiccliutils.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":49,"kind":2048,"name":"show","url":"classes/ceramiccliutils.html#show","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":50,"kind":2048,"name":"state","url":"classes/ceramiccliutils.html#state","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":51,"kind":2048,"name":"watch","url":"classes/ceramiccliutils.html#watch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":52,"kind":2048,"name":"versions","url":"classes/ceramiccliutils.html#versions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":53,"kind":2048,"name":"schemaCreateDoc","url":"classes/ceramiccliutils.html#schemacreatedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":54,"kind":2048,"name":"schemaChangeDoc","url":"classes/ceramiccliutils.html#schemachangedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":55,"kind":2048,"name":"pinAdd","url":"classes/ceramiccliutils.html#pinadd","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":56,"kind":2048,"name":"pinRm","url":"classes/ceramiccliutils.html#pinrm","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":57,"kind":2048,"name":"pinLs","url":"classes/ceramiccliutils.html#pinls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":58,"kind":2048,"name":"showConfig","url":"classes/ceramiccliutils.html#showconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":59,"kind":2048,"name":"setConfig","url":"classes/ceramiccliutils.html#setconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":60,"kind":2048,"name":"unsetConfig","url":"classes/ceramiccliutils.html#unsetconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":61,"kind":32,"name":"fs","url":"globals.html#fs","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"DEFAULT_CLI_CONFIG_FILE","url":"globals.html#default_cli_config_file","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"DEFAULT_PINNING_STORE_PATH","url":"globals.html#default_pinning_store_path","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"DEFAULT_CLI_CONFIG_PATH","url":"globals.html#default_cli_config_path","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"schemas","url":"globals.html#schemas","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"pin","url":"globals.html#pin","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"config","url":"globals.html#config","classes":"tsd-kind-variable"},{"id":68,"kind":256,"name":"PinApi","url":"interfaces/pinapi.html","classes":"tsd-kind-interface"},{"id":69,"kind":2048,"name":"add","url":"interfaces/pinapi.html#add","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":70,"kind":2048,"name":"rm","url":"interfaces/pinapi.html#rm","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":71,"kind":2048,"name":"ls","url":"interfaces/pinapi.html#ls","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":72,"kind":256,"name":"CeramicApi","url":"interfaces/ceramicapi.html","classes":"tsd-kind-interface"},{"id":73,"kind":1024,"name":"pin","url":"interfaces/ceramicapi.html#pin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":74,"kind":1024,"name":"did","url":"interfaces/ceramicapi.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":75,"kind":2048,"name":"addDoctypeHandler","url":"interfaces/ceramicapi.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":76,"kind":2048,"name":"findDoctypeHandler","url":"interfaces/ceramicapi.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":77,"kind":2048,"name":"createDocument","url":"interfaces/ceramicapi.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":78,"kind":2048,"name":"createDocumentFromGenesis","url":"interfaces/ceramicapi.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":79,"kind":2048,"name":"loadDocument","url":"interfaces/ceramicapi.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":80,"kind":2048,"name":"loadDocumentRecords","url":"interfaces/ceramicapi.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":81,"kind":2048,"name":"listVersions","url":"interfaces/ceramicapi.html#listversions","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":82,"kind":2048,"name":"applyRecord","url":"interfaces/ceramicapi.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":83,"kind":2048,"name":"setDIDProvider","url":"interfaces/ceramicapi.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":84,"kind":2048,"name":"close","url":"interfaces/ceramicapi.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":85,"kind":256,"name":"Context","url":"interfaces/context.html","classes":"tsd-kind-interface"},{"id":86,"kind":1024,"name":"did","url":"interfaces/context.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":87,"kind":1024,"name":"ipfs","url":"interfaces/context.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":88,"kind":1024,"name":"resolver","url":"interfaces/context.html#resolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":89,"kind":1024,"name":"provider","url":"interfaces/context.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":90,"kind":1024,"name":"anchorService","url":"interfaces/context.html#anchorservice","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":91,"kind":1024,"name":"api","url":"interfaces/context.html#api","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":92,"kind":4,"name":"SignatureStatus","url":"enums/signaturestatus.html","classes":"tsd-kind-enum"},{"id":93,"kind":16,"name":"GENESIS","url":"enums/signaturestatus.html#genesis","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":94,"kind":16,"name":"PARTIAL","url":"enums/signaturestatus.html#partial","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":95,"kind":16,"name":"SIGNED","url":"enums/signaturestatus.html#signed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":96,"kind":4,"name":"AnchorStatus","url":"enums/anchorstatus.html","classes":"tsd-kind-enum"},{"id":97,"kind":16,"name":"NOT_REQUESTED","url":"enums/anchorstatus.html#not_requested","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":98,"kind":16,"name":"PENDING","url":"enums/anchorstatus.html#pending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":99,"kind":16,"name":"PROCESSING","url":"enums/anchorstatus.html#processing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":100,"kind":16,"name":"ANCHORED","url":"enums/anchorstatus.html#anchored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":101,"kind":16,"name":"FAILED","url":"enums/anchorstatus.html#failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":102,"kind":256,"name":"AnchorRecord","url":"interfaces/anchorrecord.html","classes":"tsd-kind-interface"},{"id":103,"kind":1024,"name":"prev","url":"interfaces/anchorrecord.html#prev","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":104,"kind":1024,"name":"proof","url":"interfaces/anchorrecord.html#proof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":105,"kind":1024,"name":"path","url":"interfaces/anchorrecord.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":106,"kind":256,"name":"AnchorProof","url":"interfaces/anchorproof.html","classes":"tsd-kind-interface"},{"id":107,"kind":1024,"name":"chainId","url":"interfaces/anchorproof.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":108,"kind":1024,"name":"blockNumber","url":"interfaces/anchorproof.html#blocknumber","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":109,"kind":1024,"name":"blockTimestamp","url":"interfaces/anchorproof.html#blocktimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":110,"kind":1024,"name":"txHash","url":"interfaces/anchorproof.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":111,"kind":1024,"name":"root","url":"interfaces/anchorproof.html#root","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":112,"kind":256,"name":"DocMetadata","url":"interfaces/docmetadata.html","classes":"tsd-kind-interface"},{"id":113,"kind":1024,"name":"controllers","url":"interfaces/docmetadata.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":114,"kind":1024,"name":"schema","url":"interfaces/docmetadata.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":115,"kind":1024,"name":"tags","url":"interfaces/docmetadata.html#tags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":116,"kind":1024,"name":"isUnique","url":"interfaces/docmetadata.html#isunique","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":117,"kind":256,"name":"DocParams","url":"interfaces/docparams.html","classes":"tsd-kind-interface"},{"id":118,"kind":1024,"name":"metadata","url":"interfaces/docparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocParams"},{"id":119,"kind":256,"name":"DocNext","url":"interfaces/docnext.html","classes":"tsd-kind-interface"},{"id":120,"kind":1024,"name":"content","url":"interfaces/docnext.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":121,"kind":1024,"name":"controllers","url":"interfaces/docnext.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":122,"kind":1024,"name":"metadata","url":"interfaces/docnext.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":123,"kind":256,"name":"DocState","url":"interfaces/docstate.html","classes":"tsd-kind-interface"},{"id":124,"kind":1024,"name":"doctype","url":"interfaces/docstate.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":125,"kind":1024,"name":"content","url":"interfaces/docstate.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":126,"kind":1024,"name":"next","url":"interfaces/docstate.html#next","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":127,"kind":1024,"name":"metadata","url":"interfaces/docstate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":128,"kind":1024,"name":"signature","url":"interfaces/docstate.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":129,"kind":1024,"name":"anchorStatus","url":"interfaces/docstate.html#anchorstatus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":130,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/docstate.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":131,"kind":1024,"name":"anchorProof","url":"interfaces/docstate.html#anchorproof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":132,"kind":1024,"name":"log","url":"interfaces/docstate.html#log","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":133,"kind":256,"name":"DocOpts","url":"interfaces/docopts.html","classes":"tsd-kind-interface"},{"id":134,"kind":1024,"name":"applyOnly","url":"interfaces/docopts.html#applyonly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":135,"kind":1024,"name":"skipWait","url":"interfaces/docopts.html#skipwait","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":136,"kind":128,"name":"Doctype","url":"classes/doctype.html","classes":"tsd-kind-class"},{"id":137,"kind":512,"name":"constructor","url":"classes/doctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Doctype"},{"id":138,"kind":262144,"name":"id","url":"classes/doctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":139,"kind":262144,"name":"doctype","url":"classes/doctype.html#doctype-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":140,"kind":262144,"name":"content","url":"classes/doctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":141,"kind":262144,"name":"metadata","url":"classes/doctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":142,"kind":262144,"name":"controllers","url":"classes/doctype.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":143,"kind":262144,"name":"head","url":"classes/doctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":144,"kind":262144,"name":"state","url":"classes/doctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":145,"kind":262144,"name":"context","url":"classes/doctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":146,"kind":2048,"name":"change","url":"classes/doctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Doctype"},{"id":147,"kind":2048,"name":"addListener","url":"classes/doctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":148,"kind":2048,"name":"on","url":"classes/doctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":149,"kind":2048,"name":"once","url":"classes/doctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":150,"kind":2048,"name":"removeListener","url":"classes/doctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":151,"kind":2048,"name":"off","url":"classes/doctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":152,"kind":2048,"name":"removeAllListeners","url":"classes/doctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":153,"kind":2048,"name":"setMaxListeners","url":"classes/doctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":154,"kind":2048,"name":"getMaxListeners","url":"classes/doctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":155,"kind":2048,"name":"listeners","url":"classes/doctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":156,"kind":2048,"name":"rawListeners","url":"classes/doctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":157,"kind":2048,"name":"emit","url":"classes/doctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":158,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":159,"kind":2048,"name":"prependListener","url":"classes/doctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":160,"kind":2048,"name":"prependOnceListener","url":"classes/doctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":161,"kind":2048,"name":"eventNames","url":"classes/doctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":162,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":163,"kind":1024,"name":"defaultMaxListeners","url":"classes/doctype.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":164,"kind":256,"name":"DoctypeConstructor","url":"interfaces/doctypeconstructor.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":165,"kind":512,"name":"constructor","url":"interfaces/doctypeconstructor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":166,"kind":2048,"name":"makeGenesis","url":"interfaces/doctypeconstructor.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":167,"kind":256,"name":"DoctypeHandler","url":"interfaces/doctypehandler.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":168,"kind":1024,"name":"name","url":"interfaces/doctypehandler.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":169,"kind":1024,"name":"doctype","url":"interfaces/doctypehandler.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":170,"kind":2048,"name":"applyRecord","url":"interfaces/doctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":171,"kind":64,"name":"DoctypeStatic","url":"globals.html#doctypestatic","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":172,"kind":128,"name":"AnchorService","url":"classes/anchorservice.html","classes":"tsd-kind-class"},{"id":173,"kind":2048,"name":"requestAnchor","url":"classes/anchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":174,"kind":2048,"name":"validateChainInclusion","url":"classes/anchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":175,"kind":2048,"name":"addListener","url":"classes/anchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":176,"kind":2048,"name":"on","url":"classes/anchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":177,"kind":2048,"name":"once","url":"classes/anchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":178,"kind":2048,"name":"removeListener","url":"classes/anchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":179,"kind":2048,"name":"off","url":"classes/anchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":180,"kind":2048,"name":"removeAllListeners","url":"classes/anchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":181,"kind":2048,"name":"setMaxListeners","url":"classes/anchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":182,"kind":2048,"name":"getMaxListeners","url":"classes/anchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":183,"kind":2048,"name":"listeners","url":"classes/anchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":184,"kind":2048,"name":"rawListeners","url":"classes/anchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":185,"kind":2048,"name":"emit","url":"classes/anchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":186,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":187,"kind":2048,"name":"prependListener","url":"classes/anchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":188,"kind":2048,"name":"prependOnceListener","url":"classes/anchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":189,"kind":2048,"name":"eventNames","url":"classes/anchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":190,"kind":512,"name":"constructor","url":"classes/anchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":191,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":192,"kind":1024,"name":"defaultMaxListeners","url":"classes/anchorservice.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":193,"kind":128,"name":"DoctypeUtils","url":"classes/doctypeutils.html","classes":"tsd-kind-class"},{"id":194,"kind":2048,"name":"serializeRecord","url":"classes/doctypeutils.html#serializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":195,"kind":2048,"name":"deserializeRecord","url":"classes/doctypeutils.html#deserializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":196,"kind":2048,"name":"serializeState","url":"classes/doctypeutils.html#serializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":197,"kind":2048,"name":"deserializeState","url":"classes/doctypeutils.html#deserializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":198,"kind":2048,"name":"makeReadOnly","url":"classes/doctypeutils.html#makereadonly","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"DoctypeUtils"},{"id":199,"kind":2048,"name":"convertRecordToDTO","url":"classes/doctypeutils.html#convertrecordtodto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":200,"kind":2048,"name":"isSignedRecordDTO","url":"classes/doctypeutils.html#issignedrecorddto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":201,"kind":2048,"name":"isSignedRecord","url":"classes/doctypeutils.html#issignedrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":202,"kind":2048,"name":"isAnchorRecord","url":"classes/doctypeutils.html#isanchorrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":203,"kind":256,"name":"Options","url":"interfaces/options.html","classes":"tsd-kind-interface"},{"id":204,"kind":1024,"name":"level","url":"interfaces/options.html#level","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":205,"kind":1024,"name":"format","url":"interfaces/options.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":206,"kind":1024,"name":"stacktrace","url":"interfaces/options.html#stacktrace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":207,"kind":65536,"name":"__type","url":"interfaces/options.html#stacktrace.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Options.stacktrace"},{"id":208,"kind":32,"name":"levels","url":"interfaces/options.html#stacktrace.__type.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":209,"kind":32,"name":"depth","url":"interfaces/options.html#stacktrace.__type.depth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":210,"kind":32,"name":"excess","url":"interfaces/options.html#stacktrace.__type.excess","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":211,"kind":1024,"name":"component","url":"interfaces/options.html#component","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":212,"kind":256,"name":"PluginOptions","url":"interfaces/pluginoptions.html","classes":"tsd-kind-interface"},{"id":213,"kind":128,"name":"LoggerProvider","url":"classes/loggerprovider.html","classes":"tsd-kind-class"},{"id":214,"kind":2048,"name":"init","url":"classes/loggerprovider.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":215,"kind":2048,"name":"addPlugin","url":"classes/loggerprovider.html#addplugin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":216,"kind":2048,"name":"_toText","url":"classes/loggerprovider.html#_totext","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":217,"kind":2097152,"name":"defaultOpts","url":"globals.html#defaultopts","classes":"tsd-kind-object-literal"},{"id":218,"kind":32,"name":"level","url":"globals.html#defaultopts.level","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":219,"kind":32,"name":"format","url":"globals.html#defaultopts.format","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":220,"kind":2097152,"name":"stacktrace","url":"globals.html#defaultopts.stacktrace","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":221,"kind":32,"name":"levels","url":"globals.html#defaultopts.stacktrace.levels","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":222,"kind":32,"name":"depth","url":"globals.html#defaultopts.stacktrace.depth","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":223,"kind":32,"name":"excess","url":"globals.html#defaultopts.stacktrace.excess","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":224,"kind":4194304,"name":"Plugin","url":"globals.html#plugin","classes":"tsd-kind-type-alias"},{"id":225,"kind":65536,"name":"__type","url":"globals.html#plugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Plugin"},{"id":226,"kind":256,"name":"AnchorServiceResponse","url":"interfaces/anchorserviceresponse.html","classes":"tsd-kind-interface"},{"id":227,"kind":1024,"name":"status","url":"interfaces/anchorserviceresponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":228,"kind":1024,"name":"message","url":"interfaces/anchorserviceresponse.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":229,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/anchorserviceresponse.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":230,"kind":1024,"name":"anchorRecord","url":"interfaces/anchorserviceresponse.html#anchorrecord","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":231,"kind":128,"name":"Utils","url":"classes/utils.html","classes":"tsd-kind-class"},{"id":232,"kind":1024,"name":"validator","url":"classes/utils.html#validator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":233,"kind":2048,"name":"awaitCondition","url":"classes/utils.html#awaitcondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":234,"kind":2048,"name":"isSchemaValid","url":"classes/utils.html#isschemavalid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":235,"kind":2048,"name":"validate","url":"classes/utils.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":236,"kind":2048,"name":"validateDoctype","url":"classes/utils.html#validatedoctype","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":237,"kind":256,"name":"StateStore","url":"interfaces/statestore.html","classes":"tsd-kind-interface"},{"id":238,"kind":2048,"name":"open","url":"interfaces/statestore.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":239,"kind":2048,"name":"close","url":"interfaces/statestore.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":240,"kind":2048,"name":"save","url":"interfaces/statestore.html#save","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":241,"kind":2048,"name":"load","url":"interfaces/statestore.html#load","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":242,"kind":2048,"name":"exists","url":"interfaces/statestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":243,"kind":2048,"name":"list","url":"interfaces/statestore.html#list","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":244,"kind":2048,"name":"remove","url":"interfaces/statestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":245,"kind":256,"name":"Pinning","url":"interfaces/pinning.html","classes":"tsd-kind-interface"},{"id":246,"kind":2048,"name":"open","url":"interfaces/pinning.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":247,"kind":2048,"name":"close","url":"interfaces/pinning.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":248,"kind":2048,"name":"pin","url":"interfaces/pinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":249,"kind":2048,"name":"unpin","url":"interfaces/pinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":250,"kind":256,"name":"PinningStatic","url":"interfaces/pinningstatic.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"designator","url":"interfaces/pinningstatic.html#designator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PinningStatic"},{"id":252,"kind":512,"name":"constructor","url":"interfaces/pinningstatic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"PinningStatic"},{"id":253,"kind":128,"name":"PinStore","url":"classes/pinstore.html","classes":"tsd-kind-class"},{"id":254,"kind":512,"name":"constructor","url":"classes/pinstore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStore"},{"id":255,"kind":1024,"name":"stateStore","url":"classes/pinstore.html#statestore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":256,"kind":1024,"name":"pinning","url":"classes/pinstore.html#pinning","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":257,"kind":1024,"name":"retrieve","url":"classes/pinstore.html#retrieve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":258,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":259,"kind":1024,"name":"resolve","url":"classes/pinstore.html#resolve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":260,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":261,"kind":2048,"name":"open","url":"classes/pinstore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":262,"kind":2048,"name":"close","url":"classes/pinstore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":263,"kind":2048,"name":"add","url":"classes/pinstore.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":264,"kind":2048,"name":"rm","url":"classes/pinstore.html#rm","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":265,"kind":2048,"name":"ls","url":"classes/pinstore.html#ls","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":266,"kind":2048,"name":"pointsOfInterest","url":"classes/pinstore.html#pointsofinterest","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PinStore"},{"id":267,"kind":128,"name":"Document","url":"classes/document.html","classes":"tsd-kind-class"},{"id":268,"kind":1024,"name":"_context","url":"classes/document.html#_context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":269,"kind":1024,"name":"id","url":"classes/document.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":270,"kind":1024,"name":"version","url":"classes/document.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":271,"kind":512,"name":"constructor","url":"classes/document.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":272,"kind":1024,"name":"dispatcher","url":"classes/document.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":273,"kind":1024,"name":"pinStore","url":"classes/document.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":274,"kind":2048,"name":"create","url":"classes/document.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":275,"kind":2048,"name":"load","url":"classes/document.html#load","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":276,"kind":2048,"name":"validate","url":"classes/document.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":277,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":278,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Document"},{"id":279,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":280,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":281,"kind":2048,"name":"anchor","url":"classes/document.html#anchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":282,"kind":2048,"name":"loadSchema","url":"classes/document.html#loadschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":283,"kind":2048,"name":"loadSchemaById","url":"classes/document.html#loadschemabyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":284,"kind":262144,"name":"content","url":"classes/document.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":285,"kind":262144,"name":"state","url":"classes/document.html#state","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":286,"kind":262144,"name":"doctype","url":"classes/document.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":287,"kind":262144,"name":"head","url":"classes/document.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":288,"kind":262144,"name":"controllers","url":"classes/document.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Document"},{"id":289,"kind":262144,"name":"metadata","url":"classes/document.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":290,"kind":2048,"name":"wait","url":"classes/document.html#wait","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":291,"kind":2048,"name":"close","url":"classes/document.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":292,"kind":2048,"name":"toString","url":"classes/document.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":293,"kind":2048,"name":"addListener","url":"classes/document.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":294,"kind":2048,"name":"on","url":"classes/document.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":295,"kind":2048,"name":"once","url":"classes/document.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":296,"kind":2048,"name":"removeListener","url":"classes/document.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":297,"kind":2048,"name":"off","url":"classes/document.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":298,"kind":2048,"name":"removeAllListeners","url":"classes/document.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":299,"kind":2048,"name":"setMaxListeners","url":"classes/document.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":300,"kind":2048,"name":"getMaxListeners","url":"classes/document.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":301,"kind":2048,"name":"listeners","url":"classes/document.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":302,"kind":2048,"name":"rawListeners","url":"classes/document.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":303,"kind":2048,"name":"emit","url":"classes/document.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":304,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":305,"kind":2048,"name":"prependListener","url":"classes/document.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":306,"kind":2048,"name":"prependOnceListener","url":"classes/document.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":307,"kind":2048,"name":"eventNames","url":"classes/document.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":308,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":309,"kind":1024,"name":"defaultMaxListeners","url":"classes/document.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":310,"kind":4,"name":"MsgType","url":"enums/msgtype.html","classes":"tsd-kind-enum"},{"id":311,"kind":16,"name":"UPDATE","url":"enums/msgtype.html#update","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":312,"kind":16,"name":"REQUEST","url":"enums/msgtype.html#request","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":313,"kind":16,"name":"RESPONSE","url":"enums/msgtype.html#response","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":314,"kind":256,"name":"LogMessage","url":"interfaces/logmessage.html","classes":"tsd-kind-interface"},{"id":315,"kind":1024,"name":"peer","url":"interfaces/logmessage.html#peer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":316,"kind":1024,"name":"event","url":"interfaces/logmessage.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":317,"kind":1024,"name":"topic","url":"interfaces/logmessage.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":318,"kind":1024,"name":"from","url":"interfaces/logmessage.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":319,"kind":1024,"name":"message","url":"interfaces/logmessage.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":320,"kind":128,"name":"Dispatcher","url":"classes/dispatcher.html","classes":"tsd-kind-class"},{"id":321,"kind":512,"name":"constructor","url":"classes/dispatcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Dispatcher"},{"id":322,"kind":1024,"name":"_ipfs","url":"classes/dispatcher.html#_ipfs","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":323,"kind":1024,"name":"topic","url":"classes/dispatcher.html#topic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":324,"kind":2048,"name":"init","url":"classes/dispatcher.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":325,"kind":2048,"name":"register","url":"classes/dispatcher.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":326,"kind":2048,"name":"unregister","url":"classes/dispatcher.html#unregister","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":327,"kind":2048,"name":"storeRecord","url":"classes/dispatcher.html#storerecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":328,"kind":2048,"name":"retrieveRecord","url":"classes/dispatcher.html#retrieverecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":329,"kind":2048,"name":"publishHead","url":"classes/dispatcher.html#publishhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":330,"kind":2048,"name":"handleMessage","url":"classes/dispatcher.html#handlemessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":331,"kind":2048,"name":"close","url":"classes/dispatcher.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":332,"kind":2048,"name":"addListener","url":"classes/dispatcher.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":333,"kind":2048,"name":"on","url":"classes/dispatcher.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":334,"kind":2048,"name":"once","url":"classes/dispatcher.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":335,"kind":2048,"name":"removeListener","url":"classes/dispatcher.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":336,"kind":2048,"name":"off","url":"classes/dispatcher.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":337,"kind":2048,"name":"removeAllListeners","url":"classes/dispatcher.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":338,"kind":2048,"name":"setMaxListeners","url":"classes/dispatcher.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":339,"kind":2048,"name":"getMaxListeners","url":"classes/dispatcher.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":340,"kind":2048,"name":"listeners","url":"classes/dispatcher.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":341,"kind":2048,"name":"rawListeners","url":"classes/dispatcher.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":342,"kind":2048,"name":"emit","url":"classes/dispatcher.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":343,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":344,"kind":2048,"name":"prependListener","url":"classes/dispatcher.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":345,"kind":2048,"name":"prependOnceListener","url":"classes/dispatcher.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":346,"kind":2048,"name":"eventNames","url":"classes/dispatcher.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":347,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":348,"kind":1024,"name":"defaultMaxListeners","url":"classes/dispatcher.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":349,"kind":32,"name":"TOPIC","url":"globals.html#topic","classes":"tsd-kind-variable"},{"id":350,"kind":128,"name":"MockAnchorService","url":"classes/mockanchorservice.html","classes":"tsd-kind-class"},{"id":351,"kind":512,"name":"constructor","url":"classes/mockanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"MockAnchorService"},{"id":352,"kind":2048,"name":"requestAnchor","url":"classes/mockanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":353,"kind":2048,"name":"validateChainInclusion","url":"classes/mockanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":354,"kind":2048,"name":"addListener","url":"classes/mockanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":355,"kind":2048,"name":"on","url":"classes/mockanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":356,"kind":2048,"name":"once","url":"classes/mockanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":357,"kind":2048,"name":"removeListener","url":"classes/mockanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":358,"kind":2048,"name":"off","url":"classes/mockanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":359,"kind":2048,"name":"removeAllListeners","url":"classes/mockanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":360,"kind":2048,"name":"setMaxListeners","url":"classes/mockanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":361,"kind":2048,"name":"getMaxListeners","url":"classes/mockanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":362,"kind":2048,"name":"listeners","url":"classes/mockanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":363,"kind":2048,"name":"rawListeners","url":"classes/mockanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":364,"kind":2048,"name":"emit","url":"classes/mockanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":365,"kind":2048,"name":"listenerCount","url":"classes/mockanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":366,"kind":2048,"name":"prependListener","url":"classes/mockanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":367,"kind":2048,"name":"prependOnceListener","url":"classes/mockanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":368,"kind":2048,"name":"eventNames","url":"classes/mockanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":369,"kind":128,"name":"LevelStateStore","url":"classes/levelstatestore.html","classes":"tsd-kind-class"},{"id":370,"kind":512,"name":"constructor","url":"classes/levelstatestore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LevelStateStore"},{"id":371,"kind":262144,"name":"store","url":"classes/levelstatestore.html#store","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LevelStateStore"},{"id":372,"kind":2048,"name":"open","url":"classes/levelstatestore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":373,"kind":2048,"name":"save","url":"classes/levelstatestore.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":374,"kind":2048,"name":"load","url":"classes/levelstatestore.html#load","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":375,"kind":2048,"name":"exists","url":"classes/levelstatestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":376,"kind":2048,"name":"remove","url":"classes/levelstatestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":377,"kind":2048,"name":"list","url":"classes/levelstatestore.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":378,"kind":2048,"name":"close","url":"classes/levelstatestore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":379,"kind":128,"name":"IpfsPinning","url":"classes/ipfspinning.html","classes":"tsd-kind-class"},{"id":380,"kind":1024,"name":"designator","url":"classes/ipfspinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"IpfsPinning"},{"id":381,"kind":1024,"name":"ipfsAddress","url":"classes/ipfspinning.html#ipfsaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IpfsPinning"},{"id":382,"kind":512,"name":"constructor","url":"classes/ipfspinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"IpfsPinning"},{"id":383,"kind":262144,"name":"ipfs","url":"classes/ipfspinning.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"IpfsPinning"},{"id":384,"kind":2048,"name":"open","url":"classes/ipfspinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":385,"kind":2048,"name":"close","url":"classes/ipfspinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":386,"kind":2048,"name":"pin","url":"classes/ipfspinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":387,"kind":2048,"name":"unpin","url":"classes/ipfspinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":388,"kind":32,"name":"FROM_CONTEXT","url":"globals.html#from_context","classes":"tsd-kind-variable"},{"id":389,"kind":128,"name":"EmptyTokenError","url":"classes/emptytokenerror.html","classes":"tsd-kind-class"},{"id":390,"kind":512,"name":"constructor","url":"classes/emptytokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EmptyTokenError"},{"id":391,"kind":1024,"name":"name","url":"classes/emptytokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":392,"kind":1024,"name":"message","url":"classes/emptytokenerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":393,"kind":1024,"name":"stack","url":"classes/emptytokenerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"EmptyTokenError"},{"id":394,"kind":1024,"name":"Error","url":"classes/emptytokenerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EmptyTokenError"},{"id":395,"kind":4,"name":"JobStatus","url":"enums/jobstatus.html","classes":"tsd-kind-enum"},{"id":396,"kind":16,"name":"JOB_STATUS_UNSPECIFIED","url":"enums/jobstatus.html#job_status_unspecified","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":397,"kind":16,"name":"JOB_STATUS_QUEUED","url":"enums/jobstatus.html#job_status_queued","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":398,"kind":16,"name":"JOB_STATUS_EXECUTING","url":"enums/jobstatus.html#job_status_executing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":399,"kind":16,"name":"JOB_STATUS_FAILED","url":"enums/jobstatus.html#job_status_failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":400,"kind":16,"name":"JOB_STATUS_CANCELED","url":"enums/jobstatus.html#job_status_canceled","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":401,"kind":16,"name":"JOB_STATUS_SUCCESS","url":"enums/jobstatus.html#job_status_success","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":402,"kind":128,"name":"PowergatePinning","url":"classes/powergatepinning.html","classes":"tsd-kind-class"},{"id":403,"kind":1024,"name":"designator","url":"classes/powergatepinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PowergatePinning"},{"id":404,"kind":1024,"name":"endpoint","url":"classes/powergatepinning.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":405,"kind":1024,"name":"token","url":"classes/powergatepinning.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":406,"kind":512,"name":"constructor","url":"classes/powergatepinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PowergatePinning"},{"id":407,"kind":262144,"name":"pow","url":"classes/powergatepinning.html#pow","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PowergatePinning"},{"id":408,"kind":2048,"name":"open","url":"classes/powergatepinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":409,"kind":2048,"name":"close","url":"classes/powergatepinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":410,"kind":2048,"name":"pin","url":"classes/powergatepinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":411,"kind":2048,"name":"unpin","url":"classes/powergatepinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":412,"kind":2048,"name":"waitForJobStatus","url":"classes/powergatepinning.html#waitforjobstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PowergatePinning"},{"id":413,"kind":128,"name":"UnknownPinningService","url":"classes/unknownpinningservice.html","classes":"tsd-kind-class"},{"id":414,"kind":512,"name":"constructor","url":"classes/unknownpinningservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UnknownPinningService"},{"id":415,"kind":1024,"name":"name","url":"classes/unknownpinningservice.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":416,"kind":1024,"name":"message","url":"classes/unknownpinningservice.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":417,"kind":1024,"name":"stack","url":"classes/unknownpinningservice.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"UnknownPinningService"},{"id":418,"kind":1024,"name":"Error","url":"classes/unknownpinningservice.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"UnknownPinningService"},{"id":419,"kind":128,"name":"PinningAggregation","url":"classes/pinningaggregation.html","classes":"tsd-kind-class"},{"id":420,"kind":1024,"name":"backends","url":"classes/pinningaggregation.html#backends","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinningAggregation"},{"id":421,"kind":512,"name":"constructor","url":"classes/pinningaggregation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinningAggregation"},{"id":422,"kind":2048,"name":"open","url":"classes/pinningaggregation.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":423,"kind":2048,"name":"close","url":"classes/pinningaggregation.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":424,"kind":2048,"name":"pin","url":"classes/pinningaggregation.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":425,"kind":2048,"name":"unpin","url":"classes/pinningaggregation.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":426,"kind":128,"name":"PinStoreFactory","url":"classes/pinstorefactory.html","classes":"tsd-kind-class"},{"id":427,"kind":1024,"name":"stateStorePath","url":"classes/pinstorefactory.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":428,"kind":1024,"name":"pinnings","url":"classes/pinstorefactory.html#pinnings","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":429,"kind":512,"name":"constructor","url":"classes/pinstorefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":430,"kind":1024,"name":"context","url":"classes/pinstorefactory.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":431,"kind":2048,"name":"open","url":"classes/pinstorefactory.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":432,"kind":256,"name":"CeramicConfig","url":"interfaces/ceramicconfig.html","classes":"tsd-kind-interface"},{"id":433,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/ceramicconfig.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":434,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/ceramicconfig.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":435,"kind":1024,"name":"stateStorePath","url":"interfaces/ceramicconfig.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":436,"kind":1024,"name":"didResolver","url":"interfaces/ceramicconfig.html#didresolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":437,"kind":1024,"name":"didProvider","url":"interfaces/ceramicconfig.html#didprovider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":438,"kind":1024,"name":"validateDocs","url":"interfaces/ceramicconfig.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":439,"kind":1024,"name":"pinning","url":"interfaces/ceramicconfig.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":440,"kind":1024,"name":"logLevel","url":"interfaces/ceramicconfig.html#loglevel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":441,"kind":1024,"name":"logToFiles","url":"interfaces/ceramicconfig.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":442,"kind":1024,"name":"logToFilesPlugin","url":"interfaces/ceramicconfig.html#logtofilesplugin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":443,"kind":65536,"name":"__type","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"CeramicConfig.logToFilesPlugin"},{"id":444,"kind":32,"name":"plugin","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.plugin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":445,"kind":32,"name":"options","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.options","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":446,"kind":1024,"name":"gateway","url":"interfaces/ceramicconfig.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":447,"kind":1024,"name":"topic","url":"interfaces/ceramicconfig.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":448,"kind":1024,"name":"pin","url":"classes/ceramic.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":449,"kind":1024,"name":"context","url":"classes/ceramic.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":450,"kind":512,"name":"constructor","url":"classes/ceramic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Ceramic"},{"id":451,"kind":1024,"name":"dispatcher","url":"classes/ceramic.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":452,"kind":1024,"name":"pinStore","url":"classes/ceramic.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":453,"kind":262144,"name":"ipfs","url":"classes/ceramic.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":454,"kind":262144,"name":"did","url":"classes/ceramic.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":455,"kind":2048,"name":"create","url":"classes/ceramic.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Ceramic"},{"id":456,"kind":2048,"name":"findHandler","url":"classes/ceramic.html#findhandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":457,"kind":2048,"name":"setDIDProvider","url":"classes/ceramic.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":458,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramic.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":459,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramic.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":460,"kind":2048,"name":"applyRecord","url":"classes/ceramic.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":461,"kind":2048,"name":"getDocFromMap","url":"classes/ceramic.html#getdocfrommap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":462,"kind":2048,"name":"createDocument","url":"classes/ceramic.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":463,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramic.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":464,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramic.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":465,"kind":2048,"name":"_loadDoc","url":"classes/ceramic.html#_loaddoc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":466,"kind":2048,"name":"listVersions","url":"classes/ceramic.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":467,"kind":2048,"name":"close","url":"classes/ceramic.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":468,"kind":64,"name":"normalizeDocID","url":"globals.html#normalizedocid","classes":"tsd-kind-function"},{"id":469,"kind":256,"name":"CidDoc","url":"interfaces/ciddoc.html","classes":"tsd-kind-interface"},{"id":470,"kind":1024,"name":"cid","url":"interfaces/ciddoc.html#cid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":471,"kind":1024,"name":"docId","url":"interfaces/ciddoc.html#docid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":472,"kind":256,"name":"EthNetwork","url":"interfaces/ethnetwork.html","classes":"tsd-kind-interface"},{"id":473,"kind":1024,"name":"network","url":"interfaces/ethnetwork.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":474,"kind":1024,"name":"chain","url":"interfaces/ethnetwork.html#chain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":475,"kind":1024,"name":"chainId","url":"interfaces/ethnetwork.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":476,"kind":1024,"name":"networkId","url":"interfaces/ethnetwork.html#networkid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":477,"kind":1024,"name":"type","url":"interfaces/ethnetwork.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":478,"kind":128,"name":"EthereumAnchorService","url":"classes/ethereumanchorservice.html","classes":"tsd-kind-class"},{"id":479,"kind":512,"name":"constructor","url":"classes/ethereumanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EthereumAnchorService"},{"id":480,"kind":2048,"name":"requestAnchor","url":"classes/ethereumanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":481,"kind":2048,"name":"validateChainInclusion","url":"classes/ethereumanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":482,"kind":2048,"name":"addListener","url":"classes/ethereumanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":483,"kind":2048,"name":"on","url":"classes/ethereumanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":484,"kind":2048,"name":"once","url":"classes/ethereumanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":485,"kind":2048,"name":"removeListener","url":"classes/ethereumanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":486,"kind":2048,"name":"off","url":"classes/ethereumanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":487,"kind":2048,"name":"removeAllListeners","url":"classes/ethereumanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":488,"kind":2048,"name":"setMaxListeners","url":"classes/ethereumanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":489,"kind":2048,"name":"getMaxListeners","url":"classes/ethereumanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":490,"kind":2048,"name":"listeners","url":"classes/ethereumanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":491,"kind":2048,"name":"rawListeners","url":"classes/ethereumanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":492,"kind":2048,"name":"emit","url":"classes/ethereumanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":493,"kind":2048,"name":"listenerCount","url":"classes/ethereumanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":494,"kind":2048,"name":"prependListener","url":"classes/ethereumanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":495,"kind":2048,"name":"prependOnceListener","url":"classes/ethereumanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":496,"kind":2048,"name":"eventNames","url":"classes/ethereumanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":497,"kind":32,"name":"DEFAULT_POLL_TIME","url":"globals.html#default_poll_time","classes":"tsd-kind-variable"},{"id":498,"kind":32,"name":"DEFAULT_MAX_POLL_TIME","url":"globals.html#default_max_poll_time","classes":"tsd-kind-variable"},{"id":499,"kind":2097152,"name":"ETH_CHAIN_ID_MAPPINGS","url":"globals.html#eth_chain_id_mappings","classes":"tsd-kind-object-literal"},{"id":500,"kind":2097152,"name":"eip155:1","url":"globals.html#eth_chain_id_mappings.eip155_1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":501,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_1.network","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":502,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_1.chain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":503,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_1.chainid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":504,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_1.networkid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":505,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_1.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":506,"kind":2097152,"name":"eip155:3","url":"globals.html#eth_chain_id_mappings.eip155_3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":507,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_3.network-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":508,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_3.chain-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":509,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_3.chainid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":510,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_3.networkid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":511,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_3.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":512,"kind":128,"name":"AnchorServiceFactory","url":"classes/anchorservicefactory.html","classes":"tsd-kind-class"},{"id":513,"kind":512,"name":"constructor","url":"classes/anchorservicefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":514,"kind":2048,"name":"get","url":"classes/anchorservicefactory.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":515,"kind":256,"name":"AccountLinkParams","url":"interfaces/accountlinkparams.html","classes":"tsd-kind-interface"},{"id":516,"kind":1024,"name":"content","url":"interfaces/accountlinkparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountLinkParams"},{"id":517,"kind":1024,"name":"metadata","url":"interfaces/accountlinkparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"AccountLinkParams"},{"id":518,"kind":128,"name":"AccountLinkDoctype","url":"classes/accountlinkdoctype.html","classes":"tsd-kind-class"},{"id":519,"kind":2048,"name":"change","url":"classes/accountlinkdoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"AccountLinkDoctype"},{"id":520,"kind":2048,"name":"create","url":"classes/accountlinkdoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":521,"kind":2048,"name":"makeGenesis","url":"classes/accountlinkdoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":522,"kind":512,"name":"constructor","url":"classes/accountlinkdoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":523,"kind":262144,"name":"id","url":"classes/accountlinkdoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":524,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":525,"kind":262144,"name":"content","url":"classes/accountlinkdoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":526,"kind":262144,"name":"metadata","url":"classes/accountlinkdoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":527,"kind":262144,"name":"owners","url":"classes/accountlinkdoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":528,"kind":262144,"name":"head","url":"classes/accountlinkdoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":529,"kind":262144,"name":"state","url":"classes/accountlinkdoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":530,"kind":262144,"name":"context","url":"classes/accountlinkdoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":531,"kind":2048,"name":"addListener","url":"classes/accountlinkdoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":532,"kind":2048,"name":"on","url":"classes/accountlinkdoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":533,"kind":2048,"name":"once","url":"classes/accountlinkdoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":534,"kind":2048,"name":"removeListener","url":"classes/accountlinkdoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":535,"kind":2048,"name":"off","url":"classes/accountlinkdoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":536,"kind":2048,"name":"removeAllListeners","url":"classes/accountlinkdoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":537,"kind":2048,"name":"setMaxListeners","url":"classes/accountlinkdoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":538,"kind":2048,"name":"getMaxListeners","url":"classes/accountlinkdoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":539,"kind":2048,"name":"listeners","url":"classes/accountlinkdoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":540,"kind":2048,"name":"rawListeners","url":"classes/accountlinkdoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":541,"kind":2048,"name":"emit","url":"classes/accountlinkdoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":542,"kind":2048,"name":"listenerCount","url":"classes/accountlinkdoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":543,"kind":2048,"name":"prependListener","url":"classes/accountlinkdoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":544,"kind":2048,"name":"prependOnceListener","url":"classes/accountlinkdoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":545,"kind":2048,"name":"eventNames","url":"classes/accountlinkdoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":546,"kind":32,"name":"DOCTYPE","url":"globals.html#doctype","classes":"tsd-kind-variable"},{"id":547,"kind":128,"name":"AccountLinkDoctypeHandler","url":"classes/accountlinkdoctypehandler.html","classes":"tsd-kind-class"},{"id":548,"kind":262144,"name":"name","url":"classes/accountlinkdoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":549,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":550,"kind":2048,"name":"create","url":"classes/accountlinkdoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":551,"kind":2048,"name":"applyRecord","url":"classes/accountlinkdoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":552,"kind":256,"name":"TileParams","url":"interfaces/tileparams.html","classes":"tsd-kind-interface"},{"id":553,"kind":1024,"name":"content","url":"interfaces/tileparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TileParams"},{"id":554,"kind":1024,"name":"metadata","url":"interfaces/tileparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"TileParams"},{"id":555,"kind":128,"name":"TileDoctype","url":"classes/tiledoctype.html","classes":"tsd-kind-class"},{"id":556,"kind":2048,"name":"change","url":"classes/tiledoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"TileDoctype"},{"id":557,"kind":2048,"name":"create","url":"classes/tiledoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":558,"kind":2048,"name":"makeGenesis","url":"classes/tiledoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":559,"kind":512,"name":"constructor","url":"classes/tiledoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":560,"kind":262144,"name":"id","url":"classes/tiledoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":561,"kind":262144,"name":"doctype","url":"classes/tiledoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":562,"kind":262144,"name":"content","url":"classes/tiledoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":563,"kind":262144,"name":"metadata","url":"classes/tiledoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":564,"kind":262144,"name":"owners","url":"classes/tiledoctype.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":565,"kind":262144,"name":"head","url":"classes/tiledoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":566,"kind":262144,"name":"state","url":"classes/tiledoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":567,"kind":262144,"name":"context","url":"classes/tiledoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":568,"kind":2048,"name":"addListener","url":"classes/tiledoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":569,"kind":2048,"name":"on","url":"classes/tiledoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":570,"kind":2048,"name":"once","url":"classes/tiledoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":571,"kind":2048,"name":"removeListener","url":"classes/tiledoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":572,"kind":2048,"name":"off","url":"classes/tiledoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":573,"kind":2048,"name":"removeAllListeners","url":"classes/tiledoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":574,"kind":2048,"name":"setMaxListeners","url":"classes/tiledoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":575,"kind":2048,"name":"getMaxListeners","url":"classes/tiledoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":576,"kind":2048,"name":"listeners","url":"classes/tiledoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":577,"kind":2048,"name":"rawListeners","url":"classes/tiledoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":578,"kind":2048,"name":"emit","url":"classes/tiledoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":579,"kind":2048,"name":"listenerCount","url":"classes/tiledoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":580,"kind":2048,"name":"prependListener","url":"classes/tiledoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":581,"kind":2048,"name":"prependOnceListener","url":"classes/tiledoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":582,"kind":2048,"name":"eventNames","url":"classes/tiledoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":583,"kind":128,"name":"TileDoctypeHandler","url":"classes/tiledoctypehandler.html","classes":"tsd-kind-class"},{"id":584,"kind":262144,"name":"name","url":"classes/tiledoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":585,"kind":262144,"name":"doctype","url":"classes/tiledoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":586,"kind":2048,"name":"create","url":"classes/tiledoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":587,"kind":2048,"name":"applyRecord","url":"classes/tiledoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":588,"kind":2048,"name":"verifyJWS","url":"classes/tiledoctypehandler.html#verifyjws","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":589,"kind":64,"name":"fetchJson","url":"globals.html#fetchjson","classes":"tsd-kind-function"},{"id":590,"kind":64,"name":"typeDocID","url":"globals.html#typedocid","classes":"tsd-kind-function"},{"id":591,"kind":1024,"name":"doctypeHandler","url":"classes/document.html#doctypehandler","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":592,"kind":2048,"name":"createFromGenesis","url":"classes/document.html#createfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":593,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":594,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":595,"kind":2048,"name":"loadDocumentRecords","url":"classes/document.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":596,"kind":2048,"name":"change","url":"classes/document.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":597,"kind":2048,"name":"_syncState","url":"classes/document.html#_syncstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":598,"kind":262144,"name":"owners","url":"classes/document.html#owners","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":599,"kind":262144,"name":"context","url":"classes/document.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":600,"kind":64,"name":"docIdUrl","url":"globals.html#docidurl","classes":"tsd-kind-function"},{"id":601,"kind":128,"name":"CeramicClient","url":"classes/ceramicclient.html","classes":"tsd-kind-class"},{"id":602,"kind":1024,"name":"pin","url":"classes/ceramicclient.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":603,"kind":1024,"name":"context","url":"classes/ceramicclient.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":604,"kind":1024,"name":"_doctypeHandlers","url":"classes/ceramicclient.html#_doctypehandlers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":605,"kind":512,"name":"constructor","url":"classes/ceramicclient.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicClient"},{"id":606,"kind":262144,"name":"did","url":"classes/ceramicclient.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CeramicClient"},{"id":607,"kind":2048,"name":"_initPinApi","url":"classes/ceramicclient.html#_initpinapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":608,"kind":2048,"name":"createDocument","url":"classes/ceramicclient.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":609,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramicclient.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":610,"kind":2048,"name":"loadDocument","url":"classes/ceramicclient.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":611,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramicclient.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":612,"kind":2048,"name":"applyRecord","url":"classes/ceramicclient.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":613,"kind":2048,"name":"listVersions","url":"classes/ceramicclient.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":614,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramicclient.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":615,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramicclient.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":616,"kind":2048,"name":"setDIDProvider","url":"classes/ceramicclient.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":617,"kind":2048,"name":"close","url":"classes/ceramicclient.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":618,"kind":32,"name":"CERAMIC_HOST","url":"globals.html#ceramic_host","classes":"tsd-kind-variable"},{"id":619,"kind":32,"name":"API_PATH","url":"globals.html#api_path","classes":"tsd-kind-variable"},{"id":620,"kind":2097152,"name":"table","url":"globals.html#table","classes":"tsd-kind-object-literal"},{"id":621,"kind":32,"name":"tile","url":"globals.html#table.tile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":622,"kind":32,"name":"caip10-link","url":"globals.html#table.caip10_link","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":623,"kind":128,"name":"DocID","url":"classes/docid.html","classes":"tsd-kind-class"},{"id":624,"kind":512,"name":"constructor","url":"classes/docid.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DocID"},{"id":625,"kind":2048,"name":"fromBytes","url":"classes/docid.html#frombytes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":626,"kind":2048,"name":"_genesisCIDLength","url":"classes/docid.html#_genesiscidlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":627,"kind":2048,"name":"fromString","url":"classes/docid.html#fromstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":628,"kind":262144,"name":"baseID","url":"classes/docid.html#baseid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":629,"kind":262144,"name":"type","url":"classes/docid.html#type","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":630,"kind":262144,"name":"typeName","url":"classes/docid.html#typename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":631,"kind":262144,"name":"cid","url":"classes/docid.html#cid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":632,"kind":262144,"name":"version","url":"classes/docid.html#version","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":633,"kind":262144,"name":"multibaseName","url":"classes/docid.html#multibasename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":634,"kind":262144,"name":"multihash","url":"classes/docid.html#multihash","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":635,"kind":262144,"name":"codec","url":"classes/docid.html#codec","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":636,"kind":262144,"name":"bytes","url":"classes/docid.html#bytes","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":637,"kind":2048,"name":"equals","url":"classes/docid.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":638,"kind":2048,"name":"toBaseEncodedString","url":"classes/docid.html#tobaseencodedstring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":639,"kind":2048,"name":"toString","url":"classes/docid.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":640,"kind":2048,"name":"toUrl","url":"classes/docid.html#tourl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":641,"kind":2048,"name":"[Symbol.for('nodejs.util.inspect.custom')]","url":"classes/docid.html#_symbol_for__nodejs_util_inspect_custom___","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":642,"kind":2048,"name":"[Symbol.toPrimitive]","url":"classes/docid.html#_symbol_toprimitive_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":643,"kind":2048,"name":"isDocID","url":"classes/docid.html#isdocid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":644,"kind":32,"name":"DOCID_CODEC","url":"globals.html#docid_codec","classes":"tsd-kind-variable"},{"id":645,"kind":64,"name":"getKey","url":"globals.html#getkey","classes":"tsd-kind-function"},{"id":646,"kind":64,"name":"keyToDidDoc","url":"globals.html#keytodiddoc","classes":"tsd-kind-function"},{"id":647,"kind":2097152,"name":"prefixToDriverMap","url":"globals.html#prefixtodrivermap","classes":"tsd-kind-object-literal"},{"id":648,"kind":32,"name":"231","url":"globals.html#prefixtodrivermap.231","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"prefixToDriverMap"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,33.221]],["parent/0",[]],["name/1",[1,52.275]],["parent/1",[0,3.112]],["name/2",[2,60.753]],["parent/2",[]],["name/3",[3,60.753]],["parent/3",[]],["name/4",[4,49.76]],["parent/4",[]],["name/5",[5,60.753]],["parent/5",[4,4.662]],["name/6",[6,38.767]],["parent/6",[]],["name/7",[7,60.753]],["parent/7",[6,3.632]],["name/8",[8,49.76]],["parent/8",[6,3.632]],["name/9",[9,60.753]],["parent/9",[6,3.632]],["name/10",[10,55.642]],["parent/10",[6,3.632]],["name/11",[11,55.642]],["parent/11",[6,3.632]],["name/12",[12,52.275]],["parent/12",[6,3.632]],["name/13",[13,55.642]],["parent/13",[6,3.632]],["name/14",[14,43.396]],["parent/14",[6,3.632]],["name/15",[15,55.642]],["parent/15",[6,3.632]],["name/16",[16,60.753]],["parent/16",[6,3.632]],["name/17",[4,49.76]],["parent/17",[6,3.632]],["name/18",[17,60.753]],["parent/18",[6,3.632]],["name/19",[18,52.275]],["parent/19",[]],["name/20",[19,55.642]],["parent/20",[18,4.897]],["name/21",[20,55.642]],["parent/21",[18,4.897]],["name/22",[21,36.17]],["parent/22",[]],["name/23",[22,33.221]],["parent/23",[21,3.389]],["name/24",[0,33.221]],["parent/24",[21,3.389]],["name/25",[23,44.649]],["parent/25",[21,3.389]],["name/26",[24,60.753]],["parent/26",[21,3.389]],["name/27",[25,60.753]],["parent/27",[21,3.389]],["name/28",[26,60.753]],["parent/28",[21,3.389]],["name/29",[27,55.642]],["parent/29",[21,3.389]],["name/30",[28,46.081]],["parent/30",[21,3.389]],["name/31",[29,55.642]],["parent/31",[21,3.389]],["name/32",[30,60.753]],["parent/32",[21,3.389]],["name/33",[31,42.283]],["parent/33",[21,3.389]],["name/34",[32,60.753]],["parent/34",[21,3.389]],["name/35",[33,60.753]],["parent/35",[21,3.389]],["name/36",[34,60.753]],["parent/36",[21,3.389]],["name/37",[35,60.753]],["parent/37",[21,3.389]],["name/38",[36,38.767]],["parent/38",[21,3.389]],["name/39",[37,60.753]],["parent/39",[]],["name/40",[38,60.753]],["parent/40",[]],["name/41",[39,60.753]],["parent/41",[]],["name/42",[40,52.275]],["parent/42",[]],["name/43",[41,60.753]],["parent/43",[40,4.897]],["name/44",[42,60.753]],["parent/44",[40,4.897]],["name/45",[43,36.759]],["parent/45",[]],["name/46",[44,60.753]],["parent/46",[43,3.444]],["name/47",[45,60.753]],["parent/47",[43,3.444]],["name/48",[46,47.752]],["parent/48",[43,3.444]],["name/49",[27,55.642]],["parent/49",[43,3.444]],["name/50",[28,46.081]],["parent/50",[43,3.444]],["name/51",[47,60.753]],["parent/51",[43,3.444]],["name/52",[29,55.642]],["parent/52",[43,3.444]],["name/53",[48,60.753]],["parent/53",[43,3.444]],["name/54",[49,60.753]],["parent/54",[43,3.444]],["name/55",[50,60.753]],["parent/55",[43,3.444]],["name/56",[51,60.753]],["parent/56",[43,3.444]],["name/57",[52,60.753]],["parent/57",[43,3.444]],["name/58",[53,60.753]],["parent/58",[43,3.444]],["name/59",[54,60.753]],["parent/59",[43,3.444]],["name/60",[55,60.753]],["parent/60",[43,3.444]],["name/61",[56,60.753]],["parent/61",[]],["name/62",[57,60.753]],["parent/62",[]],["name/63",[58,60.753]],["parent/63",[]],["name/64",[59,60.753]],["parent/64",[]],["name/65",[60,60.753]],["parent/65",[]],["name/66",[61,43.396]],["parent/66",[]],["name/67",[62,60.753]],["parent/67",[]],["name/68",[63,49.76]],["parent/68",[]],["name/69",[64,55.642]],["parent/69",[63,4.662]],["name/70",[65,55.642]],["parent/70",[63,4.662]],["name/71",[66,55.642]],["parent/71",[63,4.662]],["name/72",[67,38.767]],["parent/72",[]],["name/73",[61,43.396]],["parent/73",[67,3.632]],["name/74",[68,49.76]],["parent/74",[67,3.632]],["name/75",[69,52.275]],["parent/75",[67,3.632]],["name/76",[70,52.275]],["parent/76",[67,3.632]],["name/77",[71,52.275]],["parent/77",[67,3.632]],["name/78",[72,52.275]],["parent/78",[67,3.632]],["name/79",[1,52.275]],["parent/79",[67,3.632]],["name/80",[73,49.76]],["parent/80",[67,3.632]],["name/81",[74,47.752]],["parent/81",[67,3.632]],["name/82",[31,42.283]],["parent/82",[67,3.632]],["name/83",[75,52.275]],["parent/83",[67,3.632]],["name/84",[36,38.767]],["parent/84",[67,3.632]],["name/85",[76,38.052]],["parent/85",[]],["name/86",[68,49.76]],["parent/86",[76,3.565]],["name/87",[8,49.76]],["parent/87",[76,3.565]],["name/88",[77,60.753]],["parent/88",[76,3.565]],["name/89",[78,60.753]],["parent/89",[76,3.565]],["name/90",[79,33.656]],["parent/90",[76,3.565]],["name/91",[80,60.753]],["parent/91",[76,3.565]],["name/92",[81,49.76]],["parent/92",[]],["name/93",[82,60.753]],["parent/93",[81,4.662]],["name/94",[83,60.753]],["parent/94",[81,4.662]],["name/95",[84,60.753]],["parent/95",[81,4.662]],["name/96",[85,44.649]],["parent/96",[]],["name/97",[86,60.753]],["parent/97",[85,4.183]],["name/98",[87,60.753]],["parent/98",[85,4.183]],["name/99",[88,60.753]],["parent/99",[85,4.183]],["name/100",[89,60.753]],["parent/100",[85,4.183]],["name/101",[90,60.753]],["parent/101",[85,4.183]],["name/102",[91,47.752]],["parent/102",[]],["name/103",[92,60.753]],["parent/103",[91,4.474]],["name/104",[93,60.753]],["parent/104",[91,4.474]],["name/105",[94,60.753]],["parent/105",[91,4.474]],["name/106",[95,44.649]],["parent/106",[]],["name/107",[96,49.76]],["parent/107",[95,4.183]],["name/108",[97,60.753]],["parent/108",[95,4.183]],["name/109",[98,60.753]],["parent/109",[95,4.183]],["name/110",[99,60.753]],["parent/110",[95,4.183]],["name/111",[100,60.753]],["parent/111",[95,4.183]],["name/112",[101,47.752]],["parent/112",[]],["name/113",[102,49.76]],["parent/113",[101,4.474]],["name/114",[103,60.753]],["parent/114",[101,4.474]],["name/115",[104,60.753]],["parent/115",[101,4.474]],["name/116",[105,60.753]],["parent/116",[101,4.474]],["name/117",[106,55.642]],["parent/117",[]],["name/118",[107,42.283]],["parent/118",[106,5.213]],["name/119",[108,49.76]],["parent/119",[]],["name/120",[109,43.396]],["parent/120",[108,4.662]],["name/121",[102,49.76]],["parent/121",[108,4.662]],["name/122",[107,42.283]],["parent/122",[108,4.662]],["name/123",[110,41.282]],["parent/123",[]],["name/124",[111,28.544]],["parent/124",[110,3.868]],["name/125",[109,43.396]],["parent/125",[110,3.868]],["name/126",[112,60.753]],["parent/126",[110,3.868]],["name/127",[107,42.283]],["parent/127",[110,3.868]],["name/128",[113,60.753]],["parent/128",[110,3.868]],["name/129",[85,44.649]],["parent/129",[110,3.868]],["name/130",[114,55.642]],["parent/130",[110,3.868]],["name/131",[95,44.649]],["parent/131",[110,3.868]],["name/132",[115,60.753]],["parent/132",[110,3.868]],["name/133",[116,52.275]],["parent/133",[]],["name/134",[117,60.753]],["parent/134",[116,4.897]],["name/135",[118,60.753]],["parent/135",[116,4.897]],["name/136",[111,28.544]],["parent/136",[]],["name/137",[22,33.221]],["parent/137",[111,2.674]],["name/138",[119,49.76]],["parent/138",[111,2.674]],["name/139",[111,28.544]],["parent/139",[111,2.674]],["name/140",[109,43.396]],["parent/140",[111,2.674]],["name/141",[107,42.283]],["parent/141",[111,2.674]],["name/142",[102,49.76]],["parent/142",[111,2.674]],["name/143",[120,49.76]],["parent/143",[111,2.674]],["name/144",[28,46.081]],["parent/144",[111,2.674]],["name/145",[76,38.052]],["parent/145",[111,2.674]],["name/146",[46,47.752]],["parent/146",[111,2.674]],["name/147",[121,43.396]],["parent/147",[111,2.674]],["name/148",[122,43.396]],["parent/148",[111,2.674]],["name/149",[123,43.396]],["parent/149",[111,2.674]],["name/150",[124,43.396]],["parent/150",[111,2.674]],["name/151",[125,43.396]],["parent/151",[111,2.674]],["name/152",[126,43.396]],["parent/152",[111,2.674]],["name/153",[127,43.396]],["parent/153",[111,2.674]],["name/154",[128,43.396]],["parent/154",[111,2.674]],["name/155",[129,43.396]],["parent/155",[111,2.674]],["name/156",[130,43.396]],["parent/156",[111,2.674]],["name/157",[131,43.396]],["parent/157",[111,2.674]],["name/158",[132,39.537]],["parent/158",[111,2.674]],["name/159",[133,43.396]],["parent/159",[111,2.674]],["name/160",[134,43.396]],["parent/160",[111,2.674]],["name/161",[135,43.396]],["parent/161",[111,2.674]],["name/162",[132,39.537]],["parent/162",[111,2.674]],["name/163",[136,49.76]],["parent/163",[111,2.674]],["name/164",[137,52.275]],["parent/164",[]],["name/165",[22,33.221]],["parent/165",[137,4.897]],["name/166",[138,52.275]],["parent/166",[137,4.897]],["name/167",[139,47.752]],["parent/167",[]],["name/168",[140,47.752]],["parent/168",[139,4.474]],["name/169",[111,28.544]],["parent/169",[139,4.474]],["name/170",[31,42.283]],["parent/170",[139,4.474]],["name/171",[141,60.753]],["parent/171",[]],["name/172",[79,33.656]],["parent/172",[]],["name/173",[142,52.275]],["parent/173",[79,3.153]],["name/174",[143,52.275]],["parent/174",[79,3.153]],["name/175",[121,43.396]],["parent/175",[79,3.153]],["name/176",[122,43.396]],["parent/176",[79,3.153]],["name/177",[123,43.396]],["parent/177",[79,3.153]],["name/178",[124,43.396]],["parent/178",[79,3.153]],["name/179",[125,43.396]],["parent/179",[79,3.153]],["name/180",[126,43.396]],["parent/180",[79,3.153]],["name/181",[127,43.396]],["parent/181",[79,3.153]],["name/182",[128,43.396]],["parent/182",[79,3.153]],["name/183",[129,43.396]],["parent/183",[79,3.153]],["name/184",[130,43.396]],["parent/184",[79,3.153]],["name/185",[131,43.396]],["parent/185",[79,3.153]],["name/186",[132,39.537]],["parent/186",[79,3.153]],["name/187",[133,43.396]],["parent/187",[79,3.153]],["name/188",[134,43.396]],["parent/188",[79,3.153]],["name/189",[135,43.396]],["parent/189",[79,3.153]],["name/190",[22,33.221]],["parent/190",[79,3.153]],["name/191",[132,39.537]],["parent/191",[79,3.153]],["name/192",[136,49.76]],["parent/192",[79,3.153]],["name/193",[144,41.282]],["parent/193",[]],["name/194",[145,60.753]],["parent/194",[144,3.868]],["name/195",[146,60.753]],["parent/195",[144,3.868]],["name/196",[147,60.753]],["parent/196",[144,3.868]],["name/197",[148,60.753]],["parent/197",[144,3.868]],["name/198",[149,60.753]],["parent/198",[144,3.868]],["name/199",[150,60.753]],["parent/199",[144,3.868]],["name/200",[151,60.753]],["parent/200",[144,3.868]],["name/201",[152,60.753]],["parent/201",[144,3.868]],["name/202",[153,60.753]],["parent/202",[144,3.868]],["name/203",[154,46.081]],["parent/203",[]],["name/204",[155,55.642]],["parent/204",[154,4.317]],["name/205",[156,55.642]],["parent/205",[154,4.317]],["name/206",[157,55.642]],["parent/206",[154,4.317]],["name/207",[158,47.752]],["parent/207",[159,5.692]],["name/208",[160,55.642]],["parent/208",[161,4.897]],["name/209",[162,55.642]],["parent/209",[161,4.897]],["name/210",[163,55.642]],["parent/210",[161,4.897]],["name/211",[164,60.753]],["parent/211",[154,4.317]],["name/212",[165,60.753]],["parent/212",[]],["name/213",[166,49.76]],["parent/213",[]],["name/214",[167,55.642]],["parent/214",[166,4.662]],["name/215",[168,60.753]],["parent/215",[166,4.662]],["name/216",[169,60.753]],["parent/216",[166,4.662]],["name/217",[170,49.76]],["parent/217",[]],["name/218",[155,55.642]],["parent/218",[170,4.662]],["name/219",[156,55.642]],["parent/219",[170,4.662]],["name/220",[157,55.642]],["parent/220",[170,4.662]],["name/221",[160,55.642]],["parent/221",[171,4.897]],["name/222",[162,55.642]],["parent/222",[171,4.897]],["name/223",[163,55.642]],["parent/223",[171,4.897]],["name/224",[172,52.275]],["parent/224",[]],["name/225",[158,47.752]],["parent/225",[172,4.897]],["name/226",[173,47.752]],["parent/226",[]],["name/227",[174,60.753]],["parent/227",[173,4.474]],["name/228",[175,49.76]],["parent/228",[173,4.474]],["name/229",[114,55.642]],["parent/229",[173,4.474]],["name/230",[91,47.752]],["parent/230",[173,4.474]],["name/231",[176,46.081]],["parent/231",[]],["name/232",[177,60.753]],["parent/232",[176,4.317]],["name/233",[178,60.753]],["parent/233",[176,4.317]],["name/234",[179,60.753]],["parent/234",[176,4.317]],["name/235",[180,55.642]],["parent/235",[176,4.317]],["name/236",[181,60.753]],["parent/236",[176,4.317]],["name/237",[182,42.283]],["parent/237",[]],["name/238",[183,43.396]],["parent/238",[182,3.961]],["name/239",[36,38.767]],["parent/239",[182,3.961]],["name/240",[184,55.642]],["parent/240",[182,3.961]],["name/241",[185,52.275]],["parent/241",[182,3.961]],["name/242",[186,55.642]],["parent/242",[182,3.961]],["name/243",[187,55.642]],["parent/243",[182,3.961]],["name/244",[188,55.642]],["parent/244",[182,3.961]],["name/245",[14,43.396]],["parent/245",[]],["name/246",[183,43.396]],["parent/246",[14,4.066]],["name/247",[36,38.767]],["parent/247",[14,4.066]],["name/248",[61,43.396]],["parent/248",[14,4.066]],["name/249",[189,49.76]],["parent/249",[14,4.066]],["name/250",[190,52.275]],["parent/250",[]],["name/251",[191,52.275]],["parent/251",[190,4.897]],["name/252",[22,33.221]],["parent/252",[190,4.897]],["name/253",[192,36.759]],["parent/253",[]],["name/254",[22,33.221]],["parent/254",[192,3.444]],["name/255",[182,42.283]],["parent/255",[192,3.444]],["name/256",[14,43.396]],["parent/256",[192,3.444]],["name/257",[193,60.753]],["parent/257",[192,3.444]],["name/258",[158,47.752]],["parent/258",[192,3.444]],["name/259",[194,60.753]],["parent/259",[192,3.444]],["name/260",[158,47.752]],["parent/260",[192,3.444]],["name/261",[183,43.396]],["parent/261",[192,3.444]],["name/262",[36,38.767]],["parent/262",[192,3.444]],["name/263",[64,55.642]],["parent/263",[192,3.444]],["name/264",[65,55.642]],["parent/264",[192,3.444]],["name/265",[66,55.642]],["parent/265",[192,3.444]],["name/266",[195,60.753]],["parent/266",[192,3.444]],["name/267",[196,25.177]],["parent/267",[]],["name/268",[197,60.753]],["parent/268",[196,2.359]],["name/269",[119,49.76]],["parent/269",[196,2.359]],["name/270",[198,55.642]],["parent/270",[196,2.359]],["name/271",[22,33.221]],["parent/271",[196,2.359]],["name/272",[199,30.289]],["parent/272",[196,2.359]],["name/273",[192,36.759]],["parent/273",[196,2.359]],["name/274",[23,44.649]],["parent/274",[196,2.359]],["name/275",[185,52.275]],["parent/275",[196,2.359]],["name/276",[180,55.642]],["parent/276",[196,2.359]],["name/277",[74,47.752]],["parent/277",[196,2.359]],["name/278",[200,55.642]],["parent/278",[196,2.359]],["name/279",[200,55.642]],["parent/279",[196,2.359]],["name/280",[31,42.283]],["parent/280",[196,2.359]],["name/281",[201,60.753]],["parent/281",[196,2.359]],["name/282",[202,60.753]],["parent/282",[196,2.359]],["name/283",[203,60.753]],["parent/283",[196,2.359]],["name/284",[109,43.396]],["parent/284",[196,2.359]],["name/285",[28,46.081]],["parent/285",[196,2.359]],["name/286",[111,28.544]],["parent/286",[196,2.359]],["name/287",[120,49.76]],["parent/287",[196,2.359]],["name/288",[102,49.76]],["parent/288",[196,2.359]],["name/289",[107,42.283]],["parent/289",[196,2.359]],["name/290",[204,60.753]],["parent/290",[196,2.359]],["name/291",[36,38.767]],["parent/291",[196,2.359]],["name/292",[205,55.642]],["parent/292",[196,2.359]],["name/293",[121,43.396]],["parent/293",[196,2.359]],["name/294",[122,43.396]],["parent/294",[196,2.359]],["name/295",[123,43.396]],["parent/295",[196,2.359]],["name/296",[124,43.396]],["parent/296",[196,2.359]],["name/297",[125,43.396]],["parent/297",[196,2.359]],["name/298",[126,43.396]],["parent/298",[196,2.359]],["name/299",[127,43.396]],["parent/299",[196,2.359]],["name/300",[128,43.396]],["parent/300",[196,2.359]],["name/301",[129,43.396]],["parent/301",[196,2.359]],["name/302",[130,43.396]],["parent/302",[196,2.359]],["name/303",[131,43.396]],["parent/303",[196,2.359]],["name/304",[132,39.537]],["parent/304",[196,2.359]],["name/305",[133,43.396]],["parent/305",[196,2.359]],["name/306",[134,43.396]],["parent/306",[196,2.359]],["name/307",[135,43.396]],["parent/307",[196,2.359]],["name/308",[132,39.537]],["parent/308",[196,2.359]],["name/309",[136,49.76]],["parent/309",[196,2.359]],["name/310",[206,49.76]],["parent/310",[]],["name/311",[207,60.753]],["parent/311",[206,4.662]],["name/312",[19,55.642]],["parent/312",[206,4.662]],["name/313",[20,55.642]],["parent/313",[206,4.662]],["name/314",[208,46.081]],["parent/314",[]],["name/315",[209,60.753]],["parent/315",[208,4.317]],["name/316",[210,60.753]],["parent/316",[208,4.317]],["name/317",[211,49.76]],["parent/317",[208,4.317]],["name/318",[212,60.753]],["parent/318",[208,4.317]],["name/319",[175,49.76]],["parent/319",[208,4.317]],["name/320",[199,30.289]],["parent/320",[]],["name/321",[22,33.221]],["parent/321",[199,2.838]],["name/322",[213,60.753]],["parent/322",[199,2.838]],["name/323",[211,49.76]],["parent/323",[199,2.838]],["name/324",[167,55.642]],["parent/324",[199,2.838]],["name/325",[214,60.753]],["parent/325",[199,2.838]],["name/326",[215,60.753]],["parent/326",[199,2.838]],["name/327",[216,60.753]],["parent/327",[199,2.838]],["name/328",[217,60.753]],["parent/328",[199,2.838]],["name/329",[218,60.753]],["parent/329",[199,2.838]],["name/330",[219,60.753]],["parent/330",[199,2.838]],["name/331",[36,38.767]],["parent/331",[199,2.838]],["name/332",[121,43.396]],["parent/332",[199,2.838]],["name/333",[122,43.396]],["parent/333",[199,2.838]],["name/334",[123,43.396]],["parent/334",[199,2.838]],["name/335",[124,43.396]],["parent/335",[199,2.838]],["name/336",[125,43.396]],["parent/336",[199,2.838]],["name/337",[126,43.396]],["parent/337",[199,2.838]],["name/338",[127,43.396]],["parent/338",[199,2.838]],["name/339",[128,43.396]],["parent/339",[199,2.838]],["name/340",[129,43.396]],["parent/340",[199,2.838]],["name/341",[130,43.396]],["parent/341",[199,2.838]],["name/342",[131,43.396]],["parent/342",[199,2.838]],["name/343",[132,39.537]],["parent/343",[199,2.838]],["name/344",[133,43.396]],["parent/344",[199,2.838]],["name/345",[134,43.396]],["parent/345",[199,2.838]],["name/346",[135,43.396]],["parent/346",[199,2.838]],["name/347",[132,39.537]],["parent/347",[199,2.838]],["name/348",[136,49.76]],["parent/348",[199,2.838]],["name/349",[211,49.76]],["parent/349",[]],["name/350",[220,35.088]],["parent/350",[]],["name/351",[22,33.221]],["parent/351",[220,3.287]],["name/352",[142,52.275]],["parent/352",[220,3.287]],["name/353",[143,52.275]],["parent/353",[220,3.287]],["name/354",[121,43.396]],["parent/354",[220,3.287]],["name/355",[122,43.396]],["parent/355",[220,3.287]],["name/356",[123,43.396]],["parent/356",[220,3.287]],["name/357",[124,43.396]],["parent/357",[220,3.287]],["name/358",[125,43.396]],["parent/358",[220,3.287]],["name/359",[126,43.396]],["parent/359",[220,3.287]],["name/360",[127,43.396]],["parent/360",[220,3.287]],["name/361",[128,43.396]],["parent/361",[220,3.287]],["name/362",[129,43.396]],["parent/362",[220,3.287]],["name/363",[130,43.396]],["parent/363",[220,3.287]],["name/364",[131,43.396]],["parent/364",[220,3.287]],["name/365",[132,39.537]],["parent/365",[220,3.287]],["name/366",[133,43.396]],["parent/366",[220,3.287]],["name/367",[134,43.396]],["parent/367",[220,3.287]],["name/368",[135,43.396]],["parent/368",[220,3.287]],["name/369",[221,41.282]],["parent/369",[]],["name/370",[22,33.221]],["parent/370",[221,3.868]],["name/371",[222,60.753]],["parent/371",[221,3.868]],["name/372",[183,43.396]],["parent/372",[221,3.868]],["name/373",[184,55.642]],["parent/373",[221,3.868]],["name/374",[185,52.275]],["parent/374",[221,3.868]],["name/375",[186,55.642]],["parent/375",[221,3.868]],["name/376",[188,55.642]],["parent/376",[221,3.868]],["name/377",[187,55.642]],["parent/377",[221,3.868]],["name/378",[36,38.767]],["parent/378",[221,3.868]],["name/379",[223,42.283]],["parent/379",[]],["name/380",[191,52.275]],["parent/380",[223,3.961]],["name/381",[224,60.753]],["parent/381",[223,3.961]],["name/382",[22,33.221]],["parent/382",[223,3.961]],["name/383",[8,49.76]],["parent/383",[223,3.961]],["name/384",[183,43.396]],["parent/384",[223,3.961]],["name/385",[36,38.767]],["parent/385",[223,3.961]],["name/386",[61,43.396]],["parent/386",[223,3.961]],["name/387",[189,49.76]],["parent/387",[223,3.961]],["name/388",[225,60.753]],["parent/388",[]],["name/389",[226,46.081]],["parent/389",[]],["name/390",[22,33.221]],["parent/390",[226,4.317]],["name/391",[140,47.752]],["parent/391",[226,4.317]],["name/392",[175,49.76]],["parent/392",[226,4.317]],["name/393",[227,55.642]],["parent/393",[226,4.317]],["name/394",[228,55.642]],["parent/394",[226,4.317]],["name/395",[229,44.649]],["parent/395",[]],["name/396",[230,60.753]],["parent/396",[229,4.183]],["name/397",[231,60.753]],["parent/397",[229,4.183]],["name/398",[232,60.753]],["parent/398",[229,4.183]],["name/399",[233,60.753]],["parent/399",[229,4.183]],["name/400",[234,60.753]],["parent/400",[229,4.183]],["name/401",[235,60.753]],["parent/401",[229,4.183]],["name/402",[236,40.372]],["parent/402",[]],["name/403",[191,52.275]],["parent/403",[236,3.782]],["name/404",[237,60.753]],["parent/404",[236,3.782]],["name/405",[238,60.753]],["parent/405",[236,3.782]],["name/406",[22,33.221]],["parent/406",[236,3.782]],["name/407",[239,60.753]],["parent/407",[236,3.782]],["name/408",[183,43.396]],["parent/408",[236,3.782]],["name/409",[36,38.767]],["parent/409",[236,3.782]],["name/410",[61,43.396]],["parent/410",[236,3.782]],["name/411",[189,49.76]],["parent/411",[236,3.782]],["name/412",[240,60.753]],["parent/412",[236,3.782]],["name/413",[241,46.081]],["parent/413",[]],["name/414",[22,33.221]],["parent/414",[241,4.317]],["name/415",[140,47.752]],["parent/415",[241,4.317]],["name/416",[175,49.76]],["parent/416",[241,4.317]],["name/417",[227,55.642]],["parent/417",[241,4.317]],["name/418",[228,55.642]],["parent/418",[241,4.317]],["name/419",[242,44.649]],["parent/419",[]],["name/420",[243,60.753]],["parent/420",[242,4.183]],["name/421",[22,33.221]],["parent/421",[242,4.183]],["name/422",[183,43.396]],["parent/422",[242,4.183]],["name/423",[36,38.767]],["parent/423",[242,4.183]],["name/424",[61,43.396]],["parent/424",[242,4.183]],["name/425",[189,49.76]],["parent/425",[242,4.183]],["name/426",[244,46.081]],["parent/426",[]],["name/427",[12,52.275]],["parent/427",[244,4.317]],["name/428",[245,60.753]],["parent/428",[244,4.317]],["name/429",[22,33.221]],["parent/429",[244,4.317]],["name/430",[76,38.052]],["parent/430",[244,4.317]],["name/431",[183,43.396]],["parent/431",[244,4.317]],["name/432",[246,38.767]],["parent/432",[]],["name/433",[10,55.642]],["parent/433",[246,3.632]],["name/434",[11,55.642]],["parent/434",[246,3.632]],["name/435",[12,52.275]],["parent/435",[246,3.632]],["name/436",[247,60.753]],["parent/436",[246,3.632]],["name/437",[248,60.753]],["parent/437",[246,3.632]],["name/438",[13,55.642]],["parent/438",[246,3.632]],["name/439",[14,43.396]],["parent/439",[246,3.632]],["name/440",[249,60.753]],["parent/440",[246,3.632]],["name/441",[4,49.76]],["parent/441",[246,3.632]],["name/442",[250,60.753]],["parent/442",[246,3.632]],["name/443",[158,47.752]],["parent/443",[251,5.692]],["name/444",[172,52.275]],["parent/444",[252,5.213]],["name/445",[154,46.081]],["parent/445",[252,5.213]],["name/446",[15,55.642]],["parent/446",[246,3.632]],["name/447",[211,49.76]],["parent/447",[246,3.632]],["name/448",[61,43.396]],["parent/448",[0,3.112]],["name/449",[76,38.052]],["parent/449",[0,3.112]],["name/450",[22,33.221]],["parent/450",[0,3.112]],["name/451",[199,30.289]],["parent/451",[0,3.112]],["name/452",[192,36.759]],["parent/452",[0,3.112]],["name/453",[8,49.76]],["parent/453",[0,3.112]],["name/454",[68,49.76]],["parent/454",[0,3.112]],["name/455",[23,44.649]],["parent/455",[0,3.112]],["name/456",[253,60.753]],["parent/456",[0,3.112]],["name/457",[75,52.275]],["parent/457",[0,3.112]],["name/458",[69,52.275]],["parent/458",[0,3.112]],["name/459",[70,52.275]],["parent/459",[0,3.112]],["name/460",[31,42.283]],["parent/460",[0,3.112]],["name/461",[254,60.753]],["parent/461",[0,3.112]],["name/462",[71,52.275]],["parent/462",[0,3.112]],["name/463",[72,52.275]],["parent/463",[0,3.112]],["name/464",[73,49.76]],["parent/464",[0,3.112]],["name/465",[255,60.753]],["parent/465",[0,3.112]],["name/466",[74,47.752]],["parent/466",[0,3.112]],["name/467",[36,38.767]],["parent/467",[0,3.112]],["name/468",[256,60.753]],["parent/468",[]],["name/469",[257,52.275]],["parent/469",[]],["name/470",[258,55.642]],["parent/470",[257,4.897]],["name/471",[259,33.656]],["parent/471",[257,4.897]],["name/472",[260,46.081]],["parent/472",[]],["name/473",[261,52.275]],["parent/473",[260,4.317]],["name/474",[262,52.275]],["parent/474",[260,4.317]],["name/475",[96,49.76]],["parent/475",[260,4.317]],["name/476",[263,52.275]],["parent/476",[260,4.317]],["name/477",[264,49.76]],["parent/477",[260,4.317]],["name/478",[265,35.088]],["parent/478",[]],["name/479",[22,33.221]],["parent/479",[265,3.287]],["name/480",[142,52.275]],["parent/480",[265,3.287]],["name/481",[143,52.275]],["parent/481",[265,3.287]],["name/482",[121,43.396]],["parent/482",[265,3.287]],["name/483",[122,43.396]],["parent/483",[265,3.287]],["name/484",[123,43.396]],["parent/484",[265,3.287]],["name/485",[124,43.396]],["parent/485",[265,3.287]],["name/486",[125,43.396]],["parent/486",[265,3.287]],["name/487",[126,43.396]],["parent/487",[265,3.287]],["name/488",[127,43.396]],["parent/488",[265,3.287]],["name/489",[128,43.396]],["parent/489",[265,3.287]],["name/490",[129,43.396]],["parent/490",[265,3.287]],["name/491",[130,43.396]],["parent/491",[265,3.287]],["name/492",[131,43.396]],["parent/492",[265,3.287]],["name/493",[132,39.537]],["parent/493",[265,3.287]],["name/494",[133,43.396]],["parent/494",[265,3.287]],["name/495",[134,43.396]],["parent/495",[265,3.287]],["name/496",[135,43.396]],["parent/496",[265,3.287]],["name/497",[266,60.753]],["parent/497",[]],["name/498",[267,60.753]],["parent/498",[]],["name/499",[268,52.275]],["parent/499",[]],["name/500",[269,60.753]],["parent/500",[268,4.897]],["name/501",[261,52.275]],["parent/501",[270,4.474]],["name/502",[262,52.275]],["parent/502",[270,4.474]],["name/503",[96,49.76]],["parent/503",[270,4.474]],["name/504",[263,52.275]],["parent/504",[270,4.474]],["name/505",[264,49.76]],["parent/505",[270,4.474]],["name/506",[271,60.753]],["parent/506",[268,4.897]],["name/507",[261,52.275]],["parent/507",[272,4.474]],["name/508",[262,52.275]],["parent/508",[272,4.474]],["name/509",[96,49.76]],["parent/509",[272,4.474]],["name/510",[263,52.275]],["parent/510",[272,4.474]],["name/511",[264,49.76]],["parent/511",[272,4.474]],["name/512",[273,52.275]],["parent/512",[]],["name/513",[22,33.221]],["parent/513",[273,4.897]],["name/514",[274,60.753]],["parent/514",[273,4.897]],["name/515",[275,52.275]],["parent/515",[]],["name/516",[109,43.396]],["parent/516",[275,4.897]],["name/517",[107,42.283]],["parent/517",[275,4.897]],["name/518",[276,31.29]],["parent/518",[]],["name/519",[46,47.752]],["parent/519",[276,2.931]],["name/520",[23,44.649]],["parent/520",[276,2.931]],["name/521",[138,52.275]],["parent/521",[276,2.931]],["name/522",[22,33.221]],["parent/522",[276,2.931]],["name/523",[119,49.76]],["parent/523",[276,2.931]],["name/524",[111,28.544]],["parent/524",[276,2.931]],["name/525",[109,43.396]],["parent/525",[276,2.931]],["name/526",[107,42.283]],["parent/526",[276,2.931]],["name/527",[277,52.275]],["parent/527",[276,2.931]],["name/528",[120,49.76]],["parent/528",[276,2.931]],["name/529",[28,46.081]],["parent/529",[276,2.931]],["name/530",[76,38.052]],["parent/530",[276,2.931]],["name/531",[121,43.396]],["parent/531",[276,2.931]],["name/532",[122,43.396]],["parent/532",[276,2.931]],["name/533",[123,43.396]],["parent/533",[276,2.931]],["name/534",[124,43.396]],["parent/534",[276,2.931]],["name/535",[125,43.396]],["parent/535",[276,2.931]],["name/536",[126,43.396]],["parent/536",[276,2.931]],["name/537",[127,43.396]],["parent/537",[276,2.931]],["name/538",[128,43.396]],["parent/538",[276,2.931]],["name/539",[129,43.396]],["parent/539",[276,2.931]],["name/540",[130,43.396]],["parent/540",[276,2.931]],["name/541",[131,43.396]],["parent/541",[276,2.931]],["name/542",[132,39.537]],["parent/542",[276,2.931]],["name/543",[133,43.396]],["parent/543",[276,2.931]],["name/544",[134,43.396]],["parent/544",[276,2.931]],["name/545",[135,43.396]],["parent/545",[276,2.931]],["name/546",[111,28.544]],["parent/546",[]],["name/547",[278,47.752]],["parent/547",[]],["name/548",[140,47.752]],["parent/548",[278,4.474]],["name/549",[111,28.544]],["parent/549",[278,4.474]],["name/550",[23,44.649]],["parent/550",[278,4.474]],["name/551",[31,42.283]],["parent/551",[278,4.474]],["name/552",[279,52.275]],["parent/552",[]],["name/553",[109,43.396]],["parent/553",[279,4.897]],["name/554",[107,42.283]],["parent/554",[279,4.897]],["name/555",[280,31.29]],["parent/555",[]],["name/556",[46,47.752]],["parent/556",[280,2.931]],["name/557",[23,44.649]],["parent/557",[280,2.931]],["name/558",[138,52.275]],["parent/558",[280,2.931]],["name/559",[22,33.221]],["parent/559",[280,2.931]],["name/560",[119,49.76]],["parent/560",[280,2.931]],["name/561",[111,28.544]],["parent/561",[280,2.931]],["name/562",[109,43.396]],["parent/562",[280,2.931]],["name/563",[107,42.283]],["parent/563",[280,2.931]],["name/564",[277,52.275]],["parent/564",[280,2.931]],["name/565",[120,49.76]],["parent/565",[280,2.931]],["name/566",[28,46.081]],["parent/566",[280,2.931]],["name/567",[76,38.052]],["parent/567",[280,2.931]],["name/568",[121,43.396]],["parent/568",[280,2.931]],["name/569",[122,43.396]],["parent/569",[280,2.931]],["name/570",[123,43.396]],["parent/570",[280,2.931]],["name/571",[124,43.396]],["parent/571",[280,2.931]],["name/572",[125,43.396]],["parent/572",[280,2.931]],["name/573",[126,43.396]],["parent/573",[280,2.931]],["name/574",[127,43.396]],["parent/574",[280,2.931]],["name/575",[128,43.396]],["parent/575",[280,2.931]],["name/576",[129,43.396]],["parent/576",[280,2.931]],["name/577",[130,43.396]],["parent/577",[280,2.931]],["name/578",[131,43.396]],["parent/578",[280,2.931]],["name/579",[132,39.537]],["parent/579",[280,2.931]],["name/580",[133,43.396]],["parent/580",[280,2.931]],["name/581",[134,43.396]],["parent/581",[280,2.931]],["name/582",[135,43.396]],["parent/582",[280,2.931]],["name/583",[281,46.081]],["parent/583",[]],["name/584",[140,47.752]],["parent/584",[281,4.317]],["name/585",[111,28.544]],["parent/585",[281,4.317]],["name/586",[23,44.649]],["parent/586",[281,4.317]],["name/587",[31,42.283]],["parent/587",[281,4.317]],["name/588",[282,60.753]],["parent/588",[281,4.317]],["name/589",[283,60.753]],["parent/589",[]],["name/590",[284,60.753]],["parent/590",[]],["name/591",[139,47.752]],["parent/591",[196,2.359]],["name/592",[285,60.753]],["parent/592",[196,2.359]],["name/593",[31,42.283]],["parent/593",[196,2.359]],["name/594",[74,47.752]],["parent/594",[196,2.359]],["name/595",[73,49.76]],["parent/595",[196,2.359]],["name/596",[46,47.752]],["parent/596",[196,2.359]],["name/597",[286,60.753]],["parent/597",[196,2.359]],["name/598",[277,52.275]],["parent/598",[196,2.359]],["name/599",[76,38.052]],["parent/599",[196,2.359]],["name/600",[287,60.753]],["parent/600",[]],["name/601",[288,36.17]],["parent/601",[]],["name/602",[61,43.396]],["parent/602",[288,3.389]],["name/603",[76,38.052]],["parent/603",[288,3.389]],["name/604",[289,60.753]],["parent/604",[288,3.389]],["name/605",[22,33.221]],["parent/605",[288,3.389]],["name/606",[68,49.76]],["parent/606",[288,3.389]],["name/607",[290,60.753]],["parent/607",[288,3.389]],["name/608",[71,52.275]],["parent/608",[288,3.389]],["name/609",[72,52.275]],["parent/609",[288,3.389]],["name/610",[1,52.275]],["parent/610",[288,3.389]],["name/611",[73,49.76]],["parent/611",[288,3.389]],["name/612",[31,42.283]],["parent/612",[288,3.389]],["name/613",[74,47.752]],["parent/613",[288,3.389]],["name/614",[69,52.275]],["parent/614",[288,3.389]],["name/615",[70,52.275]],["parent/615",[288,3.389]],["name/616",[75,52.275]],["parent/616",[288,3.389]],["name/617",[36,38.767]],["parent/617",[288,3.389]],["name/618",[291,60.753]],["parent/618",[]],["name/619",[292,60.753]],["parent/619",[]],["name/620",[293,52.275]],["parent/620",[]],["name/621",[294,60.753]],["parent/621",[293,4.897]],["name/622",[295,43.127,296,43.127]],["parent/622",[293,4.897]],["name/623",[259,33.656]],["parent/623",[]],["name/624",[22,33.221]],["parent/624",[259,3.153]],["name/625",[297,60.753]],["parent/625",[259,3.153]],["name/626",[298,60.753]],["parent/626",[259,3.153]],["name/627",[299,60.753]],["parent/627",[259,3.153]],["name/628",[300,60.753]],["parent/628",[259,3.153]],["name/629",[264,49.76]],["parent/629",[259,3.153]],["name/630",[301,60.753]],["parent/630",[259,3.153]],["name/631",[258,55.642]],["parent/631",[259,3.153]],["name/632",[198,55.642]],["parent/632",[259,3.153]],["name/633",[302,60.753]],["parent/633",[259,3.153]],["name/634",[303,60.753]],["parent/634",[259,3.153]],["name/635",[304,60.753]],["parent/635",[259,3.153]],["name/636",[305,60.753]],["parent/636",[259,3.153]],["name/637",[306,60.753]],["parent/637",[259,3.153]],["name/638",[307,60.753]],["parent/638",[259,3.153]],["name/639",[205,55.642]],["parent/639",[259,3.153]],["name/640",[308,60.753]],["parent/640",[259,3.153]],["name/641",[309,60.753]],["parent/641",[259,3.153]],["name/642",[310,60.753]],["parent/642",[259,3.153]],["name/643",[311,60.753]],["parent/643",[259,3.153]],["name/644",[312,60.753]],["parent/644",[]],["name/645",[313,60.753]],["parent/645",[]],["name/646",[314,60.753]],["parent/646",[]],["name/647",[315,55.642]],["parent/647",[]],["name/648",[316,60.753]],["parent/648",[315,5.213]]],"invertedIndex":[["231",{"_index":316,"name":{"648":{}},"parent":{}}],["__type",{"_index":158,"name":{"207":{},"225":{},"258":{},"260":{},"443":{}},"parent":{}}],["_buildhttplog",{"_index":25,"name":{"27":{}},"parent":{}}],["_context",{"_index":197,"name":{"268":{}},"parent":{}}],["_doctypehandlers",{"_index":289,"name":{"604":{}},"parent":{}}],["_genesiscidlength",{"_index":298,"name":{"626":{}},"parent":{}}],["_initpinapi",{"_index":290,"name":{"607":{}},"parent":{}}],["_ipfs",{"_index":213,"name":{"322":{}},"parent":{}}],["_loaddoc",{"_index":255,"name":{"465":{}},"parent":{}}],["_notsupported",{"_index":35,"name":{"37":{}},"parent":{}}],["_syncstate",{"_index":286,"name":{"597":{}},"parent":{}}],["_totext",{"_index":169,"name":{"216":{}},"parent":{}}],["accountlinkdoctype",{"_index":276,"name":{"518":{}},"parent":{"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{}}}],["accountlinkdoctypehandler",{"_index":278,"name":{"547":{}},"parent":{"548":{},"549":{},"550":{},"551":{}}}],["accountlinkparams",{"_index":275,"name":{"515":{}},"parent":{"516":{},"517":{}}}],["add",{"_index":64,"name":{"69":{},"263":{}},"parent":{}}],["adddoctypehandler",{"_index":69,"name":{"75":{},"458":{},"614":{}},"parent":{}}],["addlistener",{"_index":121,"name":{"147":{},"175":{},"293":{},"332":{},"354":{},"482":{},"531":{},"568":{}},"parent":{}}],["addplugin",{"_index":168,"name":{"215":{}},"parent":{}}],["anchor",{"_index":201,"name":{"281":{}},"parent":{}}],["anchored",{"_index":89,"name":{"100":{}},"parent":{}}],["anchorproof",{"_index":95,"name":{"106":{},"131":{}},"parent":{"107":{},"108":{},"109":{},"110":{},"111":{}}}],["anchorrecord",{"_index":91,"name":{"102":{},"230":{}},"parent":{"103":{},"104":{},"105":{}}}],["anchorscheduledfor",{"_index":114,"name":{"130":{},"229":{}},"parent":{}}],["anchorservice",{"_index":79,"name":{"90":{},"172":{}},"parent":{"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{}}}],["anchorservicefactory",{"_index":273,"name":{"512":{}},"parent":{"513":{},"514":{}}}],["anchorserviceresponse",{"_index":173,"name":{"226":{}},"parent":{"227":{},"228":{},"229":{},"230":{}}}],["anchorserviceurl",{"_index":11,"name":{"11":{},"434":{}},"parent":{}}],["anchorstatus",{"_index":85,"name":{"96":{},"129":{}},"parent":{"97":{},"98":{},"99":{},"100":{},"101":{}}}],["api",{"_index":80,"name":{"91":{}},"parent":{}}],["api_path",{"_index":292,"name":{"619":{}},"parent":{}}],["applyonly",{"_index":117,"name":{"134":{}},"parent":{}}],["applyrecord",{"_index":31,"name":{"33":{},"82":{},"170":{},"280":{},"460":{},"551":{},"587":{},"593":{},"612":{}},"parent":{}}],["awaitcondition",{"_index":178,"name":{"233":{}},"parent":{}}],["backends",{"_index":243,"name":{"420":{}},"parent":{}}],["baseid",{"_index":300,"name":{"628":{}},"parent":{}}],["blocknumber",{"_index":97,"name":{"108":{}},"parent":{}}],["blocktimestamp",{"_index":98,"name":{"109":{}},"parent":{}}],["bytes",{"_index":305,"name":{"636":{}},"parent":{}}],["caip10",{"_index":295,"name":{"622":{}},"parent":{}}],["ceramic",{"_index":0,"name":{"0":{},"24":{}},"parent":{"1":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{}}}],["ceramic_host",{"_index":291,"name":{"618":{}},"parent":{}}],["ceramicapi",{"_index":67,"name":{"72":{}},"parent":{"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{}}}],["ceramicclient",{"_index":288,"name":{"601":{}},"parent":{"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{}}}],["ceramiccliutils",{"_index":43,"name":{"45":{}},"parent":{"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{}}}],["ceramicconfig",{"_index":246,"name":{"432":{}},"parent":{"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"446":{},"447":{}}}],["ceramicconfig.logtofilesplugin",{"_index":251,"name":{},"parent":{"443":{}}}],["ceramicconfig.logtofilesplugin.__type",{"_index":252,"name":{},"parent":{"444":{},"445":{}}}],["ceramicdaemon",{"_index":21,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{}}}],["ceramichost",{"_index":42,"name":{"44":{}},"parent":{}}],["chain",{"_index":262,"name":{"474":{},"502":{},"508":{}},"parent":{}}],["chainid",{"_index":96,"name":{"107":{},"475":{},"503":{},"509":{}},"parent":{}}],["change",{"_index":46,"name":{"48":{},"146":{},"519":{},"556":{},"596":{}},"parent":{}}],["cid",{"_index":258,"name":{"470":{},"631":{}},"parent":{}}],["ciddoc",{"_index":257,"name":{"469":{}},"parent":{"470":{},"471":{}}}],["cliconfig",{"_index":40,"name":{"42":{}},"parent":{"43":{},"44":{}}}],["close",{"_index":36,"name":{"38":{},"84":{},"239":{},"247":{},"262":{},"291":{},"331":{},"378":{},"385":{},"409":{},"423":{},"467":{},"617":{}},"parent":{}}],["codec",{"_index":304,"name":{"635":{}},"parent":{}}],["component",{"_index":164,"name":{"211":{}},"parent":{}}],["config",{"_index":62,"name":{"67":{}},"parent":{}}],["constructor",{"_index":22,"name":{"23":{},"137":{},"165":{},"190":{},"252":{},"254":{},"271":{},"321":{},"351":{},"370":{},"382":{},"390":{},"406":{},"414":{},"421":{},"429":{},"450":{},"479":{},"513":{},"522":{},"559":{},"605":{},"624":{}},"parent":{}}],["content",{"_index":109,"name":{"120":{},"125":{},"140":{},"284":{},"516":{},"525":{},"553":{},"562":{}},"parent":{}}],["context",{"_index":76,"name":{"85":{},"145":{},"430":{},"449":{},"530":{},"567":{},"599":{},"603":{}},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{}}}],["controllers",{"_index":102,"name":{"113":{},"121":{},"142":{},"288":{}},"parent":{}}],["convertrecordtodto",{"_index":150,"name":{"199":{}},"parent":{}}],["create",{"_index":23,"name":{"25":{},"274":{},"455":{},"520":{},"550":{},"557":{},"586":{}},"parent":{}}],["createdaemon",{"_index":44,"name":{"46":{}},"parent":{}}],["createdoc",{"_index":45,"name":{"47":{}},"parent":{}}],["createdocfromgenesis",{"_index":26,"name":{"28":{}},"parent":{}}],["createdocument",{"_index":71,"name":{"77":{},"462":{},"608":{}},"parent":{}}],["createdocumentfromgenesis",{"_index":72,"name":{"78":{},"463":{},"609":{}},"parent":{}}],["createfromgenesis",{"_index":285,"name":{"592":{}},"parent":{}}],["createopts",{"_index":6,"name":{"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{}}}],["debug",{"_index":16,"name":{"16":{}},"parent":{}}],["default_anchor_service_url",{"_index":39,"name":{"41":{}},"parent":{}}],["default_cli_config_file",{"_index":57,"name":{"62":{}},"parent":{}}],["default_cli_config_path",{"_index":59,"name":{"64":{}},"parent":{}}],["default_max_poll_time",{"_index":267,"name":{"498":{}},"parent":{}}],["default_pinning_store_path",{"_index":58,"name":{"63":{}},"parent":{}}],["default_poll_time",{"_index":266,"name":{"497":{}},"parent":{}}],["default_port",{"_index":37,"name":{"39":{}},"parent":{}}],["defaultmaxlisteners",{"_index":136,"name":{"163":{},"192":{},"309":{},"348":{}},"parent":{}}],["defaultopts",{"_index":170,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{}}}],["defaultopts.stacktrace",{"_index":171,"name":{},"parent":{"221":{},"222":{},"223":{}}}],["depth",{"_index":162,"name":{"209":{},"222":{}},"parent":{}}],["deserializerecord",{"_index":146,"name":{"195":{}},"parent":{}}],["deserializestate",{"_index":148,"name":{"197":{}},"parent":{}}],["designator",{"_index":191,"name":{"251":{},"380":{},"403":{}},"parent":{}}],["did",{"_index":68,"name":{"74":{},"86":{},"454":{},"606":{}},"parent":{}}],["didprovider",{"_index":248,"name":{"437":{}},"parent":{}}],["didresolver",{"_index":247,"name":{"436":{}},"parent":{}}],["dispatcher",{"_index":199,"name":{"272":{},"320":{},"451":{}},"parent":{"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{}}}],["docid",{"_index":259,"name":{"471":{},"623":{}},"parent":{"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{}}}],["docid_codec",{"_index":312,"name":{"644":{}},"parent":{}}],["docidurl",{"_index":287,"name":{"600":{}},"parent":{}}],["docmetadata",{"_index":101,"name":{"112":{}},"parent":{"113":{},"114":{},"115":{},"116":{}}}],["docnext",{"_index":108,"name":{"119":{}},"parent":{"120":{},"121":{},"122":{}}}],["docopts",{"_index":116,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["docparams",{"_index":106,"name":{"117":{}},"parent":{"118":{}}}],["docstate",{"_index":110,"name":{"123":{}},"parent":{"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{}}}],["doctype",{"_index":111,"name":{"124":{},"136":{},"139":{},"169":{},"286":{},"524":{},"546":{},"549":{},"561":{},"585":{}},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["doctypeconstructor",{"_index":137,"name":{"164":{}},"parent":{"165":{},"166":{}}}],["doctypehandler",{"_index":139,"name":{"167":{},"591":{}},"parent":{"168":{},"169":{},"170":{}}}],["doctypestatic",{"_index":141,"name":{"171":{}},"parent":{}}],["doctypeutils",{"_index":144,"name":{"193":{}},"parent":{"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{}}}],["document",{"_index":196,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{}}}],["eip155:1",{"_index":269,"name":{"500":{}},"parent":{}}],["eip155:3",{"_index":271,"name":{"506":{}},"parent":{}}],["emit",{"_index":131,"name":{"157":{},"185":{},"303":{},"342":{},"364":{},"492":{},"541":{},"578":{}},"parent":{}}],["emptytokenerror",{"_index":226,"name":{"389":{}},"parent":{"390":{},"391":{},"392":{},"393":{},"394":{}}}],["endpoint",{"_index":237,"name":{"404":{}},"parent":{}}],["equals",{"_index":306,"name":{"637":{}},"parent":{}}],["error",{"_index":228,"name":{"394":{},"418":{}},"parent":{}}],["eth_chain_id_mappings",{"_index":268,"name":{"499":{}},"parent":{"500":{},"506":{}}}],["eth_chain_id_mappings.eip155:1",{"_index":270,"name":{},"parent":{"501":{},"502":{},"503":{},"504":{},"505":{}}}],["eth_chain_id_mappings.eip155:3",{"_index":272,"name":{},"parent":{"507":{},"508":{},"509":{},"510":{},"511":{}}}],["ethereumanchorservice",{"_index":265,"name":{"478":{}},"parent":{"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{}}}],["ethereumrpcurl",{"_index":10,"name":{"10":{},"433":{}},"parent":{}}],["ethnetwork",{"_index":260,"name":{"472":{}},"parent":{"473":{},"474":{},"475":{},"476":{},"477":{}}}],["event",{"_index":210,"name":{"316":{}},"parent":{}}],["eventnames",{"_index":135,"name":{"161":{},"189":{},"307":{},"346":{},"368":{},"496":{},"545":{},"582":{}},"parent":{}}],["excess",{"_index":163,"name":{"210":{},"223":{}},"parent":{}}],["exists",{"_index":186,"name":{"242":{},"375":{}},"parent":{}}],["failed",{"_index":90,"name":{"101":{}},"parent":{}}],["fetchjson",{"_index":283,"name":{"589":{}},"parent":{}}],["finddoctypehandler",{"_index":70,"name":{"76":{},"459":{},"615":{}},"parent":{}}],["findhandler",{"_index":253,"name":{"456":{}},"parent":{}}],["format",{"_index":156,"name":{"205":{},"219":{}},"parent":{}}],["from",{"_index":212,"name":{"318":{}},"parent":{}}],["from_context",{"_index":225,"name":{"388":{}},"parent":{}}],["frombytes",{"_index":297,"name":{"625":{}},"parent":{}}],["fromstring",{"_index":299,"name":{"627":{}},"parent":{}}],["fs",{"_index":56,"name":{"61":{}},"parent":{}}],["gateway",{"_index":15,"name":{"15":{},"446":{}},"parent":{}}],["genesis",{"_index":82,"name":{"93":{}},"parent":{}}],["get",{"_index":274,"name":{"514":{}},"parent":{}}],["getdocfrommap",{"_index":254,"name":{"461":{}},"parent":{}}],["getkey",{"_index":313,"name":{"645":{}},"parent":{}}],["getmaxlisteners",{"_index":128,"name":{"154":{},"182":{},"300":{},"339":{},"361":{},"489":{},"538":{},"575":{}},"parent":{}}],["getversion",{"_index":200,"name":{"278":{},"279":{}},"parent":{}}],["handlemessage",{"_index":219,"name":{"330":{}},"parent":{}}],["head",{"_index":120,"name":{"143":{},"287":{},"528":{},"565":{}},"parent":{}}],["httplog",{"_index":18,"name":{"19":{}},"parent":{"20":{},"21":{}}}],["id",{"_index":119,"name":{"138":{},"269":{},"523":{},"560":{}},"parent":{}}],["init",{"_index":167,"name":{"214":{},"324":{}},"parent":{}}],["ipfs",{"_index":8,"name":{"8":{},"87":{},"383":{},"453":{}},"parent":{}}],["ipfsaddress",{"_index":224,"name":{"381":{}},"parent":{}}],["ipfshost",{"_index":7,"name":{"7":{}},"parent":{}}],["ipfspinning",{"_index":223,"name":{"379":{}},"parent":{"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{}}}],["isanchorrecord",{"_index":153,"name":{"202":{}},"parent":{}}],["isdocid",{"_index":311,"name":{"643":{}},"parent":{}}],["isschemavalid",{"_index":179,"name":{"234":{}},"parent":{}}],["issignedrecord",{"_index":152,"name":{"201":{}},"parent":{}}],["issignedrecorddto",{"_index":151,"name":{"200":{}},"parent":{}}],["isunique",{"_index":105,"name":{"116":{}},"parent":{}}],["job_status_canceled",{"_index":234,"name":{"400":{}},"parent":{}}],["job_status_executing",{"_index":232,"name":{"398":{}},"parent":{}}],["job_status_failed",{"_index":233,"name":{"399":{}},"parent":{}}],["job_status_queued",{"_index":231,"name":{"397":{}},"parent":{}}],["job_status_success",{"_index":235,"name":{"401":{}},"parent":{}}],["job_status_unspecified",{"_index":230,"name":{"396":{}},"parent":{}}],["jobstatus",{"_index":229,"name":{"395":{}},"parent":{"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["keytodiddoc",{"_index":314,"name":{"646":{}},"parent":{}}],["level",{"_index":155,"name":{"204":{},"218":{}},"parent":{}}],["levels",{"_index":160,"name":{"208":{},"221":{}},"parent":{}}],["levelstatestore",{"_index":221,"name":{"369":{}},"parent":{"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{}}}],["link",{"_index":296,"name":{"622":{}},"parent":{}}],["list",{"_index":187,"name":{"243":{},"377":{}},"parent":{}}],["listenercount",{"_index":132,"name":{"158":{},"162":{},"186":{},"191":{},"304":{},"308":{},"343":{},"347":{},"365":{},"493":{},"542":{},"579":{}},"parent":{}}],["listeners",{"_index":129,"name":{"155":{},"183":{},"301":{},"340":{},"362":{},"490":{},"539":{},"576":{}},"parent":{}}],["listpinned",{"_index":34,"name":{"36":{}},"parent":{}}],["listversions",{"_index":74,"name":{"81":{},"277":{},"466":{},"594":{},"613":{}},"parent":{}}],["load",{"_index":185,"name":{"241":{},"275":{},"374":{}},"parent":{}}],["loaddocument",{"_index":1,"name":{"1":{},"79":{},"610":{}},"parent":{}}],["loaddocumentrecords",{"_index":73,"name":{"80":{},"464":{},"595":{},"611":{}},"parent":{}}],["loadschema",{"_index":202,"name":{"282":{}},"parent":{}}],["loadschemabyid",{"_index":203,"name":{"283":{}},"parent":{}}],["log",{"_index":115,"name":{"132":{}},"parent":{}}],["loggerprovider",{"_index":166,"name":{"213":{}},"parent":{"214":{},"215":{},"216":{}}}],["loglevel",{"_index":249,"name":{"440":{}},"parent":{}}],["logmessage",{"_index":208,"name":{"314":{}},"parent":{"315":{},"316":{},"317":{},"318":{},"319":{}}}],["logpath",{"_index":17,"name":{"18":{}},"parent":{}}],["logtofiles",{"_index":4,"name":{"4":{},"17":{},"441":{}},"parent":{"5":{}}}],["logtofilesplugin",{"_index":250,"name":{"442":{}},"parent":{}}],["ls",{"_index":66,"name":{"71":{},"265":{}},"parent":{}}],["main",{"_index":5,"name":{"5":{}},"parent":{}}],["makegenesis",{"_index":138,"name":{"166":{},"521":{},"558":{}},"parent":{}}],["makereadonly",{"_index":149,"name":{"198":{}},"parent":{}}],["message",{"_index":175,"name":{"228":{},"319":{},"392":{},"416":{}},"parent":{}}],["metadata",{"_index":107,"name":{"118":{},"122":{},"127":{},"141":{},"289":{},"517":{},"526":{},"554":{},"563":{}},"parent":{}}],["mockanchorservice",{"_index":220,"name":{"350":{}},"parent":{"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{}}}],["msgtype",{"_index":206,"name":{"310":{}},"parent":{"311":{},"312":{},"313":{}}}],["multibasename",{"_index":302,"name":{"633":{}},"parent":{}}],["multihash",{"_index":303,"name":{"634":{}},"parent":{}}],["name",{"_index":140,"name":{"168":{},"391":{},"415":{},"548":{},"584":{}},"parent":{}}],["network",{"_index":261,"name":{"473":{},"501":{},"507":{}},"parent":{}}],["networkid",{"_index":263,"name":{"476":{},"504":{},"510":{}},"parent":{}}],["next",{"_index":112,"name":{"126":{}},"parent":{}}],["normalizedocid",{"_index":256,"name":{"468":{}},"parent":{}}],["not_requested",{"_index":86,"name":{"97":{}},"parent":{}}],["off",{"_index":125,"name":{"151":{},"179":{},"297":{},"336":{},"358":{},"486":{},"535":{},"572":{}},"parent":{}}],["on",{"_index":122,"name":{"148":{},"176":{},"294":{},"333":{},"355":{},"483":{},"532":{},"569":{}},"parent":{}}],["once",{"_index":123,"name":{"149":{},"177":{},"295":{},"334":{},"356":{},"484":{},"533":{},"570":{}},"parent":{}}],["open",{"_index":183,"name":{"238":{},"246":{},"261":{},"372":{},"384":{},"408":{},"422":{},"431":{}},"parent":{}}],["options",{"_index":154,"name":{"203":{},"445":{}},"parent":{"204":{},"205":{},"206":{},"211":{}}}],["options.stacktrace",{"_index":159,"name":{},"parent":{"207":{}}}],["options.stacktrace.__type",{"_index":161,"name":{},"parent":{"208":{},"209":{},"210":{}}}],["owners",{"_index":277,"name":{"527":{},"564":{},"598":{}},"parent":{}}],["partial",{"_index":83,"name":{"94":{}},"parent":{}}],["path",{"_index":94,"name":{"105":{}},"parent":{}}],["peer",{"_index":209,"name":{"315":{}},"parent":{}}],["pending",{"_index":87,"name":{"98":{}},"parent":{}}],["pin",{"_index":61,"name":{"66":{},"73":{},"248":{},"386":{},"410":{},"424":{},"448":{},"602":{}},"parent":{}}],["pinadd",{"_index":50,"name":{"55":{}},"parent":{}}],["pinapi",{"_index":63,"name":{"68":{}},"parent":{"69":{},"70":{},"71":{}}}],["pindocument",{"_index":32,"name":{"34":{}},"parent":{}}],["pinls",{"_index":52,"name":{"57":{}},"parent":{}}],["pinning",{"_index":14,"name":{"14":{},"245":{},"256":{},"439":{}},"parent":{"246":{},"247":{},"248":{},"249":{}}}],["pinningaggregation",{"_index":242,"name":{"419":{}},"parent":{"420":{},"421":{},"422":{},"423":{},"424":{},"425":{}}}],["pinnings",{"_index":245,"name":{"428":{}},"parent":{}}],["pinningstatic",{"_index":190,"name":{"250":{}},"parent":{"251":{},"252":{}}}],["pinrm",{"_index":51,"name":{"56":{}},"parent":{}}],["pinstore",{"_index":192,"name":{"253":{},"273":{},"452":{}},"parent":{"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["pinstorefactory",{"_index":244,"name":{"426":{}},"parent":{"427":{},"428":{},"429":{},"430":{},"431":{}}}],["plugin",{"_index":172,"name":{"224":{},"444":{}},"parent":{"225":{}}}],["pluginoptions",{"_index":165,"name":{"212":{}},"parent":{}}],["pointsofinterest",{"_index":195,"name":{"266":{}},"parent":{}}],["port",{"_index":9,"name":{"9":{}},"parent":{}}],["pow",{"_index":239,"name":{"407":{}},"parent":{}}],["powergatepinning",{"_index":236,"name":{"402":{}},"parent":{"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{}}}],["prefixtodrivermap",{"_index":315,"name":{"647":{}},"parent":{"648":{}}}],["prependlistener",{"_index":133,"name":{"159":{},"187":{},"305":{},"344":{},"366":{},"494":{},"543":{},"580":{}},"parent":{}}],["prependoncelistener",{"_index":134,"name":{"160":{},"188":{},"306":{},"345":{},"367":{},"495":{},"544":{},"581":{}},"parent":{}}],["prev",{"_index":92,"name":{"103":{}},"parent":{}}],["processing",{"_index":88,"name":{"99":{}},"parent":{}}],["proof",{"_index":93,"name":{"104":{}},"parent":{}}],["provider",{"_index":78,"name":{"89":{}},"parent":{}}],["publishhead",{"_index":218,"name":{"329":{}},"parent":{}}],["rawlisteners",{"_index":130,"name":{"156":{},"184":{},"302":{},"341":{},"363":{},"491":{},"540":{},"577":{}},"parent":{}}],["records",{"_index":30,"name":{"32":{}},"parent":{}}],["register",{"_index":214,"name":{"325":{}},"parent":{}}],["registerapipaths",{"_index":24,"name":{"26":{}},"parent":{}}],["remove",{"_index":188,"name":{"244":{},"376":{}},"parent":{}}],["removealllisteners",{"_index":126,"name":{"152":{},"180":{},"298":{},"337":{},"359":{},"487":{},"536":{},"573":{}},"parent":{}}],["removelistener",{"_index":124,"name":{"150":{},"178":{},"296":{},"335":{},"357":{},"485":{},"534":{},"571":{}},"parent":{}}],["request",{"_index":19,"name":{"20":{},"312":{}},"parent":{}}],["requestanchor",{"_index":142,"name":{"173":{},"352":{},"480":{}},"parent":{}}],["resolve",{"_index":194,"name":{"259":{}},"parent":{}}],["resolver",{"_index":77,"name":{"88":{}},"parent":{}}],["resolverregistry",{"_index":2,"name":{"2":{}},"parent":{}}],["response",{"_index":20,"name":{"21":{},"313":{}},"parent":{}}],["retrieve",{"_index":193,"name":{"257":{}},"parent":{}}],["retrieverecord",{"_index":217,"name":{"328":{}},"parent":{}}],["rm",{"_index":65,"name":{"70":{},"264":{}},"parent":{}}],["root",{"_index":100,"name":{"111":{}},"parent":{}}],["save",{"_index":184,"name":{"240":{},"373":{}},"parent":{}}],["schema",{"_index":103,"name":{"114":{}},"parent":{}}],["schemachangedoc",{"_index":49,"name":{"54":{}},"parent":{}}],["schemacreatedoc",{"_index":48,"name":{"53":{}},"parent":{}}],["schemas",{"_index":60,"name":{"65":{}},"parent":{}}],["seed",{"_index":41,"name":{"43":{}},"parent":{}}],["serializerecord",{"_index":145,"name":{"194":{}},"parent":{}}],["serializestate",{"_index":147,"name":{"196":{}},"parent":{}}],["setconfig",{"_index":54,"name":{"59":{}},"parent":{}}],["setdidprovider",{"_index":75,"name":{"83":{},"457":{},"616":{}},"parent":{}}],["setmaxlisteners",{"_index":127,"name":{"153":{},"181":{},"299":{},"338":{},"360":{},"488":{},"537":{},"574":{}},"parent":{}}],["show",{"_index":27,"name":{"29":{},"49":{}},"parent":{}}],["showconfig",{"_index":53,"name":{"58":{}},"parent":{}}],["signature",{"_index":113,"name":{"128":{}},"parent":{}}],["signaturestatus",{"_index":81,"name":{"92":{}},"parent":{"93":{},"94":{},"95":{}}}],["signed",{"_index":84,"name":{"95":{}},"parent":{}}],["skipwait",{"_index":118,"name":{"135":{}},"parent":{}}],["stack",{"_index":227,"name":{"393":{},"417":{}},"parent":{}}],["stacktrace",{"_index":157,"name":{"206":{},"220":{}},"parent":{}}],["state",{"_index":28,"name":{"30":{},"50":{},"144":{},"285":{},"529":{},"566":{}},"parent":{}}],["statestore",{"_index":182,"name":{"237":{},"255":{}},"parent":{"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["statestorepath",{"_index":12,"name":{"12":{},"427":{},"435":{}},"parent":{}}],["status",{"_index":174,"name":{"227":{}},"parent":{}}],["store",{"_index":222,"name":{"371":{}},"parent":{}}],["storerecord",{"_index":216,"name":{"327":{}},"parent":{}}],["symbol.for('nodejs.util.inspect.custom",{"_index":309,"name":{"641":{}},"parent":{}}],["symbol.toprimitive",{"_index":310,"name":{"642":{}},"parent":{}}],["table",{"_index":293,"name":{"620":{}},"parent":{"621":{},"622":{}}}],["tags",{"_index":104,"name":{"115":{}},"parent":{}}],["tile",{"_index":294,"name":{"621":{}},"parent":{}}],["tiledoctype",{"_index":280,"name":{"555":{}},"parent":{"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{}}}],["tiledoctypehandler",{"_index":281,"name":{"583":{}},"parent":{"584":{},"585":{},"586":{},"587":{},"588":{}}}],["tileparams",{"_index":279,"name":{"552":{}},"parent":{"553":{},"554":{}}}],["toapipath",{"_index":38,"name":{"40":{}},"parent":{}}],["tobaseencodedstring",{"_index":307,"name":{"638":{}},"parent":{}}],["token",{"_index":238,"name":{"405":{}},"parent":{}}],["topic",{"_index":211,"name":{"317":{},"323":{},"349":{},"447":{}},"parent":{}}],["tostring",{"_index":205,"name":{"292":{},"639":{}},"parent":{}}],["tourl",{"_index":308,"name":{"640":{}},"parent":{}}],["txhash",{"_index":99,"name":{"110":{}},"parent":{}}],["type",{"_index":264,"name":{"477":{},"505":{},"511":{},"629":{}},"parent":{}}],["typedocid",{"_index":284,"name":{"590":{}},"parent":{}}],["typename",{"_index":301,"name":{"630":{}},"parent":{}}],["unknownpinningservice",{"_index":241,"name":{"413":{}},"parent":{"414":{},"415":{},"416":{},"417":{},"418":{}}}],["unpin",{"_index":189,"name":{"249":{},"387":{},"411":{},"425":{}},"parent":{}}],["unpindocument",{"_index":33,"name":{"35":{}},"parent":{}}],["unregister",{"_index":215,"name":{"326":{}},"parent":{}}],["unsetconfig",{"_index":55,"name":{"60":{}},"parent":{}}],["update",{"_index":207,"name":{"311":{}},"parent":{}}],["utils",{"_index":176,"name":{"231":{}},"parent":{"232":{},"233":{},"234":{},"235":{},"236":{}}}],["validate",{"_index":180,"name":{"235":{},"276":{}},"parent":{}}],["validatechaininclusion",{"_index":143,"name":{"174":{},"353":{},"481":{}},"parent":{}}],["validatedocs",{"_index":13,"name":{"13":{},"438":{}},"parent":{}}],["validatedoctype",{"_index":181,"name":{"236":{}},"parent":{}}],["validator",{"_index":177,"name":{"232":{}},"parent":{}}],["verifyjws",{"_index":282,"name":{"588":{}},"parent":{}}],["version",{"_index":198,"name":{"270":{},"632":{}},"parent":{}}],["versions",{"_index":29,"name":{"31":{},"52":{}},"parent":{}}],["wait",{"_index":204,"name":{"290":{}},"parent":{}}],["waitforjobstatus",{"_index":240,"name":{"412":{}},"parent":{}}],["watch",{"_index":47,"name":{"51":{}},"parent":{}}],["wrapdocument",{"_index":3,"name":{"3":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +{"kinds":{"4":"Enumeration","16":"Enumeration member","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","262144":"Accessor","2097152":"Object literal","4194304":"Type alias"},"rows":[{"id":0,"kind":128,"name":"Ceramic","url":"classes/ceramic.html","classes":"tsd-kind-class"},{"id":1,"kind":2048,"name":"loadDocument","url":"classes/ceramic.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":2,"kind":256,"name":"ResolverRegistry","url":"interfaces/resolverregistry.html","classes":"tsd-kind-interface"},{"id":3,"kind":64,"name":"wrapDocument","url":"globals.html#wrapdocument","classes":"tsd-kind-function"},{"id":4,"kind":128,"name":"LogToFiles","url":"classes/logtofiles.html","classes":"tsd-kind-class"},{"id":5,"kind":2048,"name":"main","url":"classes/logtofiles.html#main","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LogToFiles"},{"id":6,"kind":256,"name":"CreateOpts","url":"interfaces/createopts.html","classes":"tsd-kind-interface"},{"id":7,"kind":1024,"name":"ipfsHost","url":"interfaces/createopts.html#ipfshost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":8,"kind":1024,"name":"ipfs","url":"interfaces/createopts.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":9,"kind":1024,"name":"port","url":"interfaces/createopts.html#port","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":10,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/createopts.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":11,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/createopts.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":12,"kind":1024,"name":"stateStorePath","url":"interfaces/createopts.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":13,"kind":1024,"name":"validateDocs","url":"interfaces/createopts.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":14,"kind":1024,"name":"pinning","url":"interfaces/createopts.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":15,"kind":1024,"name":"gateway","url":"interfaces/createopts.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":16,"kind":1024,"name":"debug","url":"interfaces/createopts.html#debug","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":17,"kind":1024,"name":"logToFiles","url":"interfaces/createopts.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":18,"kind":1024,"name":"logPath","url":"interfaces/createopts.html#logpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CreateOpts"},{"id":19,"kind":256,"name":"HttpLog","url":"interfaces/httplog.html","classes":"tsd-kind-interface"},{"id":20,"kind":1024,"name":"request","url":"interfaces/httplog.html#request","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":21,"kind":1024,"name":"response","url":"interfaces/httplog.html#response","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"HttpLog"},{"id":22,"kind":128,"name":"CeramicDaemon","url":"classes/ceramicdaemon.html","classes":"tsd-kind-class"},{"id":23,"kind":512,"name":"constructor","url":"classes/ceramicdaemon.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":24,"kind":1024,"name":"ceramic","url":"classes/ceramicdaemon.html#ceramic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":25,"kind":2048,"name":"create","url":"classes/ceramicdaemon.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicDaemon"},{"id":26,"kind":2048,"name":"registerAPIPaths","url":"classes/ceramicdaemon.html#registerapipaths","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":27,"kind":2048,"name":"_buildHttpLog","url":"classes/ceramicdaemon.html#_buildhttplog","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":28,"kind":2048,"name":"createDocFromGenesis","url":"classes/ceramicdaemon.html#createdocfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":29,"kind":2048,"name":"show","url":"classes/ceramicdaemon.html#show","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":30,"kind":2048,"name":"state","url":"classes/ceramicdaemon.html#state","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":31,"kind":2048,"name":"versions","url":"classes/ceramicdaemon.html#versions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":32,"kind":2048,"name":"records","url":"classes/ceramicdaemon.html#records","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":33,"kind":2048,"name":"applyRecord","url":"classes/ceramicdaemon.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":34,"kind":2048,"name":"pinDocument","url":"classes/ceramicdaemon.html#pindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":35,"kind":2048,"name":"unpinDocument","url":"classes/ceramicdaemon.html#unpindocument","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":36,"kind":2048,"name":"listPinned","url":"classes/ceramicdaemon.html#listpinned","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":37,"kind":2048,"name":"_notSupported","url":"classes/ceramicdaemon.html#_notsupported","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":38,"kind":2048,"name":"close","url":"classes/ceramicdaemon.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicDaemon"},{"id":39,"kind":32,"name":"DEFAULT_PORT","url":"globals.html#default_port","classes":"tsd-kind-variable"},{"id":40,"kind":64,"name":"toApiPath","url":"globals.html#toapipath","classes":"tsd-kind-function"},{"id":41,"kind":32,"name":"DEFAULT_ANCHOR_SERVICE_URL","url":"globals.html#default_anchor_service_url","classes":"tsd-kind-variable"},{"id":42,"kind":256,"name":"CliConfig","url":"interfaces/cliconfig.html","classes":"tsd-kind-interface"},{"id":43,"kind":1024,"name":"seed","url":"interfaces/cliconfig.html#seed","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":44,"kind":1024,"name":"ceramicHost","url":"interfaces/cliconfig.html#ceramichost","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CliConfig"},{"id":45,"kind":128,"name":"CeramicCliUtils","url":"classes/ceramiccliutils.html","classes":"tsd-kind-class"},{"id":46,"kind":2048,"name":"createDaemon","url":"classes/ceramiccliutils.html#createdaemon","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":47,"kind":2048,"name":"createDoc","url":"classes/ceramiccliutils.html#createdoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":48,"kind":2048,"name":"change","url":"classes/ceramiccliutils.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":49,"kind":2048,"name":"show","url":"classes/ceramiccliutils.html#show","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":50,"kind":2048,"name":"state","url":"classes/ceramiccliutils.html#state","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":51,"kind":2048,"name":"watch","url":"classes/ceramiccliutils.html#watch","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":52,"kind":2048,"name":"versions","url":"classes/ceramiccliutils.html#versions","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":53,"kind":2048,"name":"schemaCreateDoc","url":"classes/ceramiccliutils.html#schemacreatedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":54,"kind":2048,"name":"schemaChangeDoc","url":"classes/ceramiccliutils.html#schemachangedoc","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":55,"kind":2048,"name":"pinAdd","url":"classes/ceramiccliutils.html#pinadd","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":56,"kind":2048,"name":"pinRm","url":"classes/ceramiccliutils.html#pinrm","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":57,"kind":2048,"name":"pinLs","url":"classes/ceramiccliutils.html#pinls","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":58,"kind":2048,"name":"showConfig","url":"classes/ceramiccliutils.html#showconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":59,"kind":2048,"name":"setConfig","url":"classes/ceramiccliutils.html#setconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":60,"kind":2048,"name":"unsetConfig","url":"classes/ceramiccliutils.html#unsetconfig","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"CeramicCliUtils"},{"id":61,"kind":32,"name":"fs","url":"globals.html#fs","classes":"tsd-kind-variable"},{"id":62,"kind":32,"name":"DEFAULT_CLI_CONFIG_FILE","url":"globals.html#default_cli_config_file","classes":"tsd-kind-variable"},{"id":63,"kind":32,"name":"DEFAULT_PINNING_STORE_PATH","url":"globals.html#default_pinning_store_path","classes":"tsd-kind-variable"},{"id":64,"kind":32,"name":"DEFAULT_CLI_CONFIG_PATH","url":"globals.html#default_cli_config_path","classes":"tsd-kind-variable"},{"id":65,"kind":32,"name":"schemas","url":"globals.html#schemas","classes":"tsd-kind-variable"},{"id":66,"kind":32,"name":"pin","url":"globals.html#pin","classes":"tsd-kind-variable"},{"id":67,"kind":32,"name":"config","url":"globals.html#config","classes":"tsd-kind-variable"},{"id":68,"kind":256,"name":"PinApi","url":"interfaces/pinapi.html","classes":"tsd-kind-interface"},{"id":69,"kind":2048,"name":"add","url":"interfaces/pinapi.html#add","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":70,"kind":2048,"name":"rm","url":"interfaces/pinapi.html#rm","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":71,"kind":2048,"name":"ls","url":"interfaces/pinapi.html#ls","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"PinApi"},{"id":72,"kind":256,"name":"CeramicApi","url":"interfaces/ceramicapi.html","classes":"tsd-kind-interface"},{"id":73,"kind":1024,"name":"pin","url":"interfaces/ceramicapi.html#pin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":74,"kind":1024,"name":"did","url":"interfaces/ceramicapi.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicApi"},{"id":75,"kind":2048,"name":"addDoctypeHandler","url":"interfaces/ceramicapi.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":76,"kind":2048,"name":"findDoctypeHandler","url":"interfaces/ceramicapi.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":77,"kind":2048,"name":"createDocument","url":"interfaces/ceramicapi.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":78,"kind":2048,"name":"createDocumentFromGenesis","url":"interfaces/ceramicapi.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":79,"kind":2048,"name":"loadDocument","url":"interfaces/ceramicapi.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":80,"kind":2048,"name":"loadDocumentRecords","url":"interfaces/ceramicapi.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":81,"kind":2048,"name":"listVersions","url":"interfaces/ceramicapi.html#listversions","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":82,"kind":2048,"name":"applyRecord","url":"interfaces/ceramicapi.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter","parent":"CeramicApi"},{"id":83,"kind":2048,"name":"setDIDProvider","url":"interfaces/ceramicapi.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":84,"kind":2048,"name":"close","url":"interfaces/ceramicapi.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"CeramicApi"},{"id":85,"kind":256,"name":"Context","url":"interfaces/context.html","classes":"tsd-kind-interface"},{"id":86,"kind":1024,"name":"did","url":"interfaces/context.html#did","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":87,"kind":1024,"name":"ipfs","url":"interfaces/context.html#ipfs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":88,"kind":1024,"name":"resolver","url":"interfaces/context.html#resolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":89,"kind":1024,"name":"provider","url":"interfaces/context.html#provider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":90,"kind":1024,"name":"anchorService","url":"interfaces/context.html#anchorservice","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":91,"kind":1024,"name":"api","url":"interfaces/context.html#api","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Context"},{"id":92,"kind":4,"name":"SignatureStatus","url":"enums/signaturestatus.html","classes":"tsd-kind-enum"},{"id":93,"kind":16,"name":"GENESIS","url":"enums/signaturestatus.html#genesis","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":94,"kind":16,"name":"PARTIAL","url":"enums/signaturestatus.html#partial","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":95,"kind":16,"name":"SIGNED","url":"enums/signaturestatus.html#signed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"SignatureStatus"},{"id":96,"kind":4,"name":"AnchorStatus","url":"enums/anchorstatus.html","classes":"tsd-kind-enum"},{"id":97,"kind":16,"name":"NOT_REQUESTED","url":"enums/anchorstatus.html#not_requested","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":98,"kind":16,"name":"PENDING","url":"enums/anchorstatus.html#pending","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":99,"kind":16,"name":"PROCESSING","url":"enums/anchorstatus.html#processing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":100,"kind":16,"name":"ANCHORED","url":"enums/anchorstatus.html#anchored","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":101,"kind":16,"name":"FAILED","url":"enums/anchorstatus.html#failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"AnchorStatus"},{"id":102,"kind":256,"name":"AnchorRecord","url":"interfaces/anchorrecord.html","classes":"tsd-kind-interface"},{"id":103,"kind":1024,"name":"prev","url":"interfaces/anchorrecord.html#prev","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":104,"kind":1024,"name":"proof","url":"interfaces/anchorrecord.html#proof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":105,"kind":1024,"name":"path","url":"interfaces/anchorrecord.html#path","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorRecord"},{"id":106,"kind":256,"name":"AnchorProof","url":"interfaces/anchorproof.html","classes":"tsd-kind-interface"},{"id":107,"kind":1024,"name":"chainId","url":"interfaces/anchorproof.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":108,"kind":1024,"name":"blockNumber","url":"interfaces/anchorproof.html#blocknumber","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":109,"kind":1024,"name":"blockTimestamp","url":"interfaces/anchorproof.html#blocktimestamp","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":110,"kind":1024,"name":"txHash","url":"interfaces/anchorproof.html#txhash","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":111,"kind":1024,"name":"root","url":"interfaces/anchorproof.html#root","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorProof"},{"id":112,"kind":256,"name":"DocMetadata","url":"interfaces/docmetadata.html","classes":"tsd-kind-interface"},{"id":113,"kind":1024,"name":"controllers","url":"interfaces/docmetadata.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":114,"kind":1024,"name":"schema","url":"interfaces/docmetadata.html#schema","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":115,"kind":1024,"name":"tags","url":"interfaces/docmetadata.html#tags","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":116,"kind":1024,"name":"isUnique","url":"interfaces/docmetadata.html#isunique","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocMetadata"},{"id":117,"kind":256,"name":"DocParams","url":"interfaces/docparams.html","classes":"tsd-kind-interface"},{"id":118,"kind":1024,"name":"metadata","url":"interfaces/docparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocParams"},{"id":119,"kind":256,"name":"DocNext","url":"interfaces/docnext.html","classes":"tsd-kind-interface"},{"id":120,"kind":1024,"name":"content","url":"interfaces/docnext.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":121,"kind":1024,"name":"controllers","url":"interfaces/docnext.html#controllers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":122,"kind":1024,"name":"metadata","url":"interfaces/docnext.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocNext"},{"id":123,"kind":256,"name":"DocState","url":"interfaces/docstate.html","classes":"tsd-kind-interface"},{"id":124,"kind":1024,"name":"doctype","url":"interfaces/docstate.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":125,"kind":1024,"name":"content","url":"interfaces/docstate.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":126,"kind":1024,"name":"next","url":"interfaces/docstate.html#next","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":127,"kind":1024,"name":"metadata","url":"interfaces/docstate.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":128,"kind":1024,"name":"signature","url":"interfaces/docstate.html#signature","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":129,"kind":1024,"name":"anchorStatus","url":"interfaces/docstate.html#anchorstatus","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":130,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/docstate.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":131,"kind":1024,"name":"anchorProof","url":"interfaces/docstate.html#anchorproof","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":132,"kind":1024,"name":"log","url":"interfaces/docstate.html#log","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocState"},{"id":133,"kind":256,"name":"DocOpts","url":"interfaces/docopts.html","classes":"tsd-kind-interface"},{"id":134,"kind":1024,"name":"applyOnly","url":"interfaces/docopts.html#applyonly","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":135,"kind":1024,"name":"skipWait","url":"interfaces/docopts.html#skipwait","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DocOpts"},{"id":136,"kind":128,"name":"Doctype","url":"classes/doctype.html","classes":"tsd-kind-class"},{"id":137,"kind":512,"name":"constructor","url":"classes/doctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Doctype"},{"id":138,"kind":262144,"name":"id","url":"classes/doctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":139,"kind":262144,"name":"doctype","url":"classes/doctype.html#doctype-1","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":140,"kind":262144,"name":"content","url":"classes/doctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":141,"kind":262144,"name":"metadata","url":"classes/doctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":142,"kind":262144,"name":"controllers","url":"classes/doctype.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":143,"kind":262144,"name":"head","url":"classes/doctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Doctype"},{"id":144,"kind":262144,"name":"state","url":"classes/doctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":145,"kind":262144,"name":"context","url":"classes/doctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class","parent":"Doctype"},{"id":146,"kind":2048,"name":"change","url":"classes/doctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Doctype"},{"id":147,"kind":2048,"name":"addListener","url":"classes/doctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":148,"kind":2048,"name":"on","url":"classes/doctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":149,"kind":2048,"name":"once","url":"classes/doctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":150,"kind":2048,"name":"removeListener","url":"classes/doctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":151,"kind":2048,"name":"off","url":"classes/doctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":152,"kind":2048,"name":"removeAllListeners","url":"classes/doctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":153,"kind":2048,"name":"setMaxListeners","url":"classes/doctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":154,"kind":2048,"name":"getMaxListeners","url":"classes/doctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":155,"kind":2048,"name":"listeners","url":"classes/doctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":156,"kind":2048,"name":"rawListeners","url":"classes/doctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":157,"kind":2048,"name":"emit","url":"classes/doctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":158,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":159,"kind":2048,"name":"prependListener","url":"classes/doctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":160,"kind":2048,"name":"prependOnceListener","url":"classes/doctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":161,"kind":2048,"name":"eventNames","url":"classes/doctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Doctype"},{"id":162,"kind":2048,"name":"listenerCount","url":"classes/doctype.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":163,"kind":1024,"name":"defaultMaxListeners","url":"classes/doctype.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Doctype"},{"id":164,"kind":256,"name":"DoctypeConstructor","url":"interfaces/doctypeconstructor.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":165,"kind":512,"name":"constructor","url":"interfaces/doctypeconstructor.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":166,"kind":2048,"name":"makeGenesis","url":"interfaces/doctypeconstructor.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeConstructor"},{"id":167,"kind":256,"name":"DoctypeHandler","url":"interfaces/doctypehandler.html","classes":"tsd-kind-interface tsd-has-type-parameter"},{"id":168,"kind":1024,"name":"name","url":"interfaces/doctypehandler.html#name","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":169,"kind":1024,"name":"doctype","url":"interfaces/doctypehandler.html#doctype","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":170,"kind":2048,"name":"applyRecord","url":"interfaces/doctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"DoctypeHandler"},{"id":171,"kind":64,"name":"DoctypeStatic","url":"globals.html#doctypestatic","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":172,"kind":128,"name":"AnchorService","url":"classes/anchorservice.html","classes":"tsd-kind-class"},{"id":173,"kind":2048,"name":"requestAnchor","url":"classes/anchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":174,"kind":2048,"name":"validateChainInclusion","url":"classes/anchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorService"},{"id":175,"kind":2048,"name":"addListener","url":"classes/anchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":176,"kind":2048,"name":"on","url":"classes/anchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":177,"kind":2048,"name":"once","url":"classes/anchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":178,"kind":2048,"name":"removeListener","url":"classes/anchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":179,"kind":2048,"name":"off","url":"classes/anchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":180,"kind":2048,"name":"removeAllListeners","url":"classes/anchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":181,"kind":2048,"name":"setMaxListeners","url":"classes/anchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":182,"kind":2048,"name":"getMaxListeners","url":"classes/anchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":183,"kind":2048,"name":"listeners","url":"classes/anchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":184,"kind":2048,"name":"rawListeners","url":"classes/anchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":185,"kind":2048,"name":"emit","url":"classes/anchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":186,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":187,"kind":2048,"name":"prependListener","url":"classes/anchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":188,"kind":2048,"name":"prependOnceListener","url":"classes/anchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":189,"kind":2048,"name":"eventNames","url":"classes/anchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":190,"kind":512,"name":"constructor","url":"classes/anchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AnchorService"},{"id":191,"kind":2048,"name":"listenerCount","url":"classes/anchorservice.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":192,"kind":1024,"name":"defaultMaxListeners","url":"classes/anchorservice.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"AnchorService"},{"id":193,"kind":128,"name":"DoctypeUtils","url":"classes/doctypeutils.html","classes":"tsd-kind-class"},{"id":194,"kind":2048,"name":"serializeRecord","url":"classes/doctypeutils.html#serializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":195,"kind":2048,"name":"deserializeRecord","url":"classes/doctypeutils.html#deserializerecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":196,"kind":2048,"name":"serializeState","url":"classes/doctypeutils.html#serializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":197,"kind":2048,"name":"deserializeState","url":"classes/doctypeutils.html#deserializestate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":198,"kind":2048,"name":"makeReadOnly","url":"classes/doctypeutils.html#makereadonly","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"DoctypeUtils"},{"id":199,"kind":2048,"name":"convertRecordToDTO","url":"classes/doctypeutils.html#convertrecordtodto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":200,"kind":2048,"name":"isSignedRecordDTO","url":"classes/doctypeutils.html#issignedrecorddto","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":201,"kind":2048,"name":"isSignedRecord","url":"classes/doctypeutils.html#issignedrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":202,"kind":2048,"name":"isAnchorRecord","url":"classes/doctypeutils.html#isanchorrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DoctypeUtils"},{"id":203,"kind":256,"name":"Options","url":"interfaces/options.html","classes":"tsd-kind-interface"},{"id":204,"kind":1024,"name":"level","url":"interfaces/options.html#level","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":205,"kind":1024,"name":"format","url":"interfaces/options.html#format","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":206,"kind":1024,"name":"stacktrace","url":"interfaces/options.html#stacktrace","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":207,"kind":65536,"name":"__type","url":"interfaces/options.html#stacktrace.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"Options.stacktrace"},{"id":208,"kind":32,"name":"levels","url":"interfaces/options.html#stacktrace.__type.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":209,"kind":32,"name":"depth","url":"interfaces/options.html#stacktrace.__type.depth","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":210,"kind":32,"name":"excess","url":"interfaces/options.html#stacktrace.__type.excess","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"Options.stacktrace.__type"},{"id":211,"kind":1024,"name":"component","url":"interfaces/options.html#component","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"Options"},{"id":212,"kind":256,"name":"PluginOptions","url":"interfaces/pluginoptions.html","classes":"tsd-kind-interface"},{"id":213,"kind":128,"name":"LoggerProvider","url":"classes/loggerprovider.html","classes":"tsd-kind-class"},{"id":214,"kind":2048,"name":"init","url":"classes/loggerprovider.html#init","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":215,"kind":2048,"name":"addPlugin","url":"classes/loggerprovider.html#addplugin","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":216,"kind":2048,"name":"_toText","url":"classes/loggerprovider.html#_totext","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"LoggerProvider"},{"id":217,"kind":2097152,"name":"defaultOpts","url":"globals.html#defaultopts","classes":"tsd-kind-object-literal"},{"id":218,"kind":32,"name":"level","url":"globals.html#defaultopts.level","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":219,"kind":32,"name":"format","url":"globals.html#defaultopts.format","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":220,"kind":2097152,"name":"stacktrace","url":"globals.html#defaultopts.stacktrace","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"defaultOpts"},{"id":221,"kind":32,"name":"levels","url":"globals.html#defaultopts.stacktrace.levels","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":222,"kind":32,"name":"depth","url":"globals.html#defaultopts.stacktrace.depth","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":223,"kind":32,"name":"excess","url":"globals.html#defaultopts.stacktrace.excess","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"defaultOpts.stacktrace"},{"id":224,"kind":4194304,"name":"Plugin","url":"globals.html#plugin","classes":"tsd-kind-type-alias"},{"id":225,"kind":65536,"name":"__type","url":"globals.html#plugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Plugin"},{"id":226,"kind":256,"name":"AnchorServiceResponse","url":"interfaces/anchorserviceresponse.html","classes":"tsd-kind-interface"},{"id":227,"kind":1024,"name":"status","url":"interfaces/anchorserviceresponse.html#status","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":228,"kind":1024,"name":"message","url":"interfaces/anchorserviceresponse.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":229,"kind":1024,"name":"anchorScheduledFor","url":"interfaces/anchorserviceresponse.html#anchorscheduledfor","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":230,"kind":1024,"name":"anchorRecord","url":"interfaces/anchorserviceresponse.html#anchorrecord","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AnchorServiceResponse"},{"id":231,"kind":128,"name":"Utils","url":"classes/utils.html","classes":"tsd-kind-class"},{"id":232,"kind":1024,"name":"validator","url":"classes/utils.html#validator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":233,"kind":2048,"name":"awaitCondition","url":"classes/utils.html#awaitcondition","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":234,"kind":2048,"name":"isSchemaValid","url":"classes/utils.html#isschemavalid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":235,"kind":2048,"name":"validate","url":"classes/utils.html#validate","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":236,"kind":2048,"name":"validateDoctype","url":"classes/utils.html#validatedoctype","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Utils"},{"id":237,"kind":256,"name":"StateStore","url":"interfaces/statestore.html","classes":"tsd-kind-interface"},{"id":238,"kind":2048,"name":"open","url":"interfaces/statestore.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":239,"kind":2048,"name":"close","url":"interfaces/statestore.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":240,"kind":2048,"name":"save","url":"interfaces/statestore.html#save","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":241,"kind":2048,"name":"load","url":"interfaces/statestore.html#load","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":242,"kind":2048,"name":"exists","url":"interfaces/statestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":243,"kind":2048,"name":"list","url":"interfaces/statestore.html#list","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":244,"kind":2048,"name":"remove","url":"interfaces/statestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"StateStore"},{"id":245,"kind":256,"name":"Pinning","url":"interfaces/pinning.html","classes":"tsd-kind-interface"},{"id":246,"kind":2048,"name":"open","url":"interfaces/pinning.html#open","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":247,"kind":2048,"name":"close","url":"interfaces/pinning.html#close","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":248,"kind":2048,"name":"pin","url":"interfaces/pinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":249,"kind":2048,"name":"unpin","url":"interfaces/pinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-interface","parent":"Pinning"},{"id":250,"kind":256,"name":"PinningStatic","url":"interfaces/pinningstatic.html","classes":"tsd-kind-interface"},{"id":251,"kind":1024,"name":"designator","url":"interfaces/pinningstatic.html#designator","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"PinningStatic"},{"id":252,"kind":512,"name":"constructor","url":"interfaces/pinningstatic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-interface","parent":"PinningStatic"},{"id":253,"kind":128,"name":"PinStore","url":"classes/pinstore.html","classes":"tsd-kind-class"},{"id":254,"kind":512,"name":"constructor","url":"classes/pinstore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStore"},{"id":255,"kind":1024,"name":"stateStore","url":"classes/pinstore.html#statestore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":256,"kind":1024,"name":"pinning","url":"classes/pinstore.html#pinning","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":257,"kind":1024,"name":"retrieve","url":"classes/pinstore.html#retrieve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":258,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":259,"kind":1024,"name":"resolve","url":"classes/pinstore.html#resolve","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStore"},{"id":260,"kind":65536,"name":"__type","url":"classes/pinstore.html#__type","classes":"tsd-kind-type-literal tsd-parent-kind-class","parent":"PinStore"},{"id":261,"kind":2048,"name":"open","url":"classes/pinstore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":262,"kind":2048,"name":"close","url":"classes/pinstore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":263,"kind":2048,"name":"add","url":"classes/pinstore.html#add","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":264,"kind":2048,"name":"rm","url":"classes/pinstore.html#rm","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":265,"kind":2048,"name":"ls","url":"classes/pinstore.html#ls","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStore"},{"id":266,"kind":2048,"name":"pointsOfInterest","url":"classes/pinstore.html#pointsofinterest","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PinStore"},{"id":267,"kind":128,"name":"Document","url":"classes/document.html","classes":"tsd-kind-class"},{"id":268,"kind":1024,"name":"_context","url":"classes/document.html#_context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":269,"kind":1024,"name":"id","url":"classes/document.html#id","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":270,"kind":1024,"name":"version","url":"classes/document.html#version","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":271,"kind":512,"name":"constructor","url":"classes/document.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":272,"kind":1024,"name":"dispatcher","url":"classes/document.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":273,"kind":1024,"name":"pinStore","url":"classes/document.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":274,"kind":2048,"name":"create","url":"classes/document.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":275,"kind":2048,"name":"load","url":"classes/document.html#load","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":276,"kind":2048,"name":"validate","url":"classes/document.html#validate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":277,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":278,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Document"},{"id":279,"kind":2048,"name":"getVersion","url":"classes/document.html#getversion-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":280,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":281,"kind":2048,"name":"anchor","url":"classes/document.html#anchor","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":282,"kind":2048,"name":"loadSchema","url":"classes/document.html#loadschema","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":283,"kind":2048,"name":"loadSchemaById","url":"classes/document.html#loadschemabyid","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static","parent":"Document"},{"id":284,"kind":262144,"name":"content","url":"classes/document.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":285,"kind":262144,"name":"state","url":"classes/document.html#state","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":286,"kind":262144,"name":"doctype","url":"classes/document.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":287,"kind":262144,"name":"head","url":"classes/document.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":288,"kind":262144,"name":"controllers","url":"classes/document.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":289,"kind":262144,"name":"metadata","url":"classes/document.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":290,"kind":2048,"name":"wait","url":"classes/document.html#wait","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":291,"kind":2048,"name":"close","url":"classes/document.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":292,"kind":2048,"name":"toString","url":"classes/document.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":293,"kind":2048,"name":"addListener","url":"classes/document.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":294,"kind":2048,"name":"on","url":"classes/document.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":295,"kind":2048,"name":"once","url":"classes/document.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":296,"kind":2048,"name":"removeListener","url":"classes/document.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":297,"kind":2048,"name":"off","url":"classes/document.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":298,"kind":2048,"name":"removeAllListeners","url":"classes/document.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":299,"kind":2048,"name":"setMaxListeners","url":"classes/document.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":300,"kind":2048,"name":"getMaxListeners","url":"classes/document.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":301,"kind":2048,"name":"listeners","url":"classes/document.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":302,"kind":2048,"name":"rawListeners","url":"classes/document.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":303,"kind":2048,"name":"emit","url":"classes/document.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":304,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":305,"kind":2048,"name":"prependListener","url":"classes/document.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":306,"kind":2048,"name":"prependOnceListener","url":"classes/document.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":307,"kind":2048,"name":"eventNames","url":"classes/document.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"Document"},{"id":308,"kind":2048,"name":"listenerCount","url":"classes/document.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":309,"kind":1024,"name":"defaultMaxListeners","url":"classes/document.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Document"},{"id":310,"kind":4,"name":"MsgType","url":"enums/msgtype.html","classes":"tsd-kind-enum"},{"id":311,"kind":16,"name":"UPDATE","url":"enums/msgtype.html#update","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":312,"kind":16,"name":"REQUEST","url":"enums/msgtype.html#request","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":313,"kind":16,"name":"RESPONSE","url":"enums/msgtype.html#response","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"MsgType"},{"id":314,"kind":256,"name":"LogMessage","url":"interfaces/logmessage.html","classes":"tsd-kind-interface"},{"id":315,"kind":1024,"name":"peer","url":"interfaces/logmessage.html#peer","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":316,"kind":1024,"name":"event","url":"interfaces/logmessage.html#event","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":317,"kind":1024,"name":"topic","url":"interfaces/logmessage.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":318,"kind":1024,"name":"from","url":"interfaces/logmessage.html#from","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":319,"kind":1024,"name":"message","url":"interfaces/logmessage.html#message","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"LogMessage"},{"id":320,"kind":128,"name":"Dispatcher","url":"classes/dispatcher.html","classes":"tsd-kind-class"},{"id":321,"kind":512,"name":"constructor","url":"classes/dispatcher.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"Dispatcher"},{"id":322,"kind":1024,"name":"_ipfs","url":"classes/dispatcher.html#_ipfs","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":323,"kind":1024,"name":"topic","url":"classes/dispatcher.html#topic","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Dispatcher"},{"id":324,"kind":2048,"name":"init","url":"classes/dispatcher.html#init","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":325,"kind":2048,"name":"register","url":"classes/dispatcher.html#register","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":326,"kind":2048,"name":"unregister","url":"classes/dispatcher.html#unregister","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":327,"kind":2048,"name":"storeRecord","url":"classes/dispatcher.html#storerecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":328,"kind":2048,"name":"retrieveRecord","url":"classes/dispatcher.html#retrieverecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":329,"kind":2048,"name":"publishHead","url":"classes/dispatcher.html#publishhead","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":330,"kind":2048,"name":"handleMessage","url":"classes/dispatcher.html#handlemessage","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":331,"kind":2048,"name":"close","url":"classes/dispatcher.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Dispatcher"},{"id":332,"kind":2048,"name":"addListener","url":"classes/dispatcher.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":333,"kind":2048,"name":"on","url":"classes/dispatcher.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":334,"kind":2048,"name":"once","url":"classes/dispatcher.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":335,"kind":2048,"name":"removeListener","url":"classes/dispatcher.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":336,"kind":2048,"name":"off","url":"classes/dispatcher.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":337,"kind":2048,"name":"removeAllListeners","url":"classes/dispatcher.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":338,"kind":2048,"name":"setMaxListeners","url":"classes/dispatcher.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":339,"kind":2048,"name":"getMaxListeners","url":"classes/dispatcher.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":340,"kind":2048,"name":"listeners","url":"classes/dispatcher.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":341,"kind":2048,"name":"rawListeners","url":"classes/dispatcher.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":342,"kind":2048,"name":"emit","url":"classes/dispatcher.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":343,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":344,"kind":2048,"name":"prependListener","url":"classes/dispatcher.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":345,"kind":2048,"name":"prependOnceListener","url":"classes/dispatcher.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":346,"kind":2048,"name":"eventNames","url":"classes/dispatcher.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"Dispatcher"},{"id":347,"kind":2048,"name":"listenerCount","url":"classes/dispatcher.html#listenercount-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":348,"kind":1024,"name":"defaultMaxListeners","url":"classes/dispatcher.html#defaultmaxlisteners","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"Dispatcher"},{"id":349,"kind":32,"name":"TOPIC","url":"globals.html#topic","classes":"tsd-kind-variable"},{"id":350,"kind":128,"name":"MockAnchorService","url":"classes/mockanchorservice.html","classes":"tsd-kind-class"},{"id":351,"kind":512,"name":"constructor","url":"classes/mockanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"MockAnchorService"},{"id":352,"kind":2048,"name":"requestAnchor","url":"classes/mockanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":353,"kind":2048,"name":"validateChainInclusion","url":"classes/mockanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"MockAnchorService"},{"id":354,"kind":2048,"name":"addListener","url":"classes/mockanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":355,"kind":2048,"name":"on","url":"classes/mockanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":356,"kind":2048,"name":"once","url":"classes/mockanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":357,"kind":2048,"name":"removeListener","url":"classes/mockanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":358,"kind":2048,"name":"off","url":"classes/mockanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":359,"kind":2048,"name":"removeAllListeners","url":"classes/mockanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":360,"kind":2048,"name":"setMaxListeners","url":"classes/mockanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":361,"kind":2048,"name":"getMaxListeners","url":"classes/mockanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":362,"kind":2048,"name":"listeners","url":"classes/mockanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":363,"kind":2048,"name":"rawListeners","url":"classes/mockanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":364,"kind":2048,"name":"emit","url":"classes/mockanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":365,"kind":2048,"name":"listenerCount","url":"classes/mockanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":366,"kind":2048,"name":"prependListener","url":"classes/mockanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":367,"kind":2048,"name":"prependOnceListener","url":"classes/mockanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":368,"kind":2048,"name":"eventNames","url":"classes/mockanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"MockAnchorService"},{"id":369,"kind":128,"name":"LevelStateStore","url":"classes/levelstatestore.html","classes":"tsd-kind-class"},{"id":370,"kind":512,"name":"constructor","url":"classes/levelstatestore.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"LevelStateStore"},{"id":371,"kind":262144,"name":"store","url":"classes/levelstatestore.html#store","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"LevelStateStore"},{"id":372,"kind":2048,"name":"open","url":"classes/levelstatestore.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":373,"kind":2048,"name":"save","url":"classes/levelstatestore.html#save","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":374,"kind":2048,"name":"load","url":"classes/levelstatestore.html#load","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":375,"kind":2048,"name":"exists","url":"classes/levelstatestore.html#exists","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":376,"kind":2048,"name":"remove","url":"classes/levelstatestore.html#remove","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":377,"kind":2048,"name":"list","url":"classes/levelstatestore.html#list","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":378,"kind":2048,"name":"close","url":"classes/levelstatestore.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"LevelStateStore"},{"id":379,"kind":128,"name":"IpfsPinning","url":"classes/ipfspinning.html","classes":"tsd-kind-class"},{"id":380,"kind":1024,"name":"designator","url":"classes/ipfspinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"IpfsPinning"},{"id":381,"kind":1024,"name":"ipfsAddress","url":"classes/ipfspinning.html#ipfsaddress","classes":"tsd-kind-property tsd-parent-kind-class","parent":"IpfsPinning"},{"id":382,"kind":512,"name":"constructor","url":"classes/ipfspinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"IpfsPinning"},{"id":383,"kind":262144,"name":"ipfs","url":"classes/ipfspinning.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"IpfsPinning"},{"id":384,"kind":2048,"name":"open","url":"classes/ipfspinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":385,"kind":2048,"name":"close","url":"classes/ipfspinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":386,"kind":2048,"name":"pin","url":"classes/ipfspinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":387,"kind":2048,"name":"unpin","url":"classes/ipfspinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"IpfsPinning"},{"id":388,"kind":32,"name":"FROM_CONTEXT","url":"globals.html#from_context","classes":"tsd-kind-variable"},{"id":389,"kind":128,"name":"EmptyTokenError","url":"classes/emptytokenerror.html","classes":"tsd-kind-class"},{"id":390,"kind":512,"name":"constructor","url":"classes/emptytokenerror.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EmptyTokenError"},{"id":391,"kind":1024,"name":"name","url":"classes/emptytokenerror.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":392,"kind":1024,"name":"message","url":"classes/emptytokenerror.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"EmptyTokenError"},{"id":393,"kind":1024,"name":"stack","url":"classes/emptytokenerror.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"EmptyTokenError"},{"id":394,"kind":1024,"name":"Error","url":"classes/emptytokenerror.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"EmptyTokenError"},{"id":395,"kind":4,"name":"JobStatus","url":"enums/jobstatus.html","classes":"tsd-kind-enum"},{"id":396,"kind":16,"name":"JOB_STATUS_UNSPECIFIED","url":"enums/jobstatus.html#job_status_unspecified","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":397,"kind":16,"name":"JOB_STATUS_QUEUED","url":"enums/jobstatus.html#job_status_queued","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":398,"kind":16,"name":"JOB_STATUS_EXECUTING","url":"enums/jobstatus.html#job_status_executing","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":399,"kind":16,"name":"JOB_STATUS_FAILED","url":"enums/jobstatus.html#job_status_failed","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":400,"kind":16,"name":"JOB_STATUS_CANCELED","url":"enums/jobstatus.html#job_status_canceled","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":401,"kind":16,"name":"JOB_STATUS_SUCCESS","url":"enums/jobstatus.html#job_status_success","classes":"tsd-kind-enum-member tsd-parent-kind-enum","parent":"JobStatus"},{"id":402,"kind":128,"name":"PowergatePinning","url":"classes/powergatepinning.html","classes":"tsd-kind-class"},{"id":403,"kind":1024,"name":"designator","url":"classes/powergatepinning.html#designator","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"PowergatePinning"},{"id":404,"kind":1024,"name":"endpoint","url":"classes/powergatepinning.html#endpoint","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":405,"kind":1024,"name":"token","url":"classes/powergatepinning.html#token","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PowergatePinning"},{"id":406,"kind":512,"name":"constructor","url":"classes/powergatepinning.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PowergatePinning"},{"id":407,"kind":262144,"name":"pow","url":"classes/powergatepinning.html#pow","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"PowergatePinning"},{"id":408,"kind":2048,"name":"open","url":"classes/powergatepinning.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":409,"kind":2048,"name":"close","url":"classes/powergatepinning.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":410,"kind":2048,"name":"pin","url":"classes/powergatepinning.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":411,"kind":2048,"name":"unpin","url":"classes/powergatepinning.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PowergatePinning"},{"id":412,"kind":2048,"name":"waitForJobStatus","url":"classes/powergatepinning.html#waitforjobstatus","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-protected","parent":"PowergatePinning"},{"id":413,"kind":128,"name":"UnknownPinningService","url":"classes/unknownpinningservice.html","classes":"tsd-kind-class"},{"id":414,"kind":512,"name":"constructor","url":"classes/unknownpinningservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"UnknownPinningService"},{"id":415,"kind":1024,"name":"name","url":"classes/unknownpinningservice.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":416,"kind":1024,"name":"message","url":"classes/unknownpinningservice.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"UnknownPinningService"},{"id":417,"kind":1024,"name":"stack","url":"classes/unknownpinningservice.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"UnknownPinningService"},{"id":418,"kind":1024,"name":"Error","url":"classes/unknownpinningservice.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"UnknownPinningService"},{"id":419,"kind":128,"name":"PinningAggregation","url":"classes/pinningaggregation.html","classes":"tsd-kind-class"},{"id":420,"kind":1024,"name":"backends","url":"classes/pinningaggregation.html#backends","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinningAggregation"},{"id":421,"kind":512,"name":"constructor","url":"classes/pinningaggregation.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinningAggregation"},{"id":422,"kind":2048,"name":"open","url":"classes/pinningaggregation.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":423,"kind":2048,"name":"close","url":"classes/pinningaggregation.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":424,"kind":2048,"name":"pin","url":"classes/pinningaggregation.html#pin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":425,"kind":2048,"name":"unpin","url":"classes/pinningaggregation.html#unpin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinningAggregation"},{"id":426,"kind":128,"name":"PinStoreFactory","url":"classes/pinstorefactory.html","classes":"tsd-kind-class"},{"id":427,"kind":1024,"name":"stateStorePath","url":"classes/pinstorefactory.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":428,"kind":1024,"name":"pinnings","url":"classes/pinstorefactory.html#pinnings","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":429,"kind":512,"name":"constructor","url":"classes/pinstorefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":430,"kind":1024,"name":"context","url":"classes/pinstorefactory.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":431,"kind":2048,"name":"open","url":"classes/pinstorefactory.html#open","classes":"tsd-kind-method tsd-parent-kind-class","parent":"PinStoreFactory"},{"id":432,"kind":256,"name":"CeramicConfig","url":"interfaces/ceramicconfig.html","classes":"tsd-kind-interface"},{"id":433,"kind":1024,"name":"ethereumRpcUrl","url":"interfaces/ceramicconfig.html#ethereumrpcurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":434,"kind":1024,"name":"anchorServiceUrl","url":"interfaces/ceramicconfig.html#anchorserviceurl","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":435,"kind":1024,"name":"stateStorePath","url":"interfaces/ceramicconfig.html#statestorepath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":436,"kind":1024,"name":"didResolver","url":"interfaces/ceramicconfig.html#didresolver","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":437,"kind":1024,"name":"didProvider","url":"interfaces/ceramicconfig.html#didprovider","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":438,"kind":1024,"name":"validateDocs","url":"interfaces/ceramicconfig.html#validatedocs","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":439,"kind":1024,"name":"pinning","url":"interfaces/ceramicconfig.html#pinning","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":440,"kind":1024,"name":"logLevel","url":"interfaces/ceramicconfig.html#loglevel","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":441,"kind":1024,"name":"logToFiles","url":"interfaces/ceramicconfig.html#logtofiles","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":442,"kind":1024,"name":"logToFilesPlugin","url":"interfaces/ceramicconfig.html#logtofilesplugin","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":443,"kind":65536,"name":"__type","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"CeramicConfig.logToFilesPlugin"},{"id":444,"kind":32,"name":"plugin","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.plugin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":445,"kind":32,"name":"options","url":"interfaces/ceramicconfig.html#logtofilesplugin.__type.options","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"CeramicConfig.logToFilesPlugin.__type"},{"id":446,"kind":1024,"name":"gateway","url":"interfaces/ceramicconfig.html#gateway","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":447,"kind":1024,"name":"topic","url":"interfaces/ceramicconfig.html#topic","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CeramicConfig"},{"id":448,"kind":1024,"name":"pin","url":"classes/ceramic.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":449,"kind":1024,"name":"context","url":"classes/ceramic.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":450,"kind":512,"name":"constructor","url":"classes/ceramic.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"Ceramic"},{"id":451,"kind":1024,"name":"dispatcher","url":"classes/ceramic.html#dispatcher","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":452,"kind":1024,"name":"pinStore","url":"classes/ceramic.html#pinstore","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Ceramic"},{"id":453,"kind":262144,"name":"ipfs","url":"classes/ceramic.html#ipfs","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":454,"kind":262144,"name":"did","url":"classes/ceramic.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"Ceramic"},{"id":455,"kind":2048,"name":"create","url":"classes/ceramic.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Ceramic"},{"id":456,"kind":2048,"name":"findHandler","url":"classes/ceramic.html#findhandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":457,"kind":2048,"name":"setDIDProvider","url":"classes/ceramic.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":458,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramic.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":459,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramic.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":460,"kind":2048,"name":"applyRecord","url":"classes/ceramic.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":461,"kind":2048,"name":"getDocFromMap","url":"classes/ceramic.html#getdocfrommap","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":462,"kind":2048,"name":"createDocument","url":"classes/ceramic.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":463,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramic.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"Ceramic"},{"id":464,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramic.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":465,"kind":2048,"name":"_loadDoc","url":"classes/ceramic.html#_loaddoc","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":466,"kind":2048,"name":"listVersions","url":"classes/ceramic.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":467,"kind":2048,"name":"close","url":"classes/ceramic.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Ceramic"},{"id":468,"kind":64,"name":"normalizeDocID","url":"globals.html#normalizedocid","classes":"tsd-kind-function"},{"id":469,"kind":256,"name":"CidDoc","url":"interfaces/ciddoc.html","classes":"tsd-kind-interface"},{"id":470,"kind":1024,"name":"cid","url":"interfaces/ciddoc.html#cid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":471,"kind":1024,"name":"docId","url":"interfaces/ciddoc.html#docid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"CidDoc"},{"id":472,"kind":256,"name":"EthNetwork","url":"interfaces/ethnetwork.html","classes":"tsd-kind-interface"},{"id":473,"kind":1024,"name":"network","url":"interfaces/ethnetwork.html#network","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":474,"kind":1024,"name":"chain","url":"interfaces/ethnetwork.html#chain","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":475,"kind":1024,"name":"chainId","url":"interfaces/ethnetwork.html#chainid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":476,"kind":1024,"name":"networkId","url":"interfaces/ethnetwork.html#networkid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":477,"kind":1024,"name":"type","url":"interfaces/ethnetwork.html#type","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"EthNetwork"},{"id":478,"kind":128,"name":"EthereumAnchorService","url":"classes/ethereumanchorservice.html","classes":"tsd-kind-class"},{"id":479,"kind":512,"name":"constructor","url":"classes/ethereumanchorservice.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"EthereumAnchorService"},{"id":480,"kind":2048,"name":"requestAnchor","url":"classes/ethereumanchorservice.html#requestanchor","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":481,"kind":2048,"name":"validateChainInclusion","url":"classes/ethereumanchorservice.html#validatechaininclusion","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"EthereumAnchorService"},{"id":482,"kind":2048,"name":"addListener","url":"classes/ethereumanchorservice.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":483,"kind":2048,"name":"on","url":"classes/ethereumanchorservice.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":484,"kind":2048,"name":"once","url":"classes/ethereumanchorservice.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":485,"kind":2048,"name":"removeListener","url":"classes/ethereumanchorservice.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":486,"kind":2048,"name":"off","url":"classes/ethereumanchorservice.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":487,"kind":2048,"name":"removeAllListeners","url":"classes/ethereumanchorservice.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":488,"kind":2048,"name":"setMaxListeners","url":"classes/ethereumanchorservice.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":489,"kind":2048,"name":"getMaxListeners","url":"classes/ethereumanchorservice.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":490,"kind":2048,"name":"listeners","url":"classes/ethereumanchorservice.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":491,"kind":2048,"name":"rawListeners","url":"classes/ethereumanchorservice.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":492,"kind":2048,"name":"emit","url":"classes/ethereumanchorservice.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":493,"kind":2048,"name":"listenerCount","url":"classes/ethereumanchorservice.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":494,"kind":2048,"name":"prependListener","url":"classes/ethereumanchorservice.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":495,"kind":2048,"name":"prependOnceListener","url":"classes/ethereumanchorservice.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":496,"kind":2048,"name":"eventNames","url":"classes/ethereumanchorservice.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"EthereumAnchorService"},{"id":497,"kind":32,"name":"DEFAULT_POLL_TIME","url":"globals.html#default_poll_time","classes":"tsd-kind-variable"},{"id":498,"kind":32,"name":"DEFAULT_MAX_POLL_TIME","url":"globals.html#default_max_poll_time","classes":"tsd-kind-variable"},{"id":499,"kind":2097152,"name":"ETH_CHAIN_ID_MAPPINGS","url":"globals.html#eth_chain_id_mappings","classes":"tsd-kind-object-literal"},{"id":500,"kind":2097152,"name":"eip155:1","url":"globals.html#eth_chain_id_mappings.eip155_1","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":501,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_1.network","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":502,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_1.chain","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":503,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_1.chainid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":504,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_1.networkid","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":505,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_1.type","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:1"},{"id":506,"kind":2097152,"name":"eip155:3","url":"globals.html#eth_chain_id_mappings.eip155_3","classes":"tsd-kind-object-literal tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS"},{"id":507,"kind":32,"name":"network","url":"globals.html#eth_chain_id_mappings.eip155_3.network-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":508,"kind":32,"name":"chain","url":"globals.html#eth_chain_id_mappings.eip155_3.chain-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":509,"kind":32,"name":"chainId","url":"globals.html#eth_chain_id_mappings.eip155_3.chainid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":510,"kind":32,"name":"networkId","url":"globals.html#eth_chain_id_mappings.eip155_3.networkid-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":511,"kind":32,"name":"type","url":"globals.html#eth_chain_id_mappings.eip155_3.type-1","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"ETH_CHAIN_ID_MAPPINGS.eip155:3"},{"id":512,"kind":128,"name":"AnchorServiceFactory","url":"classes/anchorservicefactory.html","classes":"tsd-kind-class"},{"id":513,"kind":512,"name":"constructor","url":"classes/anchorservicefactory.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":514,"kind":2048,"name":"get","url":"classes/anchorservicefactory.html#get","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AnchorServiceFactory"},{"id":515,"kind":256,"name":"AccountLinkParams","url":"interfaces/accountlinkparams.html","classes":"tsd-kind-interface"},{"id":516,"kind":1024,"name":"content","url":"interfaces/accountlinkparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"AccountLinkParams"},{"id":517,"kind":1024,"name":"metadata","url":"interfaces/accountlinkparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"AccountLinkParams"},{"id":518,"kind":128,"name":"AccountLinkDoctype","url":"classes/accountlinkdoctype.html","classes":"tsd-kind-class"},{"id":519,"kind":2048,"name":"change","url":"classes/accountlinkdoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"AccountLinkDoctype"},{"id":520,"kind":2048,"name":"create","url":"classes/accountlinkdoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":521,"kind":2048,"name":"makeGenesis","url":"classes/accountlinkdoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"AccountLinkDoctype"},{"id":522,"kind":512,"name":"constructor","url":"classes/accountlinkdoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":523,"kind":262144,"name":"id","url":"classes/accountlinkdoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":524,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":525,"kind":262144,"name":"content","url":"classes/accountlinkdoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":526,"kind":262144,"name":"metadata","url":"classes/accountlinkdoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":527,"kind":262144,"name":"controllers","url":"classes/accountlinkdoctype.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":528,"kind":262144,"name":"head","url":"classes/accountlinkdoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":529,"kind":262144,"name":"state","url":"classes/accountlinkdoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":530,"kind":262144,"name":"context","url":"classes/accountlinkdoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":531,"kind":2048,"name":"addListener","url":"classes/accountlinkdoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":532,"kind":2048,"name":"on","url":"classes/accountlinkdoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":533,"kind":2048,"name":"once","url":"classes/accountlinkdoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":534,"kind":2048,"name":"removeListener","url":"classes/accountlinkdoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":535,"kind":2048,"name":"off","url":"classes/accountlinkdoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":536,"kind":2048,"name":"removeAllListeners","url":"classes/accountlinkdoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":537,"kind":2048,"name":"setMaxListeners","url":"classes/accountlinkdoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":538,"kind":2048,"name":"getMaxListeners","url":"classes/accountlinkdoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":539,"kind":2048,"name":"listeners","url":"classes/accountlinkdoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":540,"kind":2048,"name":"rawListeners","url":"classes/accountlinkdoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":541,"kind":2048,"name":"emit","url":"classes/accountlinkdoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":542,"kind":2048,"name":"listenerCount","url":"classes/accountlinkdoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":543,"kind":2048,"name":"prependListener","url":"classes/accountlinkdoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":544,"kind":2048,"name":"prependOnceListener","url":"classes/accountlinkdoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":545,"kind":2048,"name":"eventNames","url":"classes/accountlinkdoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"AccountLinkDoctype"},{"id":546,"kind":32,"name":"DOCTYPE","url":"globals.html#doctype","classes":"tsd-kind-variable"},{"id":547,"kind":128,"name":"AccountLinkDoctypeHandler","url":"classes/accountlinkdoctypehandler.html","classes":"tsd-kind-class"},{"id":548,"kind":262144,"name":"name","url":"classes/accountlinkdoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":549,"kind":262144,"name":"doctype","url":"classes/accountlinkdoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":550,"kind":2048,"name":"create","url":"classes/accountlinkdoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":551,"kind":2048,"name":"applyRecord","url":"classes/accountlinkdoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"AccountLinkDoctypeHandler"},{"id":552,"kind":256,"name":"TileParams","url":"interfaces/tileparams.html","classes":"tsd-kind-interface"},{"id":553,"kind":1024,"name":"content","url":"interfaces/tileparams.html#content","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"TileParams"},{"id":554,"kind":1024,"name":"metadata","url":"interfaces/tileparams.html#metadata","classes":"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited","parent":"TileParams"},{"id":555,"kind":128,"name":"TileDoctype","url":"classes/tiledoctype.html","classes":"tsd-kind-class"},{"id":556,"kind":2048,"name":"change","url":"classes/tiledoctype.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"TileDoctype"},{"id":557,"kind":2048,"name":"create","url":"classes/tiledoctype.html#create","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":558,"kind":2048,"name":"makeGenesis","url":"classes/tiledoctype.html#makegenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"TileDoctype"},{"id":559,"kind":512,"name":"constructor","url":"classes/tiledoctype.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":560,"kind":262144,"name":"id","url":"classes/tiledoctype.html#id","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":561,"kind":262144,"name":"doctype","url":"classes/tiledoctype.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":562,"kind":262144,"name":"content","url":"classes/tiledoctype.html#content","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":563,"kind":262144,"name":"metadata","url":"classes/tiledoctype.html#metadata","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":564,"kind":262144,"name":"controllers","url":"classes/tiledoctype.html#controllers","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":565,"kind":262144,"name":"head","url":"classes/tiledoctype.html#head","classes":"tsd-kind-get-signature tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":566,"kind":262144,"name":"state","url":"classes/tiledoctype.html#state","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":567,"kind":262144,"name":"context","url":"classes/tiledoctype.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":568,"kind":2048,"name":"addListener","url":"classes/tiledoctype.html#addlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":569,"kind":2048,"name":"on","url":"classes/tiledoctype.html#on","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":570,"kind":2048,"name":"once","url":"classes/tiledoctype.html#once","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":571,"kind":2048,"name":"removeListener","url":"classes/tiledoctype.html#removelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":572,"kind":2048,"name":"off","url":"classes/tiledoctype.html#off","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":573,"kind":2048,"name":"removeAllListeners","url":"classes/tiledoctype.html#removealllisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":574,"kind":2048,"name":"setMaxListeners","url":"classes/tiledoctype.html#setmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":575,"kind":2048,"name":"getMaxListeners","url":"classes/tiledoctype.html#getmaxlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":576,"kind":2048,"name":"listeners","url":"classes/tiledoctype.html#listeners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":577,"kind":2048,"name":"rawListeners","url":"classes/tiledoctype.html#rawlisteners","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":578,"kind":2048,"name":"emit","url":"classes/tiledoctype.html#emit","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":579,"kind":2048,"name":"listenerCount","url":"classes/tiledoctype.html#listenercount","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":580,"kind":2048,"name":"prependListener","url":"classes/tiledoctype.html#prependlistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":581,"kind":2048,"name":"prependOnceListener","url":"classes/tiledoctype.html#prependoncelistener","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":582,"kind":2048,"name":"eventNames","url":"classes/tiledoctype.html#eventnames","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited","parent":"TileDoctype"},{"id":583,"kind":128,"name":"TileDoctypeHandler","url":"classes/tiledoctypehandler.html","classes":"tsd-kind-class"},{"id":584,"kind":262144,"name":"name","url":"classes/tiledoctypehandler.html#name","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":585,"kind":262144,"name":"doctype","url":"classes/tiledoctypehandler.html#doctype","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":586,"kind":2048,"name":"create","url":"classes/tiledoctypehandler.html#create","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":587,"kind":2048,"name":"applyRecord","url":"classes/tiledoctypehandler.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":588,"kind":2048,"name":"verifyJWS","url":"classes/tiledoctypehandler.html#verifyjws","classes":"tsd-kind-method tsd-parent-kind-class","parent":"TileDoctypeHandler"},{"id":589,"kind":64,"name":"fetchJson","url":"globals.html#fetchjson","classes":"tsd-kind-function"},{"id":590,"kind":64,"name":"typeDocID","url":"globals.html#typedocid","classes":"tsd-kind-function"},{"id":591,"kind":1024,"name":"doctypeHandler","url":"classes/document.html#doctypehandler","classes":"tsd-kind-property tsd-parent-kind-class","parent":"Document"},{"id":592,"kind":2048,"name":"createFromGenesis","url":"classes/document.html#createfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":593,"kind":2048,"name":"applyRecord","url":"classes/document.html#applyrecord-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":594,"kind":2048,"name":"listVersions","url":"classes/document.html#listversions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":595,"kind":2048,"name":"loadDocumentRecords","url":"classes/document.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"Document"},{"id":596,"kind":2048,"name":"change","url":"classes/document.html#change","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite","parent":"Document"},{"id":597,"kind":2048,"name":"_syncState","url":"classes/document.html#_syncstate","classes":"tsd-kind-method tsd-parent-kind-class","parent":"Document"},{"id":598,"kind":262144,"name":"context","url":"classes/document.html#context","classes":"tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited","parent":"Document"},{"id":599,"kind":64,"name":"docIdUrl","url":"globals.html#docidurl","classes":"tsd-kind-function"},{"id":600,"kind":128,"name":"CeramicClient","url":"classes/ceramicclient.html","classes":"tsd-kind-class"},{"id":601,"kind":1024,"name":"pin","url":"classes/ceramicclient.html#pin","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":602,"kind":1024,"name":"context","url":"classes/ceramicclient.html#context","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":603,"kind":1024,"name":"_doctypeHandlers","url":"classes/ceramicclient.html#_doctypehandlers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"CeramicClient"},{"id":604,"kind":512,"name":"constructor","url":"classes/ceramicclient.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"CeramicClient"},{"id":605,"kind":262144,"name":"did","url":"classes/ceramicclient.html#did","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"CeramicClient"},{"id":606,"kind":2048,"name":"_initPinApi","url":"classes/ceramicclient.html#_initpinapi","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":607,"kind":2048,"name":"createDocument","url":"classes/ceramicclient.html#createdocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":608,"kind":2048,"name":"createDocumentFromGenesis","url":"classes/ceramicclient.html#createdocumentfromgenesis","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":609,"kind":2048,"name":"loadDocument","url":"classes/ceramicclient.html#loaddocument","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":610,"kind":2048,"name":"loadDocumentRecords","url":"classes/ceramicclient.html#loaddocumentrecords","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":611,"kind":2048,"name":"applyRecord","url":"classes/ceramicclient.html#applyrecord","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":612,"kind":2048,"name":"listVersions","url":"classes/ceramicclient.html#listversions","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":613,"kind":2048,"name":"addDoctypeHandler","url":"classes/ceramicclient.html#adddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":614,"kind":2048,"name":"findDoctypeHandler","url":"classes/ceramicclient.html#finddoctypehandler","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"CeramicClient"},{"id":615,"kind":2048,"name":"setDIDProvider","url":"classes/ceramicclient.html#setdidprovider","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":616,"kind":2048,"name":"close","url":"classes/ceramicclient.html#close","classes":"tsd-kind-method tsd-parent-kind-class","parent":"CeramicClient"},{"id":617,"kind":32,"name":"CERAMIC_HOST","url":"globals.html#ceramic_host","classes":"tsd-kind-variable"},{"id":618,"kind":32,"name":"API_PATH","url":"globals.html#api_path","classes":"tsd-kind-variable"},{"id":619,"kind":2097152,"name":"table","url":"globals.html#table","classes":"tsd-kind-object-literal"},{"id":620,"kind":32,"name":"tile","url":"globals.html#table.tile","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":621,"kind":32,"name":"caip10-link","url":"globals.html#table.caip10_link","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"table"},{"id":622,"kind":128,"name":"DocID","url":"classes/docid.html","classes":"tsd-kind-class"},{"id":623,"kind":512,"name":"constructor","url":"classes/docid.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"DocID"},{"id":624,"kind":2048,"name":"fromBytes","url":"classes/docid.html#frombytes","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":625,"kind":2048,"name":"_genesisCIDLength","url":"classes/docid.html#_genesiscidlength","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":626,"kind":2048,"name":"fromString","url":"classes/docid.html#fromstring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":627,"kind":262144,"name":"baseID","url":"classes/docid.html#baseid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":628,"kind":262144,"name":"type","url":"classes/docid.html#type","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":629,"kind":262144,"name":"typeName","url":"classes/docid.html#typename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":630,"kind":262144,"name":"cid","url":"classes/docid.html#cid","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":631,"kind":262144,"name":"version","url":"classes/docid.html#version","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":632,"kind":262144,"name":"multibaseName","url":"classes/docid.html#multibasename","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":633,"kind":262144,"name":"multihash","url":"classes/docid.html#multihash","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":634,"kind":262144,"name":"codec","url":"classes/docid.html#codec","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":635,"kind":262144,"name":"bytes","url":"classes/docid.html#bytes","classes":"tsd-kind-get-signature tsd-parent-kind-class","parent":"DocID"},{"id":636,"kind":2048,"name":"equals","url":"classes/docid.html#equals","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":637,"kind":2048,"name":"toBaseEncodedString","url":"classes/docid.html#tobaseencodedstring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":638,"kind":2048,"name":"toString","url":"classes/docid.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":639,"kind":2048,"name":"toUrl","url":"classes/docid.html#tourl","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":640,"kind":2048,"name":"[Symbol.for('nodejs.util.inspect.custom')]","url":"classes/docid.html#_symbol_for__nodejs_util_inspect_custom___","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":641,"kind":2048,"name":"[Symbol.toPrimitive]","url":"classes/docid.html#_symbol_toprimitive_","classes":"tsd-kind-method tsd-parent-kind-class","parent":"DocID"},{"id":642,"kind":2048,"name":"isDocID","url":"classes/docid.html#isdocid","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"DocID"},{"id":643,"kind":32,"name":"DOCID_CODEC","url":"globals.html#docid_codec","classes":"tsd-kind-variable"},{"id":644,"kind":64,"name":"getKey","url":"globals.html#getkey","classes":"tsd-kind-function"},{"id":645,"kind":64,"name":"keyToDidDoc","url":"globals.html#keytodiddoc","classes":"tsd-kind-function"},{"id":646,"kind":2097152,"name":"prefixToDriverMap","url":"globals.html#prefixtodrivermap","classes":"tsd-kind-object-literal"},{"id":647,"kind":32,"name":"231","url":"globals.html#prefixtodrivermap.231","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"prefixToDriverMap"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,33.205]],["parent/0",[]],["name/1",[1,52.26]],["parent/1",[0,3.111]],["name/2",[2,60.738]],["parent/2",[]],["name/3",[3,60.738]],["parent/3",[]],["name/4",[4,49.745]],["parent/4",[]],["name/5",[5,60.738]],["parent/5",[4,4.66]],["name/6",[6,38.752]],["parent/6",[]],["name/7",[7,60.738]],["parent/7",[6,3.63]],["name/8",[8,49.745]],["parent/8",[6,3.63]],["name/9",[9,60.738]],["parent/9",[6,3.63]],["name/10",[10,55.626]],["parent/10",[6,3.63]],["name/11",[11,55.626]],["parent/11",[6,3.63]],["name/12",[12,52.26]],["parent/12",[6,3.63]],["name/13",[13,55.626]],["parent/13",[6,3.63]],["name/14",[14,43.381]],["parent/14",[6,3.63]],["name/15",[15,55.626]],["parent/15",[6,3.63]],["name/16",[16,60.738]],["parent/16",[6,3.63]],["name/17",[4,49.745]],["parent/17",[6,3.63]],["name/18",[17,60.738]],["parent/18",[6,3.63]],["name/19",[18,52.26]],["parent/19",[]],["name/20",[19,55.626]],["parent/20",[18,4.895]],["name/21",[20,55.626]],["parent/21",[18,4.895]],["name/22",[21,36.155]],["parent/22",[]],["name/23",[22,33.205]],["parent/23",[21,3.387]],["name/24",[0,33.205]],["parent/24",[21,3.387]],["name/25",[23,44.633]],["parent/25",[21,3.387]],["name/26",[24,60.738]],["parent/26",[21,3.387]],["name/27",[25,60.738]],["parent/27",[21,3.387]],["name/28",[26,60.738]],["parent/28",[21,3.387]],["name/29",[27,55.626]],["parent/29",[21,3.387]],["name/30",[28,46.065]],["parent/30",[21,3.387]],["name/31",[29,55.626]],["parent/31",[21,3.387]],["name/32",[30,60.738]],["parent/32",[21,3.387]],["name/33",[31,42.268]],["parent/33",[21,3.387]],["name/34",[32,60.738]],["parent/34",[21,3.387]],["name/35",[33,60.738]],["parent/35",[21,3.387]],["name/36",[34,60.738]],["parent/36",[21,3.387]],["name/37",[35,60.738]],["parent/37",[21,3.387]],["name/38",[36,38.752]],["parent/38",[21,3.387]],["name/39",[37,60.738]],["parent/39",[]],["name/40",[38,60.738]],["parent/40",[]],["name/41",[39,60.738]],["parent/41",[]],["name/42",[40,52.26]],["parent/42",[]],["name/43",[41,60.738]],["parent/43",[40,4.895]],["name/44",[42,60.738]],["parent/44",[40,4.895]],["name/45",[43,36.744]],["parent/45",[]],["name/46",[44,60.738]],["parent/46",[43,3.442]],["name/47",[45,60.738]],["parent/47",[43,3.442]],["name/48",[46,47.737]],["parent/48",[43,3.442]],["name/49",[27,55.626]],["parent/49",[43,3.442]],["name/50",[28,46.065]],["parent/50",[43,3.442]],["name/51",[47,60.738]],["parent/51",[43,3.442]],["name/52",[29,55.626]],["parent/52",[43,3.442]],["name/53",[48,60.738]],["parent/53",[43,3.442]],["name/54",[49,60.738]],["parent/54",[43,3.442]],["name/55",[50,60.738]],["parent/55",[43,3.442]],["name/56",[51,60.738]],["parent/56",[43,3.442]],["name/57",[52,60.738]],["parent/57",[43,3.442]],["name/58",[53,60.738]],["parent/58",[43,3.442]],["name/59",[54,60.738]],["parent/59",[43,3.442]],["name/60",[55,60.738]],["parent/60",[43,3.442]],["name/61",[56,60.738]],["parent/61",[]],["name/62",[57,60.738]],["parent/62",[]],["name/63",[58,60.738]],["parent/63",[]],["name/64",[59,60.738]],["parent/64",[]],["name/65",[60,60.738]],["parent/65",[]],["name/66",[61,43.381]],["parent/66",[]],["name/67",[62,60.738]],["parent/67",[]],["name/68",[63,49.745]],["parent/68",[]],["name/69",[64,55.626]],["parent/69",[63,4.66]],["name/70",[65,55.626]],["parent/70",[63,4.66]],["name/71",[66,55.626]],["parent/71",[63,4.66]],["name/72",[67,38.752]],["parent/72",[]],["name/73",[61,43.381]],["parent/73",[67,3.63]],["name/74",[68,49.745]],["parent/74",[67,3.63]],["name/75",[69,52.26]],["parent/75",[67,3.63]],["name/76",[70,52.26]],["parent/76",[67,3.63]],["name/77",[71,52.26]],["parent/77",[67,3.63]],["name/78",[72,52.26]],["parent/78",[67,3.63]],["name/79",[1,52.26]],["parent/79",[67,3.63]],["name/80",[73,49.745]],["parent/80",[67,3.63]],["name/81",[74,47.737]],["parent/81",[67,3.63]],["name/82",[31,42.268]],["parent/82",[67,3.63]],["name/83",[75,52.26]],["parent/83",[67,3.63]],["name/84",[36,38.752]],["parent/84",[67,3.63]],["name/85",[76,38.037]],["parent/85",[]],["name/86",[68,49.745]],["parent/86",[76,3.563]],["name/87",[8,49.745]],["parent/87",[76,3.563]],["name/88",[77,60.738]],["parent/88",[76,3.563]],["name/89",[78,60.738]],["parent/89",[76,3.563]],["name/90",[79,33.64]],["parent/90",[76,3.563]],["name/91",[80,60.738]],["parent/91",[76,3.563]],["name/92",[81,49.745]],["parent/92",[]],["name/93",[82,60.738]],["parent/93",[81,4.66]],["name/94",[83,60.738]],["parent/94",[81,4.66]],["name/95",[84,60.738]],["parent/95",[81,4.66]],["name/96",[85,44.633]],["parent/96",[]],["name/97",[86,60.738]],["parent/97",[85,4.181]],["name/98",[87,60.738]],["parent/98",[85,4.181]],["name/99",[88,60.738]],["parent/99",[85,4.181]],["name/100",[89,60.738]],["parent/100",[85,4.181]],["name/101",[90,60.738]],["parent/101",[85,4.181]],["name/102",[91,47.737]],["parent/102",[]],["name/103",[92,60.738]],["parent/103",[91,4.472]],["name/104",[93,60.738]],["parent/104",[91,4.472]],["name/105",[94,60.738]],["parent/105",[91,4.472]],["name/106",[95,44.633]],["parent/106",[]],["name/107",[96,49.745]],["parent/107",[95,4.181]],["name/108",[97,60.738]],["parent/108",[95,4.181]],["name/109",[98,60.738]],["parent/109",[95,4.181]],["name/110",[99,60.738]],["parent/110",[95,4.181]],["name/111",[100,60.738]],["parent/111",[95,4.181]],["name/112",[101,47.737]],["parent/112",[]],["name/113",[102,46.065]],["parent/113",[101,4.472]],["name/114",[103,60.738]],["parent/114",[101,4.472]],["name/115",[104,60.738]],["parent/115",[101,4.472]],["name/116",[105,60.738]],["parent/116",[101,4.472]],["name/117",[106,55.626]],["parent/117",[]],["name/118",[107,42.268]],["parent/118",[106,5.211]],["name/119",[108,49.745]],["parent/119",[]],["name/120",[109,43.381]],["parent/120",[108,4.66]],["name/121",[102,46.065]],["parent/121",[108,4.66]],["name/122",[107,42.268]],["parent/122",[108,4.66]],["name/123",[110,41.267]],["parent/123",[]],["name/124",[111,28.529]],["parent/124",[110,3.866]],["name/125",[109,43.381]],["parent/125",[110,3.866]],["name/126",[112,60.738]],["parent/126",[110,3.866]],["name/127",[107,42.268]],["parent/127",[110,3.866]],["name/128",[113,60.738]],["parent/128",[110,3.866]],["name/129",[85,44.633]],["parent/129",[110,3.866]],["name/130",[114,55.626]],["parent/130",[110,3.866]],["name/131",[95,44.633]],["parent/131",[110,3.866]],["name/132",[115,60.738]],["parent/132",[110,3.866]],["name/133",[116,52.26]],["parent/133",[]],["name/134",[117,60.738]],["parent/134",[116,4.895]],["name/135",[118,60.738]],["parent/135",[116,4.895]],["name/136",[111,28.529]],["parent/136",[]],["name/137",[22,33.205]],["parent/137",[111,2.672]],["name/138",[119,49.745]],["parent/138",[111,2.672]],["name/139",[111,28.529]],["parent/139",[111,2.672]],["name/140",[109,43.381]],["parent/140",[111,2.672]],["name/141",[107,42.268]],["parent/141",[111,2.672]],["name/142",[102,46.065]],["parent/142",[111,2.672]],["name/143",[120,49.745]],["parent/143",[111,2.672]],["name/144",[28,46.065]],["parent/144",[111,2.672]],["name/145",[76,38.037]],["parent/145",[111,2.672]],["name/146",[46,47.737]],["parent/146",[111,2.672]],["name/147",[121,43.381]],["parent/147",[111,2.672]],["name/148",[122,43.381]],["parent/148",[111,2.672]],["name/149",[123,43.381]],["parent/149",[111,2.672]],["name/150",[124,43.381]],["parent/150",[111,2.672]],["name/151",[125,43.381]],["parent/151",[111,2.672]],["name/152",[126,43.381]],["parent/152",[111,2.672]],["name/153",[127,43.381]],["parent/153",[111,2.672]],["name/154",[128,43.381]],["parent/154",[111,2.672]],["name/155",[129,43.381]],["parent/155",[111,2.672]],["name/156",[130,43.381]],["parent/156",[111,2.672]],["name/157",[131,43.381]],["parent/157",[111,2.672]],["name/158",[132,39.522]],["parent/158",[111,2.672]],["name/159",[133,43.381]],["parent/159",[111,2.672]],["name/160",[134,43.381]],["parent/160",[111,2.672]],["name/161",[135,43.381]],["parent/161",[111,2.672]],["name/162",[132,39.522]],["parent/162",[111,2.672]],["name/163",[136,49.745]],["parent/163",[111,2.672]],["name/164",[137,52.26]],["parent/164",[]],["name/165",[22,33.205]],["parent/165",[137,4.895]],["name/166",[138,52.26]],["parent/166",[137,4.895]],["name/167",[139,47.737]],["parent/167",[]],["name/168",[140,47.737]],["parent/168",[139,4.472]],["name/169",[111,28.529]],["parent/169",[139,4.472]],["name/170",[31,42.268]],["parent/170",[139,4.472]],["name/171",[141,60.738]],["parent/171",[]],["name/172",[79,33.64]],["parent/172",[]],["name/173",[142,52.26]],["parent/173",[79,3.151]],["name/174",[143,52.26]],["parent/174",[79,3.151]],["name/175",[121,43.381]],["parent/175",[79,3.151]],["name/176",[122,43.381]],["parent/176",[79,3.151]],["name/177",[123,43.381]],["parent/177",[79,3.151]],["name/178",[124,43.381]],["parent/178",[79,3.151]],["name/179",[125,43.381]],["parent/179",[79,3.151]],["name/180",[126,43.381]],["parent/180",[79,3.151]],["name/181",[127,43.381]],["parent/181",[79,3.151]],["name/182",[128,43.381]],["parent/182",[79,3.151]],["name/183",[129,43.381]],["parent/183",[79,3.151]],["name/184",[130,43.381]],["parent/184",[79,3.151]],["name/185",[131,43.381]],["parent/185",[79,3.151]],["name/186",[132,39.522]],["parent/186",[79,3.151]],["name/187",[133,43.381]],["parent/187",[79,3.151]],["name/188",[134,43.381]],["parent/188",[79,3.151]],["name/189",[135,43.381]],["parent/189",[79,3.151]],["name/190",[22,33.205]],["parent/190",[79,3.151]],["name/191",[132,39.522]],["parent/191",[79,3.151]],["name/192",[136,49.745]],["parent/192",[79,3.151]],["name/193",[144,41.267]],["parent/193",[]],["name/194",[145,60.738]],["parent/194",[144,3.866]],["name/195",[146,60.738]],["parent/195",[144,3.866]],["name/196",[147,60.738]],["parent/196",[144,3.866]],["name/197",[148,60.738]],["parent/197",[144,3.866]],["name/198",[149,60.738]],["parent/198",[144,3.866]],["name/199",[150,60.738]],["parent/199",[144,3.866]],["name/200",[151,60.738]],["parent/200",[144,3.866]],["name/201",[152,60.738]],["parent/201",[144,3.866]],["name/202",[153,60.738]],["parent/202",[144,3.866]],["name/203",[154,46.065]],["parent/203",[]],["name/204",[155,55.626]],["parent/204",[154,4.315]],["name/205",[156,55.626]],["parent/205",[154,4.315]],["name/206",[157,55.626]],["parent/206",[154,4.315]],["name/207",[158,47.737]],["parent/207",[159,5.69]],["name/208",[160,55.626]],["parent/208",[161,4.895]],["name/209",[162,55.626]],["parent/209",[161,4.895]],["name/210",[163,55.626]],["parent/210",[161,4.895]],["name/211",[164,60.738]],["parent/211",[154,4.315]],["name/212",[165,60.738]],["parent/212",[]],["name/213",[166,49.745]],["parent/213",[]],["name/214",[167,55.626]],["parent/214",[166,4.66]],["name/215",[168,60.738]],["parent/215",[166,4.66]],["name/216",[169,60.738]],["parent/216",[166,4.66]],["name/217",[170,49.745]],["parent/217",[]],["name/218",[155,55.626]],["parent/218",[170,4.66]],["name/219",[156,55.626]],["parent/219",[170,4.66]],["name/220",[157,55.626]],["parent/220",[170,4.66]],["name/221",[160,55.626]],["parent/221",[171,4.895]],["name/222",[162,55.626]],["parent/222",[171,4.895]],["name/223",[163,55.626]],["parent/223",[171,4.895]],["name/224",[172,52.26]],["parent/224",[]],["name/225",[158,47.737]],["parent/225",[172,4.895]],["name/226",[173,47.737]],["parent/226",[]],["name/227",[174,60.738]],["parent/227",[173,4.472]],["name/228",[175,49.745]],["parent/228",[173,4.472]],["name/229",[114,55.626]],["parent/229",[173,4.472]],["name/230",[91,47.737]],["parent/230",[173,4.472]],["name/231",[176,46.065]],["parent/231",[]],["name/232",[177,60.738]],["parent/232",[176,4.315]],["name/233",[178,60.738]],["parent/233",[176,4.315]],["name/234",[179,60.738]],["parent/234",[176,4.315]],["name/235",[180,55.626]],["parent/235",[176,4.315]],["name/236",[181,60.738]],["parent/236",[176,4.315]],["name/237",[182,42.268]],["parent/237",[]],["name/238",[183,43.381]],["parent/238",[182,3.96]],["name/239",[36,38.752]],["parent/239",[182,3.96]],["name/240",[184,55.626]],["parent/240",[182,3.96]],["name/241",[185,52.26]],["parent/241",[182,3.96]],["name/242",[186,55.626]],["parent/242",[182,3.96]],["name/243",[187,55.626]],["parent/243",[182,3.96]],["name/244",[188,55.626]],["parent/244",[182,3.96]],["name/245",[14,43.381]],["parent/245",[]],["name/246",[183,43.381]],["parent/246",[14,4.064]],["name/247",[36,38.752]],["parent/247",[14,4.064]],["name/248",[61,43.381]],["parent/248",[14,4.064]],["name/249",[189,49.745]],["parent/249",[14,4.064]],["name/250",[190,52.26]],["parent/250",[]],["name/251",[191,52.26]],["parent/251",[190,4.895]],["name/252",[22,33.205]],["parent/252",[190,4.895]],["name/253",[192,36.744]],["parent/253",[]],["name/254",[22,33.205]],["parent/254",[192,3.442]],["name/255",[182,42.268]],["parent/255",[192,3.442]],["name/256",[14,43.381]],["parent/256",[192,3.442]],["name/257",[193,60.738]],["parent/257",[192,3.442]],["name/258",[158,47.737]],["parent/258",[192,3.442]],["name/259",[194,60.738]],["parent/259",[192,3.442]],["name/260",[158,47.737]],["parent/260",[192,3.442]],["name/261",[183,43.381]],["parent/261",[192,3.442]],["name/262",[36,38.752]],["parent/262",[192,3.442]],["name/263",[64,55.626]],["parent/263",[192,3.442]],["name/264",[65,55.626]],["parent/264",[192,3.442]],["name/265",[66,55.626]],["parent/265",[192,3.442]],["name/266",[195,60.738]],["parent/266",[192,3.442]],["name/267",[196,25.354]],["parent/267",[]],["name/268",[197,60.738]],["parent/268",[196,2.375]],["name/269",[119,49.745]],["parent/269",[196,2.375]],["name/270",[198,55.626]],["parent/270",[196,2.375]],["name/271",[22,33.205]],["parent/271",[196,2.375]],["name/272",[199,30.274]],["parent/272",[196,2.375]],["name/273",[192,36.744]],["parent/273",[196,2.375]],["name/274",[23,44.633]],["parent/274",[196,2.375]],["name/275",[185,52.26]],["parent/275",[196,2.375]],["name/276",[180,55.626]],["parent/276",[196,2.375]],["name/277",[74,47.737]],["parent/277",[196,2.375]],["name/278",[200,55.626]],["parent/278",[196,2.375]],["name/279",[200,55.626]],["parent/279",[196,2.375]],["name/280",[31,42.268]],["parent/280",[196,2.375]],["name/281",[201,60.738]],["parent/281",[196,2.375]],["name/282",[202,60.738]],["parent/282",[196,2.375]],["name/283",[203,60.738]],["parent/283",[196,2.375]],["name/284",[109,43.381]],["parent/284",[196,2.375]],["name/285",[28,46.065]],["parent/285",[196,2.375]],["name/286",[111,28.529]],["parent/286",[196,2.375]],["name/287",[120,49.745]],["parent/287",[196,2.375]],["name/288",[102,46.065]],["parent/288",[196,2.375]],["name/289",[107,42.268]],["parent/289",[196,2.375]],["name/290",[204,60.738]],["parent/290",[196,2.375]],["name/291",[36,38.752]],["parent/291",[196,2.375]],["name/292",[205,55.626]],["parent/292",[196,2.375]],["name/293",[121,43.381]],["parent/293",[196,2.375]],["name/294",[122,43.381]],["parent/294",[196,2.375]],["name/295",[123,43.381]],["parent/295",[196,2.375]],["name/296",[124,43.381]],["parent/296",[196,2.375]],["name/297",[125,43.381]],["parent/297",[196,2.375]],["name/298",[126,43.381]],["parent/298",[196,2.375]],["name/299",[127,43.381]],["parent/299",[196,2.375]],["name/300",[128,43.381]],["parent/300",[196,2.375]],["name/301",[129,43.381]],["parent/301",[196,2.375]],["name/302",[130,43.381]],["parent/302",[196,2.375]],["name/303",[131,43.381]],["parent/303",[196,2.375]],["name/304",[132,39.522]],["parent/304",[196,2.375]],["name/305",[133,43.381]],["parent/305",[196,2.375]],["name/306",[134,43.381]],["parent/306",[196,2.375]],["name/307",[135,43.381]],["parent/307",[196,2.375]],["name/308",[132,39.522]],["parent/308",[196,2.375]],["name/309",[136,49.745]],["parent/309",[196,2.375]],["name/310",[206,49.745]],["parent/310",[]],["name/311",[207,60.738]],["parent/311",[206,4.66]],["name/312",[19,55.626]],["parent/312",[206,4.66]],["name/313",[20,55.626]],["parent/313",[206,4.66]],["name/314",[208,46.065]],["parent/314",[]],["name/315",[209,60.738]],["parent/315",[208,4.315]],["name/316",[210,60.738]],["parent/316",[208,4.315]],["name/317",[211,49.745]],["parent/317",[208,4.315]],["name/318",[212,60.738]],["parent/318",[208,4.315]],["name/319",[175,49.745]],["parent/319",[208,4.315]],["name/320",[199,30.274]],["parent/320",[]],["name/321",[22,33.205]],["parent/321",[199,2.836]],["name/322",[213,60.738]],["parent/322",[199,2.836]],["name/323",[211,49.745]],["parent/323",[199,2.836]],["name/324",[167,55.626]],["parent/324",[199,2.836]],["name/325",[214,60.738]],["parent/325",[199,2.836]],["name/326",[215,60.738]],["parent/326",[199,2.836]],["name/327",[216,60.738]],["parent/327",[199,2.836]],["name/328",[217,60.738]],["parent/328",[199,2.836]],["name/329",[218,60.738]],["parent/329",[199,2.836]],["name/330",[219,60.738]],["parent/330",[199,2.836]],["name/331",[36,38.752]],["parent/331",[199,2.836]],["name/332",[121,43.381]],["parent/332",[199,2.836]],["name/333",[122,43.381]],["parent/333",[199,2.836]],["name/334",[123,43.381]],["parent/334",[199,2.836]],["name/335",[124,43.381]],["parent/335",[199,2.836]],["name/336",[125,43.381]],["parent/336",[199,2.836]],["name/337",[126,43.381]],["parent/337",[199,2.836]],["name/338",[127,43.381]],["parent/338",[199,2.836]],["name/339",[128,43.381]],["parent/339",[199,2.836]],["name/340",[129,43.381]],["parent/340",[199,2.836]],["name/341",[130,43.381]],["parent/341",[199,2.836]],["name/342",[131,43.381]],["parent/342",[199,2.836]],["name/343",[132,39.522]],["parent/343",[199,2.836]],["name/344",[133,43.381]],["parent/344",[199,2.836]],["name/345",[134,43.381]],["parent/345",[199,2.836]],["name/346",[135,43.381]],["parent/346",[199,2.836]],["name/347",[132,39.522]],["parent/347",[199,2.836]],["name/348",[136,49.745]],["parent/348",[199,2.836]],["name/349",[211,49.745]],["parent/349",[]],["name/350",[220,35.072]],["parent/350",[]],["name/351",[22,33.205]],["parent/351",[220,3.285]],["name/352",[142,52.26]],["parent/352",[220,3.285]],["name/353",[143,52.26]],["parent/353",[220,3.285]],["name/354",[121,43.381]],["parent/354",[220,3.285]],["name/355",[122,43.381]],["parent/355",[220,3.285]],["name/356",[123,43.381]],["parent/356",[220,3.285]],["name/357",[124,43.381]],["parent/357",[220,3.285]],["name/358",[125,43.381]],["parent/358",[220,3.285]],["name/359",[126,43.381]],["parent/359",[220,3.285]],["name/360",[127,43.381]],["parent/360",[220,3.285]],["name/361",[128,43.381]],["parent/361",[220,3.285]],["name/362",[129,43.381]],["parent/362",[220,3.285]],["name/363",[130,43.381]],["parent/363",[220,3.285]],["name/364",[131,43.381]],["parent/364",[220,3.285]],["name/365",[132,39.522]],["parent/365",[220,3.285]],["name/366",[133,43.381]],["parent/366",[220,3.285]],["name/367",[134,43.381]],["parent/367",[220,3.285]],["name/368",[135,43.381]],["parent/368",[220,3.285]],["name/369",[221,41.267]],["parent/369",[]],["name/370",[22,33.205]],["parent/370",[221,3.866]],["name/371",[222,60.738]],["parent/371",[221,3.866]],["name/372",[183,43.381]],["parent/372",[221,3.866]],["name/373",[184,55.626]],["parent/373",[221,3.866]],["name/374",[185,52.26]],["parent/374",[221,3.866]],["name/375",[186,55.626]],["parent/375",[221,3.866]],["name/376",[188,55.626]],["parent/376",[221,3.866]],["name/377",[187,55.626]],["parent/377",[221,3.866]],["name/378",[36,38.752]],["parent/378",[221,3.866]],["name/379",[223,42.268]],["parent/379",[]],["name/380",[191,52.26]],["parent/380",[223,3.96]],["name/381",[224,60.738]],["parent/381",[223,3.96]],["name/382",[22,33.205]],["parent/382",[223,3.96]],["name/383",[8,49.745]],["parent/383",[223,3.96]],["name/384",[183,43.381]],["parent/384",[223,3.96]],["name/385",[36,38.752]],["parent/385",[223,3.96]],["name/386",[61,43.381]],["parent/386",[223,3.96]],["name/387",[189,49.745]],["parent/387",[223,3.96]],["name/388",[225,60.738]],["parent/388",[]],["name/389",[226,46.065]],["parent/389",[]],["name/390",[22,33.205]],["parent/390",[226,4.315]],["name/391",[140,47.737]],["parent/391",[226,4.315]],["name/392",[175,49.745]],["parent/392",[226,4.315]],["name/393",[227,55.626]],["parent/393",[226,4.315]],["name/394",[228,55.626]],["parent/394",[226,4.315]],["name/395",[229,44.633]],["parent/395",[]],["name/396",[230,60.738]],["parent/396",[229,4.181]],["name/397",[231,60.738]],["parent/397",[229,4.181]],["name/398",[232,60.738]],["parent/398",[229,4.181]],["name/399",[233,60.738]],["parent/399",[229,4.181]],["name/400",[234,60.738]],["parent/400",[229,4.181]],["name/401",[235,60.738]],["parent/401",[229,4.181]],["name/402",[236,40.356]],["parent/402",[]],["name/403",[191,52.26]],["parent/403",[236,3.78]],["name/404",[237,60.738]],["parent/404",[236,3.78]],["name/405",[238,60.738]],["parent/405",[236,3.78]],["name/406",[22,33.205]],["parent/406",[236,3.78]],["name/407",[239,60.738]],["parent/407",[236,3.78]],["name/408",[183,43.381]],["parent/408",[236,3.78]],["name/409",[36,38.752]],["parent/409",[236,3.78]],["name/410",[61,43.381]],["parent/410",[236,3.78]],["name/411",[189,49.745]],["parent/411",[236,3.78]],["name/412",[240,60.738]],["parent/412",[236,3.78]],["name/413",[241,46.065]],["parent/413",[]],["name/414",[22,33.205]],["parent/414",[241,4.315]],["name/415",[140,47.737]],["parent/415",[241,4.315]],["name/416",[175,49.745]],["parent/416",[241,4.315]],["name/417",[227,55.626]],["parent/417",[241,4.315]],["name/418",[228,55.626]],["parent/418",[241,4.315]],["name/419",[242,44.633]],["parent/419",[]],["name/420",[243,60.738]],["parent/420",[242,4.181]],["name/421",[22,33.205]],["parent/421",[242,4.181]],["name/422",[183,43.381]],["parent/422",[242,4.181]],["name/423",[36,38.752]],["parent/423",[242,4.181]],["name/424",[61,43.381]],["parent/424",[242,4.181]],["name/425",[189,49.745]],["parent/425",[242,4.181]],["name/426",[244,46.065]],["parent/426",[]],["name/427",[12,52.26]],["parent/427",[244,4.315]],["name/428",[245,60.738]],["parent/428",[244,4.315]],["name/429",[22,33.205]],["parent/429",[244,4.315]],["name/430",[76,38.037]],["parent/430",[244,4.315]],["name/431",[183,43.381]],["parent/431",[244,4.315]],["name/432",[246,38.752]],["parent/432",[]],["name/433",[10,55.626]],["parent/433",[246,3.63]],["name/434",[11,55.626]],["parent/434",[246,3.63]],["name/435",[12,52.26]],["parent/435",[246,3.63]],["name/436",[247,60.738]],["parent/436",[246,3.63]],["name/437",[248,60.738]],["parent/437",[246,3.63]],["name/438",[13,55.626]],["parent/438",[246,3.63]],["name/439",[14,43.381]],["parent/439",[246,3.63]],["name/440",[249,60.738]],["parent/440",[246,3.63]],["name/441",[4,49.745]],["parent/441",[246,3.63]],["name/442",[250,60.738]],["parent/442",[246,3.63]],["name/443",[158,47.737]],["parent/443",[251,5.69]],["name/444",[172,52.26]],["parent/444",[252,5.211]],["name/445",[154,46.065]],["parent/445",[252,5.211]],["name/446",[15,55.626]],["parent/446",[246,3.63]],["name/447",[211,49.745]],["parent/447",[246,3.63]],["name/448",[61,43.381]],["parent/448",[0,3.111]],["name/449",[76,38.037]],["parent/449",[0,3.111]],["name/450",[22,33.205]],["parent/450",[0,3.111]],["name/451",[199,30.274]],["parent/451",[0,3.111]],["name/452",[192,36.744]],["parent/452",[0,3.111]],["name/453",[8,49.745]],["parent/453",[0,3.111]],["name/454",[68,49.745]],["parent/454",[0,3.111]],["name/455",[23,44.633]],["parent/455",[0,3.111]],["name/456",[253,60.738]],["parent/456",[0,3.111]],["name/457",[75,52.26]],["parent/457",[0,3.111]],["name/458",[69,52.26]],["parent/458",[0,3.111]],["name/459",[70,52.26]],["parent/459",[0,3.111]],["name/460",[31,42.268]],["parent/460",[0,3.111]],["name/461",[254,60.738]],["parent/461",[0,3.111]],["name/462",[71,52.26]],["parent/462",[0,3.111]],["name/463",[72,52.26]],["parent/463",[0,3.111]],["name/464",[73,49.745]],["parent/464",[0,3.111]],["name/465",[255,60.738]],["parent/465",[0,3.111]],["name/466",[74,47.737]],["parent/466",[0,3.111]],["name/467",[36,38.752]],["parent/467",[0,3.111]],["name/468",[256,60.738]],["parent/468",[]],["name/469",[257,52.26]],["parent/469",[]],["name/470",[258,55.626]],["parent/470",[257,4.895]],["name/471",[259,33.64]],["parent/471",[257,4.895]],["name/472",[260,46.065]],["parent/472",[]],["name/473",[261,52.26]],["parent/473",[260,4.315]],["name/474",[262,52.26]],["parent/474",[260,4.315]],["name/475",[96,49.745]],["parent/475",[260,4.315]],["name/476",[263,52.26]],["parent/476",[260,4.315]],["name/477",[264,49.745]],["parent/477",[260,4.315]],["name/478",[265,35.072]],["parent/478",[]],["name/479",[22,33.205]],["parent/479",[265,3.285]],["name/480",[142,52.26]],["parent/480",[265,3.285]],["name/481",[143,52.26]],["parent/481",[265,3.285]],["name/482",[121,43.381]],["parent/482",[265,3.285]],["name/483",[122,43.381]],["parent/483",[265,3.285]],["name/484",[123,43.381]],["parent/484",[265,3.285]],["name/485",[124,43.381]],["parent/485",[265,3.285]],["name/486",[125,43.381]],["parent/486",[265,3.285]],["name/487",[126,43.381]],["parent/487",[265,3.285]],["name/488",[127,43.381]],["parent/488",[265,3.285]],["name/489",[128,43.381]],["parent/489",[265,3.285]],["name/490",[129,43.381]],["parent/490",[265,3.285]],["name/491",[130,43.381]],["parent/491",[265,3.285]],["name/492",[131,43.381]],["parent/492",[265,3.285]],["name/493",[132,39.522]],["parent/493",[265,3.285]],["name/494",[133,43.381]],["parent/494",[265,3.285]],["name/495",[134,43.381]],["parent/495",[265,3.285]],["name/496",[135,43.381]],["parent/496",[265,3.285]],["name/497",[266,60.738]],["parent/497",[]],["name/498",[267,60.738]],["parent/498",[]],["name/499",[268,52.26]],["parent/499",[]],["name/500",[269,60.738]],["parent/500",[268,4.895]],["name/501",[261,52.26]],["parent/501",[270,4.472]],["name/502",[262,52.26]],["parent/502",[270,4.472]],["name/503",[96,49.745]],["parent/503",[270,4.472]],["name/504",[263,52.26]],["parent/504",[270,4.472]],["name/505",[264,49.745]],["parent/505",[270,4.472]],["name/506",[271,60.738]],["parent/506",[268,4.895]],["name/507",[261,52.26]],["parent/507",[272,4.472]],["name/508",[262,52.26]],["parent/508",[272,4.472]],["name/509",[96,49.745]],["parent/509",[272,4.472]],["name/510",[263,52.26]],["parent/510",[272,4.472]],["name/511",[264,49.745]],["parent/511",[272,4.472]],["name/512",[273,52.26]],["parent/512",[]],["name/513",[22,33.205]],["parent/513",[273,4.895]],["name/514",[274,60.738]],["parent/514",[273,4.895]],["name/515",[275,52.26]],["parent/515",[]],["name/516",[109,43.381]],["parent/516",[275,4.895]],["name/517",[107,42.268]],["parent/517",[275,4.895]],["name/518",[276,31.275]],["parent/518",[]],["name/519",[46,47.737]],["parent/519",[276,2.93]],["name/520",[23,44.633]],["parent/520",[276,2.93]],["name/521",[138,52.26]],["parent/521",[276,2.93]],["name/522",[22,33.205]],["parent/522",[276,2.93]],["name/523",[119,49.745]],["parent/523",[276,2.93]],["name/524",[111,28.529]],["parent/524",[276,2.93]],["name/525",[109,43.381]],["parent/525",[276,2.93]],["name/526",[107,42.268]],["parent/526",[276,2.93]],["name/527",[102,46.065]],["parent/527",[276,2.93]],["name/528",[120,49.745]],["parent/528",[276,2.93]],["name/529",[28,46.065]],["parent/529",[276,2.93]],["name/530",[76,38.037]],["parent/530",[276,2.93]],["name/531",[121,43.381]],["parent/531",[276,2.93]],["name/532",[122,43.381]],["parent/532",[276,2.93]],["name/533",[123,43.381]],["parent/533",[276,2.93]],["name/534",[124,43.381]],["parent/534",[276,2.93]],["name/535",[125,43.381]],["parent/535",[276,2.93]],["name/536",[126,43.381]],["parent/536",[276,2.93]],["name/537",[127,43.381]],["parent/537",[276,2.93]],["name/538",[128,43.381]],["parent/538",[276,2.93]],["name/539",[129,43.381]],["parent/539",[276,2.93]],["name/540",[130,43.381]],["parent/540",[276,2.93]],["name/541",[131,43.381]],["parent/541",[276,2.93]],["name/542",[132,39.522]],["parent/542",[276,2.93]],["name/543",[133,43.381]],["parent/543",[276,2.93]],["name/544",[134,43.381]],["parent/544",[276,2.93]],["name/545",[135,43.381]],["parent/545",[276,2.93]],["name/546",[111,28.529]],["parent/546",[]],["name/547",[277,47.737]],["parent/547",[]],["name/548",[140,47.737]],["parent/548",[277,4.472]],["name/549",[111,28.529]],["parent/549",[277,4.472]],["name/550",[23,44.633]],["parent/550",[277,4.472]],["name/551",[31,42.268]],["parent/551",[277,4.472]],["name/552",[278,52.26]],["parent/552",[]],["name/553",[109,43.381]],["parent/553",[278,4.895]],["name/554",[107,42.268]],["parent/554",[278,4.895]],["name/555",[279,31.275]],["parent/555",[]],["name/556",[46,47.737]],["parent/556",[279,2.93]],["name/557",[23,44.633]],["parent/557",[279,2.93]],["name/558",[138,52.26]],["parent/558",[279,2.93]],["name/559",[22,33.205]],["parent/559",[279,2.93]],["name/560",[119,49.745]],["parent/560",[279,2.93]],["name/561",[111,28.529]],["parent/561",[279,2.93]],["name/562",[109,43.381]],["parent/562",[279,2.93]],["name/563",[107,42.268]],["parent/563",[279,2.93]],["name/564",[102,46.065]],["parent/564",[279,2.93]],["name/565",[120,49.745]],["parent/565",[279,2.93]],["name/566",[28,46.065]],["parent/566",[279,2.93]],["name/567",[76,38.037]],["parent/567",[279,2.93]],["name/568",[121,43.381]],["parent/568",[279,2.93]],["name/569",[122,43.381]],["parent/569",[279,2.93]],["name/570",[123,43.381]],["parent/570",[279,2.93]],["name/571",[124,43.381]],["parent/571",[279,2.93]],["name/572",[125,43.381]],["parent/572",[279,2.93]],["name/573",[126,43.381]],["parent/573",[279,2.93]],["name/574",[127,43.381]],["parent/574",[279,2.93]],["name/575",[128,43.381]],["parent/575",[279,2.93]],["name/576",[129,43.381]],["parent/576",[279,2.93]],["name/577",[130,43.381]],["parent/577",[279,2.93]],["name/578",[131,43.381]],["parent/578",[279,2.93]],["name/579",[132,39.522]],["parent/579",[279,2.93]],["name/580",[133,43.381]],["parent/580",[279,2.93]],["name/581",[134,43.381]],["parent/581",[279,2.93]],["name/582",[135,43.381]],["parent/582",[279,2.93]],["name/583",[280,46.065]],["parent/583",[]],["name/584",[140,47.737]],["parent/584",[280,4.315]],["name/585",[111,28.529]],["parent/585",[280,4.315]],["name/586",[23,44.633]],["parent/586",[280,4.315]],["name/587",[31,42.268]],["parent/587",[280,4.315]],["name/588",[281,60.738]],["parent/588",[280,4.315]],["name/589",[282,60.738]],["parent/589",[]],["name/590",[283,60.738]],["parent/590",[]],["name/591",[139,47.737]],["parent/591",[196,2.375]],["name/592",[284,60.738]],["parent/592",[196,2.375]],["name/593",[31,42.268]],["parent/593",[196,2.375]],["name/594",[74,47.737]],["parent/594",[196,2.375]],["name/595",[73,49.745]],["parent/595",[196,2.375]],["name/596",[46,47.737]],["parent/596",[196,2.375]],["name/597",[285,60.738]],["parent/597",[196,2.375]],["name/598",[76,38.037]],["parent/598",[196,2.375]],["name/599",[286,60.738]],["parent/599",[]],["name/600",[287,36.155]],["parent/600",[]],["name/601",[61,43.381]],["parent/601",[287,3.387]],["name/602",[76,38.037]],["parent/602",[287,3.387]],["name/603",[288,60.738]],["parent/603",[287,3.387]],["name/604",[22,33.205]],["parent/604",[287,3.387]],["name/605",[68,49.745]],["parent/605",[287,3.387]],["name/606",[289,60.738]],["parent/606",[287,3.387]],["name/607",[71,52.26]],["parent/607",[287,3.387]],["name/608",[72,52.26]],["parent/608",[287,3.387]],["name/609",[1,52.26]],["parent/609",[287,3.387]],["name/610",[73,49.745]],["parent/610",[287,3.387]],["name/611",[31,42.268]],["parent/611",[287,3.387]],["name/612",[74,47.737]],["parent/612",[287,3.387]],["name/613",[69,52.26]],["parent/613",[287,3.387]],["name/614",[70,52.26]],["parent/614",[287,3.387]],["name/615",[75,52.26]],["parent/615",[287,3.387]],["name/616",[36,38.752]],["parent/616",[287,3.387]],["name/617",[290,60.738]],["parent/617",[]],["name/618",[291,60.738]],["parent/618",[]],["name/619",[292,52.26]],["parent/619",[]],["name/620",[293,60.738]],["parent/620",[292,4.895]],["name/621",[294,43.116,295,43.116]],["parent/621",[292,4.895]],["name/622",[259,33.64]],["parent/622",[]],["name/623",[22,33.205]],["parent/623",[259,3.151]],["name/624",[296,60.738]],["parent/624",[259,3.151]],["name/625",[297,60.738]],["parent/625",[259,3.151]],["name/626",[298,60.738]],["parent/626",[259,3.151]],["name/627",[299,60.738]],["parent/627",[259,3.151]],["name/628",[264,49.745]],["parent/628",[259,3.151]],["name/629",[300,60.738]],["parent/629",[259,3.151]],["name/630",[258,55.626]],["parent/630",[259,3.151]],["name/631",[198,55.626]],["parent/631",[259,3.151]],["name/632",[301,60.738]],["parent/632",[259,3.151]],["name/633",[302,60.738]],["parent/633",[259,3.151]],["name/634",[303,60.738]],["parent/634",[259,3.151]],["name/635",[304,60.738]],["parent/635",[259,3.151]],["name/636",[305,60.738]],["parent/636",[259,3.151]],["name/637",[306,60.738]],["parent/637",[259,3.151]],["name/638",[205,55.626]],["parent/638",[259,3.151]],["name/639",[307,60.738]],["parent/639",[259,3.151]],["name/640",[308,60.738]],["parent/640",[259,3.151]],["name/641",[309,60.738]],["parent/641",[259,3.151]],["name/642",[310,60.738]],["parent/642",[259,3.151]],["name/643",[311,60.738]],["parent/643",[]],["name/644",[312,60.738]],["parent/644",[]],["name/645",[313,60.738]],["parent/645",[]],["name/646",[314,55.626]],["parent/646",[]],["name/647",[315,60.738]],["parent/647",[314,5.211]]],"invertedIndex":[["231",{"_index":315,"name":{"647":{}},"parent":{}}],["__type",{"_index":158,"name":{"207":{},"225":{},"258":{},"260":{},"443":{}},"parent":{}}],["_buildhttplog",{"_index":25,"name":{"27":{}},"parent":{}}],["_context",{"_index":197,"name":{"268":{}},"parent":{}}],["_doctypehandlers",{"_index":288,"name":{"603":{}},"parent":{}}],["_genesiscidlength",{"_index":297,"name":{"625":{}},"parent":{}}],["_initpinapi",{"_index":289,"name":{"606":{}},"parent":{}}],["_ipfs",{"_index":213,"name":{"322":{}},"parent":{}}],["_loaddoc",{"_index":255,"name":{"465":{}},"parent":{}}],["_notsupported",{"_index":35,"name":{"37":{}},"parent":{}}],["_syncstate",{"_index":285,"name":{"597":{}},"parent":{}}],["_totext",{"_index":169,"name":{"216":{}},"parent":{}}],["accountlinkdoctype",{"_index":276,"name":{"518":{}},"parent":{"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{}}}],["accountlinkdoctypehandler",{"_index":277,"name":{"547":{}},"parent":{"548":{},"549":{},"550":{},"551":{}}}],["accountlinkparams",{"_index":275,"name":{"515":{}},"parent":{"516":{},"517":{}}}],["add",{"_index":64,"name":{"69":{},"263":{}},"parent":{}}],["adddoctypehandler",{"_index":69,"name":{"75":{},"458":{},"613":{}},"parent":{}}],["addlistener",{"_index":121,"name":{"147":{},"175":{},"293":{},"332":{},"354":{},"482":{},"531":{},"568":{}},"parent":{}}],["addplugin",{"_index":168,"name":{"215":{}},"parent":{}}],["anchor",{"_index":201,"name":{"281":{}},"parent":{}}],["anchored",{"_index":89,"name":{"100":{}},"parent":{}}],["anchorproof",{"_index":95,"name":{"106":{},"131":{}},"parent":{"107":{},"108":{},"109":{},"110":{},"111":{}}}],["anchorrecord",{"_index":91,"name":{"102":{},"230":{}},"parent":{"103":{},"104":{},"105":{}}}],["anchorscheduledfor",{"_index":114,"name":{"130":{},"229":{}},"parent":{}}],["anchorservice",{"_index":79,"name":{"90":{},"172":{}},"parent":{"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{}}}],["anchorservicefactory",{"_index":273,"name":{"512":{}},"parent":{"513":{},"514":{}}}],["anchorserviceresponse",{"_index":173,"name":{"226":{}},"parent":{"227":{},"228":{},"229":{},"230":{}}}],["anchorserviceurl",{"_index":11,"name":{"11":{},"434":{}},"parent":{}}],["anchorstatus",{"_index":85,"name":{"96":{},"129":{}},"parent":{"97":{},"98":{},"99":{},"100":{},"101":{}}}],["api",{"_index":80,"name":{"91":{}},"parent":{}}],["api_path",{"_index":291,"name":{"618":{}},"parent":{}}],["applyonly",{"_index":117,"name":{"134":{}},"parent":{}}],["applyrecord",{"_index":31,"name":{"33":{},"82":{},"170":{},"280":{},"460":{},"551":{},"587":{},"593":{},"611":{}},"parent":{}}],["awaitcondition",{"_index":178,"name":{"233":{}},"parent":{}}],["backends",{"_index":243,"name":{"420":{}},"parent":{}}],["baseid",{"_index":299,"name":{"627":{}},"parent":{}}],["blocknumber",{"_index":97,"name":{"108":{}},"parent":{}}],["blocktimestamp",{"_index":98,"name":{"109":{}},"parent":{}}],["bytes",{"_index":304,"name":{"635":{}},"parent":{}}],["caip10",{"_index":294,"name":{"621":{}},"parent":{}}],["ceramic",{"_index":0,"name":{"0":{},"24":{}},"parent":{"1":{},"448":{},"449":{},"450":{},"451":{},"452":{},"453":{},"454":{},"455":{},"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{}}}],["ceramic_host",{"_index":290,"name":{"617":{}},"parent":{}}],["ceramicapi",{"_index":67,"name":{"72":{}},"parent":{"73":{},"74":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{}}}],["ceramicclient",{"_index":287,"name":{"600":{}},"parent":{"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{}}}],["ceramiccliutils",{"_index":43,"name":{"45":{}},"parent":{"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{}}}],["ceramicconfig",{"_index":246,"name":{"432":{}},"parent":{"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"446":{},"447":{}}}],["ceramicconfig.logtofilesplugin",{"_index":251,"name":{},"parent":{"443":{}}}],["ceramicconfig.logtofilesplugin.__type",{"_index":252,"name":{},"parent":{"444":{},"445":{}}}],["ceramicdaemon",{"_index":21,"name":{"22":{}},"parent":{"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{},"37":{},"38":{}}}],["ceramichost",{"_index":42,"name":{"44":{}},"parent":{}}],["chain",{"_index":262,"name":{"474":{},"502":{},"508":{}},"parent":{}}],["chainid",{"_index":96,"name":{"107":{},"475":{},"503":{},"509":{}},"parent":{}}],["change",{"_index":46,"name":{"48":{},"146":{},"519":{},"556":{},"596":{}},"parent":{}}],["cid",{"_index":258,"name":{"470":{},"630":{}},"parent":{}}],["ciddoc",{"_index":257,"name":{"469":{}},"parent":{"470":{},"471":{}}}],["cliconfig",{"_index":40,"name":{"42":{}},"parent":{"43":{},"44":{}}}],["close",{"_index":36,"name":{"38":{},"84":{},"239":{},"247":{},"262":{},"291":{},"331":{},"378":{},"385":{},"409":{},"423":{},"467":{},"616":{}},"parent":{}}],["codec",{"_index":303,"name":{"634":{}},"parent":{}}],["component",{"_index":164,"name":{"211":{}},"parent":{}}],["config",{"_index":62,"name":{"67":{}},"parent":{}}],["constructor",{"_index":22,"name":{"23":{},"137":{},"165":{},"190":{},"252":{},"254":{},"271":{},"321":{},"351":{},"370":{},"382":{},"390":{},"406":{},"414":{},"421":{},"429":{},"450":{},"479":{},"513":{},"522":{},"559":{},"604":{},"623":{}},"parent":{}}],["content",{"_index":109,"name":{"120":{},"125":{},"140":{},"284":{},"516":{},"525":{},"553":{},"562":{}},"parent":{}}],["context",{"_index":76,"name":{"85":{},"145":{},"430":{},"449":{},"530":{},"567":{},"598":{},"602":{}},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{}}}],["controllers",{"_index":102,"name":{"113":{},"121":{},"142":{},"288":{},"527":{},"564":{}},"parent":{}}],["convertrecordtodto",{"_index":150,"name":{"199":{}},"parent":{}}],["create",{"_index":23,"name":{"25":{},"274":{},"455":{},"520":{},"550":{},"557":{},"586":{}},"parent":{}}],["createdaemon",{"_index":44,"name":{"46":{}},"parent":{}}],["createdoc",{"_index":45,"name":{"47":{}},"parent":{}}],["createdocfromgenesis",{"_index":26,"name":{"28":{}},"parent":{}}],["createdocument",{"_index":71,"name":{"77":{},"462":{},"607":{}},"parent":{}}],["createdocumentfromgenesis",{"_index":72,"name":{"78":{},"463":{},"608":{}},"parent":{}}],["createfromgenesis",{"_index":284,"name":{"592":{}},"parent":{}}],["createopts",{"_index":6,"name":{"6":{}},"parent":{"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{}}}],["debug",{"_index":16,"name":{"16":{}},"parent":{}}],["default_anchor_service_url",{"_index":39,"name":{"41":{}},"parent":{}}],["default_cli_config_file",{"_index":57,"name":{"62":{}},"parent":{}}],["default_cli_config_path",{"_index":59,"name":{"64":{}},"parent":{}}],["default_max_poll_time",{"_index":267,"name":{"498":{}},"parent":{}}],["default_pinning_store_path",{"_index":58,"name":{"63":{}},"parent":{}}],["default_poll_time",{"_index":266,"name":{"497":{}},"parent":{}}],["default_port",{"_index":37,"name":{"39":{}},"parent":{}}],["defaultmaxlisteners",{"_index":136,"name":{"163":{},"192":{},"309":{},"348":{}},"parent":{}}],["defaultopts",{"_index":170,"name":{"217":{}},"parent":{"218":{},"219":{},"220":{}}}],["defaultopts.stacktrace",{"_index":171,"name":{},"parent":{"221":{},"222":{},"223":{}}}],["depth",{"_index":162,"name":{"209":{},"222":{}},"parent":{}}],["deserializerecord",{"_index":146,"name":{"195":{}},"parent":{}}],["deserializestate",{"_index":148,"name":{"197":{}},"parent":{}}],["designator",{"_index":191,"name":{"251":{},"380":{},"403":{}},"parent":{}}],["did",{"_index":68,"name":{"74":{},"86":{},"454":{},"605":{}},"parent":{}}],["didprovider",{"_index":248,"name":{"437":{}},"parent":{}}],["didresolver",{"_index":247,"name":{"436":{}},"parent":{}}],["dispatcher",{"_index":199,"name":{"272":{},"320":{},"451":{}},"parent":{"321":{},"322":{},"323":{},"324":{},"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{},"334":{},"335":{},"336":{},"337":{},"338":{},"339":{},"340":{},"341":{},"342":{},"343":{},"344":{},"345":{},"346":{},"347":{},"348":{}}}],["docid",{"_index":259,"name":{"471":{},"622":{}},"parent":{"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{}}}],["docid_codec",{"_index":311,"name":{"643":{}},"parent":{}}],["docidurl",{"_index":286,"name":{"599":{}},"parent":{}}],["docmetadata",{"_index":101,"name":{"112":{}},"parent":{"113":{},"114":{},"115":{},"116":{}}}],["docnext",{"_index":108,"name":{"119":{}},"parent":{"120":{},"121":{},"122":{}}}],["docopts",{"_index":116,"name":{"133":{}},"parent":{"134":{},"135":{}}}],["docparams",{"_index":106,"name":{"117":{}},"parent":{"118":{}}}],["docstate",{"_index":110,"name":{"123":{}},"parent":{"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{}}}],["doctype",{"_index":111,"name":{"124":{},"136":{},"139":{},"169":{},"286":{},"524":{},"546":{},"549":{},"561":{},"585":{}},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["doctypeconstructor",{"_index":137,"name":{"164":{}},"parent":{"165":{},"166":{}}}],["doctypehandler",{"_index":139,"name":{"167":{},"591":{}},"parent":{"168":{},"169":{},"170":{}}}],["doctypestatic",{"_index":141,"name":{"171":{}},"parent":{}}],["doctypeutils",{"_index":144,"name":{"193":{}},"parent":{"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{}}}],["document",{"_index":196,"name":{"267":{}},"parent":{"268":{},"269":{},"270":{},"271":{},"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{},"289":{},"290":{},"291":{},"292":{},"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{},"306":{},"307":{},"308":{},"309":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{}}}],["eip155:1",{"_index":269,"name":{"500":{}},"parent":{}}],["eip155:3",{"_index":271,"name":{"506":{}},"parent":{}}],["emit",{"_index":131,"name":{"157":{},"185":{},"303":{},"342":{},"364":{},"492":{},"541":{},"578":{}},"parent":{}}],["emptytokenerror",{"_index":226,"name":{"389":{}},"parent":{"390":{},"391":{},"392":{},"393":{},"394":{}}}],["endpoint",{"_index":237,"name":{"404":{}},"parent":{}}],["equals",{"_index":305,"name":{"636":{}},"parent":{}}],["error",{"_index":228,"name":{"394":{},"418":{}},"parent":{}}],["eth_chain_id_mappings",{"_index":268,"name":{"499":{}},"parent":{"500":{},"506":{}}}],["eth_chain_id_mappings.eip155:1",{"_index":270,"name":{},"parent":{"501":{},"502":{},"503":{},"504":{},"505":{}}}],["eth_chain_id_mappings.eip155:3",{"_index":272,"name":{},"parent":{"507":{},"508":{},"509":{},"510":{},"511":{}}}],["ethereumanchorservice",{"_index":265,"name":{"478":{}},"parent":{"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{}}}],["ethereumrpcurl",{"_index":10,"name":{"10":{},"433":{}},"parent":{}}],["ethnetwork",{"_index":260,"name":{"472":{}},"parent":{"473":{},"474":{},"475":{},"476":{},"477":{}}}],["event",{"_index":210,"name":{"316":{}},"parent":{}}],["eventnames",{"_index":135,"name":{"161":{},"189":{},"307":{},"346":{},"368":{},"496":{},"545":{},"582":{}},"parent":{}}],["excess",{"_index":163,"name":{"210":{},"223":{}},"parent":{}}],["exists",{"_index":186,"name":{"242":{},"375":{}},"parent":{}}],["failed",{"_index":90,"name":{"101":{}},"parent":{}}],["fetchjson",{"_index":282,"name":{"589":{}},"parent":{}}],["finddoctypehandler",{"_index":70,"name":{"76":{},"459":{},"614":{}},"parent":{}}],["findhandler",{"_index":253,"name":{"456":{}},"parent":{}}],["format",{"_index":156,"name":{"205":{},"219":{}},"parent":{}}],["from",{"_index":212,"name":{"318":{}},"parent":{}}],["from_context",{"_index":225,"name":{"388":{}},"parent":{}}],["frombytes",{"_index":296,"name":{"624":{}},"parent":{}}],["fromstring",{"_index":298,"name":{"626":{}},"parent":{}}],["fs",{"_index":56,"name":{"61":{}},"parent":{}}],["gateway",{"_index":15,"name":{"15":{},"446":{}},"parent":{}}],["genesis",{"_index":82,"name":{"93":{}},"parent":{}}],["get",{"_index":274,"name":{"514":{}},"parent":{}}],["getdocfrommap",{"_index":254,"name":{"461":{}},"parent":{}}],["getkey",{"_index":312,"name":{"644":{}},"parent":{}}],["getmaxlisteners",{"_index":128,"name":{"154":{},"182":{},"300":{},"339":{},"361":{},"489":{},"538":{},"575":{}},"parent":{}}],["getversion",{"_index":200,"name":{"278":{},"279":{}},"parent":{}}],["handlemessage",{"_index":219,"name":{"330":{}},"parent":{}}],["head",{"_index":120,"name":{"143":{},"287":{},"528":{},"565":{}},"parent":{}}],["httplog",{"_index":18,"name":{"19":{}},"parent":{"20":{},"21":{}}}],["id",{"_index":119,"name":{"138":{},"269":{},"523":{},"560":{}},"parent":{}}],["init",{"_index":167,"name":{"214":{},"324":{}},"parent":{}}],["ipfs",{"_index":8,"name":{"8":{},"87":{},"383":{},"453":{}},"parent":{}}],["ipfsaddress",{"_index":224,"name":{"381":{}},"parent":{}}],["ipfshost",{"_index":7,"name":{"7":{}},"parent":{}}],["ipfspinning",{"_index":223,"name":{"379":{}},"parent":{"380":{},"381":{},"382":{},"383":{},"384":{},"385":{},"386":{},"387":{}}}],["isanchorrecord",{"_index":153,"name":{"202":{}},"parent":{}}],["isdocid",{"_index":310,"name":{"642":{}},"parent":{}}],["isschemavalid",{"_index":179,"name":{"234":{}},"parent":{}}],["issignedrecord",{"_index":152,"name":{"201":{}},"parent":{}}],["issignedrecorddto",{"_index":151,"name":{"200":{}},"parent":{}}],["isunique",{"_index":105,"name":{"116":{}},"parent":{}}],["job_status_canceled",{"_index":234,"name":{"400":{}},"parent":{}}],["job_status_executing",{"_index":232,"name":{"398":{}},"parent":{}}],["job_status_failed",{"_index":233,"name":{"399":{}},"parent":{}}],["job_status_queued",{"_index":231,"name":{"397":{}},"parent":{}}],["job_status_success",{"_index":235,"name":{"401":{}},"parent":{}}],["job_status_unspecified",{"_index":230,"name":{"396":{}},"parent":{}}],["jobstatus",{"_index":229,"name":{"395":{}},"parent":{"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["keytodiddoc",{"_index":313,"name":{"645":{}},"parent":{}}],["level",{"_index":155,"name":{"204":{},"218":{}},"parent":{}}],["levels",{"_index":160,"name":{"208":{},"221":{}},"parent":{}}],["levelstatestore",{"_index":221,"name":{"369":{}},"parent":{"370":{},"371":{},"372":{},"373":{},"374":{},"375":{},"376":{},"377":{},"378":{}}}],["link",{"_index":295,"name":{"621":{}},"parent":{}}],["list",{"_index":187,"name":{"243":{},"377":{}},"parent":{}}],["listenercount",{"_index":132,"name":{"158":{},"162":{},"186":{},"191":{},"304":{},"308":{},"343":{},"347":{},"365":{},"493":{},"542":{},"579":{}},"parent":{}}],["listeners",{"_index":129,"name":{"155":{},"183":{},"301":{},"340":{},"362":{},"490":{},"539":{},"576":{}},"parent":{}}],["listpinned",{"_index":34,"name":{"36":{}},"parent":{}}],["listversions",{"_index":74,"name":{"81":{},"277":{},"466":{},"594":{},"612":{}},"parent":{}}],["load",{"_index":185,"name":{"241":{},"275":{},"374":{}},"parent":{}}],["loaddocument",{"_index":1,"name":{"1":{},"79":{},"609":{}},"parent":{}}],["loaddocumentrecords",{"_index":73,"name":{"80":{},"464":{},"595":{},"610":{}},"parent":{}}],["loadschema",{"_index":202,"name":{"282":{}},"parent":{}}],["loadschemabyid",{"_index":203,"name":{"283":{}},"parent":{}}],["log",{"_index":115,"name":{"132":{}},"parent":{}}],["loggerprovider",{"_index":166,"name":{"213":{}},"parent":{"214":{},"215":{},"216":{}}}],["loglevel",{"_index":249,"name":{"440":{}},"parent":{}}],["logmessage",{"_index":208,"name":{"314":{}},"parent":{"315":{},"316":{},"317":{},"318":{},"319":{}}}],["logpath",{"_index":17,"name":{"18":{}},"parent":{}}],["logtofiles",{"_index":4,"name":{"4":{},"17":{},"441":{}},"parent":{"5":{}}}],["logtofilesplugin",{"_index":250,"name":{"442":{}},"parent":{}}],["ls",{"_index":66,"name":{"71":{},"265":{}},"parent":{}}],["main",{"_index":5,"name":{"5":{}},"parent":{}}],["makegenesis",{"_index":138,"name":{"166":{},"521":{},"558":{}},"parent":{}}],["makereadonly",{"_index":149,"name":{"198":{}},"parent":{}}],["message",{"_index":175,"name":{"228":{},"319":{},"392":{},"416":{}},"parent":{}}],["metadata",{"_index":107,"name":{"118":{},"122":{},"127":{},"141":{},"289":{},"517":{},"526":{},"554":{},"563":{}},"parent":{}}],["mockanchorservice",{"_index":220,"name":{"350":{}},"parent":{"351":{},"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{},"361":{},"362":{},"363":{},"364":{},"365":{},"366":{},"367":{},"368":{}}}],["msgtype",{"_index":206,"name":{"310":{}},"parent":{"311":{},"312":{},"313":{}}}],["multibasename",{"_index":301,"name":{"632":{}},"parent":{}}],["multihash",{"_index":302,"name":{"633":{}},"parent":{}}],["name",{"_index":140,"name":{"168":{},"391":{},"415":{},"548":{},"584":{}},"parent":{}}],["network",{"_index":261,"name":{"473":{},"501":{},"507":{}},"parent":{}}],["networkid",{"_index":263,"name":{"476":{},"504":{},"510":{}},"parent":{}}],["next",{"_index":112,"name":{"126":{}},"parent":{}}],["normalizedocid",{"_index":256,"name":{"468":{}},"parent":{}}],["not_requested",{"_index":86,"name":{"97":{}},"parent":{}}],["off",{"_index":125,"name":{"151":{},"179":{},"297":{},"336":{},"358":{},"486":{},"535":{},"572":{}},"parent":{}}],["on",{"_index":122,"name":{"148":{},"176":{},"294":{},"333":{},"355":{},"483":{},"532":{},"569":{}},"parent":{}}],["once",{"_index":123,"name":{"149":{},"177":{},"295":{},"334":{},"356":{},"484":{},"533":{},"570":{}},"parent":{}}],["open",{"_index":183,"name":{"238":{},"246":{},"261":{},"372":{},"384":{},"408":{},"422":{},"431":{}},"parent":{}}],["options",{"_index":154,"name":{"203":{},"445":{}},"parent":{"204":{},"205":{},"206":{},"211":{}}}],["options.stacktrace",{"_index":159,"name":{},"parent":{"207":{}}}],["options.stacktrace.__type",{"_index":161,"name":{},"parent":{"208":{},"209":{},"210":{}}}],["partial",{"_index":83,"name":{"94":{}},"parent":{}}],["path",{"_index":94,"name":{"105":{}},"parent":{}}],["peer",{"_index":209,"name":{"315":{}},"parent":{}}],["pending",{"_index":87,"name":{"98":{}},"parent":{}}],["pin",{"_index":61,"name":{"66":{},"73":{},"248":{},"386":{},"410":{},"424":{},"448":{},"601":{}},"parent":{}}],["pinadd",{"_index":50,"name":{"55":{}},"parent":{}}],["pinapi",{"_index":63,"name":{"68":{}},"parent":{"69":{},"70":{},"71":{}}}],["pindocument",{"_index":32,"name":{"34":{}},"parent":{}}],["pinls",{"_index":52,"name":{"57":{}},"parent":{}}],["pinning",{"_index":14,"name":{"14":{},"245":{},"256":{},"439":{}},"parent":{"246":{},"247":{},"248":{},"249":{}}}],["pinningaggregation",{"_index":242,"name":{"419":{}},"parent":{"420":{},"421":{},"422":{},"423":{},"424":{},"425":{}}}],["pinnings",{"_index":245,"name":{"428":{}},"parent":{}}],["pinningstatic",{"_index":190,"name":{"250":{}},"parent":{"251":{},"252":{}}}],["pinrm",{"_index":51,"name":{"56":{}},"parent":{}}],["pinstore",{"_index":192,"name":{"253":{},"273":{},"452":{}},"parent":{"254":{},"255":{},"256":{},"257":{},"258":{},"259":{},"260":{},"261":{},"262":{},"263":{},"264":{},"265":{},"266":{}}}],["pinstorefactory",{"_index":244,"name":{"426":{}},"parent":{"427":{},"428":{},"429":{},"430":{},"431":{}}}],["plugin",{"_index":172,"name":{"224":{},"444":{}},"parent":{"225":{}}}],["pluginoptions",{"_index":165,"name":{"212":{}},"parent":{}}],["pointsofinterest",{"_index":195,"name":{"266":{}},"parent":{}}],["port",{"_index":9,"name":{"9":{}},"parent":{}}],["pow",{"_index":239,"name":{"407":{}},"parent":{}}],["powergatepinning",{"_index":236,"name":{"402":{}},"parent":{"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{}}}],["prefixtodrivermap",{"_index":314,"name":{"646":{}},"parent":{"647":{}}}],["prependlistener",{"_index":133,"name":{"159":{},"187":{},"305":{},"344":{},"366":{},"494":{},"543":{},"580":{}},"parent":{}}],["prependoncelistener",{"_index":134,"name":{"160":{},"188":{},"306":{},"345":{},"367":{},"495":{},"544":{},"581":{}},"parent":{}}],["prev",{"_index":92,"name":{"103":{}},"parent":{}}],["processing",{"_index":88,"name":{"99":{}},"parent":{}}],["proof",{"_index":93,"name":{"104":{}},"parent":{}}],["provider",{"_index":78,"name":{"89":{}},"parent":{}}],["publishhead",{"_index":218,"name":{"329":{}},"parent":{}}],["rawlisteners",{"_index":130,"name":{"156":{},"184":{},"302":{},"341":{},"363":{},"491":{},"540":{},"577":{}},"parent":{}}],["records",{"_index":30,"name":{"32":{}},"parent":{}}],["register",{"_index":214,"name":{"325":{}},"parent":{}}],["registerapipaths",{"_index":24,"name":{"26":{}},"parent":{}}],["remove",{"_index":188,"name":{"244":{},"376":{}},"parent":{}}],["removealllisteners",{"_index":126,"name":{"152":{},"180":{},"298":{},"337":{},"359":{},"487":{},"536":{},"573":{}},"parent":{}}],["removelistener",{"_index":124,"name":{"150":{},"178":{},"296":{},"335":{},"357":{},"485":{},"534":{},"571":{}},"parent":{}}],["request",{"_index":19,"name":{"20":{},"312":{}},"parent":{}}],["requestanchor",{"_index":142,"name":{"173":{},"352":{},"480":{}},"parent":{}}],["resolve",{"_index":194,"name":{"259":{}},"parent":{}}],["resolver",{"_index":77,"name":{"88":{}},"parent":{}}],["resolverregistry",{"_index":2,"name":{"2":{}},"parent":{}}],["response",{"_index":20,"name":{"21":{},"313":{}},"parent":{}}],["retrieve",{"_index":193,"name":{"257":{}},"parent":{}}],["retrieverecord",{"_index":217,"name":{"328":{}},"parent":{}}],["rm",{"_index":65,"name":{"70":{},"264":{}},"parent":{}}],["root",{"_index":100,"name":{"111":{}},"parent":{}}],["save",{"_index":184,"name":{"240":{},"373":{}},"parent":{}}],["schema",{"_index":103,"name":{"114":{}},"parent":{}}],["schemachangedoc",{"_index":49,"name":{"54":{}},"parent":{}}],["schemacreatedoc",{"_index":48,"name":{"53":{}},"parent":{}}],["schemas",{"_index":60,"name":{"65":{}},"parent":{}}],["seed",{"_index":41,"name":{"43":{}},"parent":{}}],["serializerecord",{"_index":145,"name":{"194":{}},"parent":{}}],["serializestate",{"_index":147,"name":{"196":{}},"parent":{}}],["setconfig",{"_index":54,"name":{"59":{}},"parent":{}}],["setdidprovider",{"_index":75,"name":{"83":{},"457":{},"615":{}},"parent":{}}],["setmaxlisteners",{"_index":127,"name":{"153":{},"181":{},"299":{},"338":{},"360":{},"488":{},"537":{},"574":{}},"parent":{}}],["show",{"_index":27,"name":{"29":{},"49":{}},"parent":{}}],["showconfig",{"_index":53,"name":{"58":{}},"parent":{}}],["signature",{"_index":113,"name":{"128":{}},"parent":{}}],["signaturestatus",{"_index":81,"name":{"92":{}},"parent":{"93":{},"94":{},"95":{}}}],["signed",{"_index":84,"name":{"95":{}},"parent":{}}],["skipwait",{"_index":118,"name":{"135":{}},"parent":{}}],["stack",{"_index":227,"name":{"393":{},"417":{}},"parent":{}}],["stacktrace",{"_index":157,"name":{"206":{},"220":{}},"parent":{}}],["state",{"_index":28,"name":{"30":{},"50":{},"144":{},"285":{},"529":{},"566":{}},"parent":{}}],["statestore",{"_index":182,"name":{"237":{},"255":{}},"parent":{"238":{},"239":{},"240":{},"241":{},"242":{},"243":{},"244":{}}}],["statestorepath",{"_index":12,"name":{"12":{},"427":{},"435":{}},"parent":{}}],["status",{"_index":174,"name":{"227":{}},"parent":{}}],["store",{"_index":222,"name":{"371":{}},"parent":{}}],["storerecord",{"_index":216,"name":{"327":{}},"parent":{}}],["symbol.for('nodejs.util.inspect.custom",{"_index":308,"name":{"640":{}},"parent":{}}],["symbol.toprimitive",{"_index":309,"name":{"641":{}},"parent":{}}],["table",{"_index":292,"name":{"619":{}},"parent":{"620":{},"621":{}}}],["tags",{"_index":104,"name":{"115":{}},"parent":{}}],["tile",{"_index":293,"name":{"620":{}},"parent":{}}],["tiledoctype",{"_index":279,"name":{"555":{}},"parent":{"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{}}}],["tiledoctypehandler",{"_index":280,"name":{"583":{}},"parent":{"584":{},"585":{},"586":{},"587":{},"588":{}}}],["tileparams",{"_index":278,"name":{"552":{}},"parent":{"553":{},"554":{}}}],["toapipath",{"_index":38,"name":{"40":{}},"parent":{}}],["tobaseencodedstring",{"_index":306,"name":{"637":{}},"parent":{}}],["token",{"_index":238,"name":{"405":{}},"parent":{}}],["topic",{"_index":211,"name":{"317":{},"323":{},"349":{},"447":{}},"parent":{}}],["tostring",{"_index":205,"name":{"292":{},"638":{}},"parent":{}}],["tourl",{"_index":307,"name":{"639":{}},"parent":{}}],["txhash",{"_index":99,"name":{"110":{}},"parent":{}}],["type",{"_index":264,"name":{"477":{},"505":{},"511":{},"628":{}},"parent":{}}],["typedocid",{"_index":283,"name":{"590":{}},"parent":{}}],["typename",{"_index":300,"name":{"629":{}},"parent":{}}],["unknownpinningservice",{"_index":241,"name":{"413":{}},"parent":{"414":{},"415":{},"416":{},"417":{},"418":{}}}],["unpin",{"_index":189,"name":{"249":{},"387":{},"411":{},"425":{}},"parent":{}}],["unpindocument",{"_index":33,"name":{"35":{}},"parent":{}}],["unregister",{"_index":215,"name":{"326":{}},"parent":{}}],["unsetconfig",{"_index":55,"name":{"60":{}},"parent":{}}],["update",{"_index":207,"name":{"311":{}},"parent":{}}],["utils",{"_index":176,"name":{"231":{}},"parent":{"232":{},"233":{},"234":{},"235":{},"236":{}}}],["validate",{"_index":180,"name":{"235":{},"276":{}},"parent":{}}],["validatechaininclusion",{"_index":143,"name":{"174":{},"353":{},"481":{}},"parent":{}}],["validatedocs",{"_index":13,"name":{"13":{},"438":{}},"parent":{}}],["validatedoctype",{"_index":181,"name":{"236":{}},"parent":{}}],["validator",{"_index":177,"name":{"232":{}},"parent":{}}],["verifyjws",{"_index":281,"name":{"588":{}},"parent":{}}],["version",{"_index":198,"name":{"270":{},"631":{}},"parent":{}}],["versions",{"_index":29,"name":{"31":{},"52":{}},"parent":{}}],["wait",{"_index":204,"name":{"290":{}},"parent":{}}],["waitforjobstatus",{"_index":240,"name":{"412":{}},"parent":{}}],["watch",{"_index":47,"name":{"51":{}},"parent":{}}],["wrapdocument",{"_index":3,"name":{"3":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/api/classes/accountlinkdoctype.html b/docs/api/classes/accountlinkdoctype.html index d4f00d3a00..99f7ac5726 100644 --- a/docs/api/classes/accountlinkdoctype.html +++ b/docs/api/classes/accountlinkdoctype.html @@ -99,11 +99,11 @@

                                          Accessors

                                          @@ -217,6 +217,24 @@

                                          Returns any

                                        +
                                        + +

                                        controllers

                                        +
                                          +
                                        • get controllers(): Array<string>
                                        • +
                                        + +

                                        doctype

                                        @@ -289,24 +307,6 @@

                                        Returns DocMetada

                                      -
                                      - -

                                      owners

                                      -
                                        -
                                      • get owners(): Array<string>
                                      • -
                                      -
                                        -
                                      • - -

                                        Returns Array<string>

                                        -
                                      • -
                                      -

                                      state

                                      @@ -400,7 +400,7 @@

                                      change

                                      @@ -890,7 +890,7 @@

                                      Static create

                                    • @@ -933,7 +933,7 @@

                                      Static makeGenesis

                                    • @@ -980,6 +980,9 @@

                                      Returns Promise context

                                    • +
                                    • + controllers +
                                    • doctype
                                    • @@ -992,9 +995,6 @@

                                      Returns Promise metadata

                                    • -
                                    • - owners -
                                    • state
                                    • diff --git a/docs/api/classes/accountlinkdoctypehandler.html b/docs/api/classes/accountlinkdoctypehandler.html index 0b72d78c13..1ff98de246 100644 --- a/docs/api/classes/accountlinkdoctypehandler.html +++ b/docs/api/classes/accountlinkdoctypehandler.html @@ -111,7 +111,7 @@

                                      doctype

                                    • @@ -133,7 +133,7 @@

                                      name

                                    • @@ -158,7 +158,7 @@

                                      applyRecord

                                    • @@ -207,7 +207,7 @@

                                      create

                                    • diff --git a/docs/api/classes/anchorservice.html b/docs/api/classes/anchorservice.html index df3af30e56..f8ebeaaa09 100644 --- a/docs/api/classes/anchorservice.html +++ b/docs/api/classes/anchorservice.html @@ -653,7 +653,7 @@

                                      Abstract requestAnchor
                                      @@ -714,7 +714,7 @@

                                      Abstract validateChain
                                      diff --git a/docs/api/classes/anchorservicefactory.html b/docs/api/classes/anchorservicefactory.html index 51dee0f936..806dcea36f 100644 --- a/docs/api/classes/anchorservicefactory.html +++ b/docs/api/classes/anchorservicefactory.html @@ -110,7 +110,7 @@

                                      constructor

                                    • Parameters

                                      @@ -139,7 +139,7 @@

                                      get

                                    • diff --git a/docs/api/classes/ceramic.html b/docs/api/classes/ceramic.html index b8e242e619..cac6256163 100644 --- a/docs/api/classes/ceramic.html +++ b/docs/api/classes/ceramic.html @@ -149,7 +149,7 @@

                                      constructor

                                    • Parameters

                                      @@ -180,7 +180,7 @@

                                      Readonly context

                                      context: Context
                                      @@ -190,7 +190,7 @@

                                      dispatcher

                                      dispatcher: Dispatcher
                                      @@ -200,7 +200,7 @@

                                      Readonly pin

                                      pin: PinApi
                                      @@ -210,7 +210,7 @@

                                      pinStore

                                      pinStore: PinStore
                                      @@ -227,7 +227,7 @@

                                      did

                                    • @@ -249,7 +249,7 @@

                                      ipfs

                                    • @@ -274,7 +274,7 @@

                                      _loadDoc

                                    • @@ -311,7 +311,7 @@

                                      addDoctypeHandler

                                    • @@ -348,7 +348,7 @@

                                      applyRecord

                                    • @@ -397,7 +397,7 @@

                                      close

                                    • @@ -419,7 +419,7 @@

                                      createDocument

                                    • @@ -468,7 +468,7 @@

                                      createDocumentFromGenesis

                                    • @@ -511,7 +511,7 @@

                                      findDoctypeHandler

                                    • @@ -548,7 +548,7 @@

                                      findHandler

                                    • @@ -585,7 +585,7 @@

                                      getDocFromMap

                                    • @@ -613,7 +613,7 @@

                                      listVersions

                                    • @@ -644,7 +644,7 @@

                                      loadDocument

                                    • @@ -677,7 +677,7 @@

                                      loadDocumentRecords

                                    • @@ -708,7 +708,7 @@

                                      setDIDProvider

                                    • @@ -739,7 +739,7 @@

                                      Static create

                                    • diff --git a/docs/api/classes/ceramicclient.html b/docs/api/classes/ceramicclient.html index ae1fb63f41..f0cfc4c018 100644 --- a/docs/api/classes/ceramicclient.html +++ b/docs/api/classes/ceramicclient.html @@ -133,7 +133,7 @@

                                      constructor

                                    • Parameters

                                      @@ -155,7 +155,7 @@

                                      Readonly _doctypeHandlers
                                      _doctypeHandlers: Record<string, DoctypeHandler<Doctype>>
                                      @@ -165,7 +165,7 @@

                                      Readonly context

                                      context: Context
                                      @@ -175,7 +175,7 @@

                                      Readonly pin

                                      pin: PinApi
                                      @@ -192,7 +192,7 @@

                                      did

                                    • Returns DID | undefined

                                      @@ -212,7 +212,7 @@

                                      _initPinApi

                                    • Returns PinApi

                                      @@ -229,7 +229,7 @@

                                      addDoctypeHandler

                                    • Type parameters

                                      @@ -258,7 +258,7 @@

                                      applyRecord

                                    • Type parameters

                                      @@ -293,7 +293,7 @@

                                      close

                                    • Returns Promise<void>

                                      @@ -310,7 +310,7 @@

                                      createDocument

                                    • Type parameters

                                      @@ -345,7 +345,7 @@

                                      createDocumentFromGenesis

                                    • Type parameters

                                      @@ -377,7 +377,7 @@

                                      findDoctypeHandler

                                    • Type parameters

                                      @@ -406,7 +406,7 @@

                                      listVersions

                                    • Parameters

                                      @@ -429,7 +429,7 @@

                                      loadDocument

                                    • Type parameters

                                      @@ -458,7 +458,7 @@

                                      loadDocumentRecords

                                    • Parameters

                                      @@ -481,7 +481,7 @@

                                      setDIDProvider

                                    • Parameters

                                      diff --git a/docs/api/classes/ceramiccliutils.html b/docs/api/classes/ceramiccliutils.html index a8a75d6156..9f7335fa71 100644 --- a/docs/api/classes/ceramiccliutils.html +++ b/docs/api/classes/ceramiccliutils.html @@ -118,7 +118,7 @@

                                      Static change

                                    • @@ -167,7 +167,7 @@

                                      Static createDaemon

                                    • @@ -258,7 +258,7 @@

                                      Static createDoc

                                    • @@ -319,7 +319,7 @@

                                      Static pinAdd

                                    • @@ -350,7 +350,7 @@

                                      Static pinLs

                                    • @@ -381,7 +381,7 @@

                                      Static pinRm

                                    • @@ -412,7 +412,7 @@

                                      Static schemaChangeDoc
                                    • @@ -455,7 +455,7 @@

                                      Static schemaCreateDoc
                                    • @@ -504,7 +504,7 @@

                                      Static setConfig

                                    • @@ -541,7 +541,7 @@

                                      Static show

                                    • @@ -572,7 +572,7 @@

                                      Static showConfig

                                    • @@ -594,7 +594,7 @@

                                      Static state

                                    • @@ -625,7 +625,7 @@

                                      Static unsetConfig

                                    • @@ -656,7 +656,7 @@

                                      Static versions

                                    • @@ -687,7 +687,7 @@

                                      Static watch

                                    • diff --git a/docs/api/classes/ceramicdaemon.html b/docs/api/classes/ceramicdaemon.html index 47d6f60dcb..4a21b1a3a8 100644 --- a/docs/api/classes/ceramicdaemon.html +++ b/docs/api/classes/ceramicdaemon.html @@ -129,7 +129,7 @@

                                      constructor

                                    • Parameters

                                      @@ -154,7 +154,7 @@

                                      ceramic

                                      ceramic: Ceramic
                                      @@ -171,7 +171,7 @@

                                      _buildHttpLog

                                    • Parameters

                                      @@ -203,7 +203,7 @@

                                      _notSupported

                                    • Parameters

                                      @@ -232,7 +232,7 @@

                                      applyRecord

                                    • @@ -266,7 +266,7 @@

                                      close

                                    • @@ -288,7 +288,7 @@

                                      createDocFromGenesis

                                    • @@ -322,7 +322,7 @@

                                      listPinned

                                    • @@ -356,7 +356,7 @@

                                      pinDocument

                                    • @@ -390,7 +390,7 @@

                                      records

                                    • @@ -424,7 +424,7 @@

                                      registerAPIPaths

                                    • Parameters

                                      @@ -450,7 +450,7 @@

                                      show

                                    • @@ -484,7 +484,7 @@

                                      state

                                    • @@ -518,7 +518,7 @@

                                      unpinDocument

                                    • @@ -552,7 +552,7 @@

                                      versions

                                    • @@ -586,7 +586,7 @@

                                      Static create

                                    • diff --git a/docs/api/classes/dispatcher.html b/docs/api/classes/dispatcher.html index 4cc18814a5..da8d653d7f 100644 --- a/docs/api/classes/dispatcher.html +++ b/docs/api/classes/dispatcher.html @@ -147,7 +147,7 @@

                                      constructor

                                      Parameters

                                      @@ -172,7 +172,7 @@

                                      _ipfs

                                      _ipfs: Ipfs.Ipfs
                                      @@ -182,7 +182,7 @@

                                      topic

                                      topic: string
                                      @@ -255,7 +255,7 @@

                                      close

                                    • @@ -340,7 +340,7 @@

                                      handleMessage

                                    • @@ -371,7 +371,7 @@

                                      init

                                    • @@ -666,7 +666,7 @@

                                      publishHead

                                    • @@ -733,7 +733,7 @@

                                      register

                                    • @@ -833,7 +833,7 @@

                                      retrieveRecord

                                    • @@ -888,7 +888,7 @@

                                      storeRecord

                                    • @@ -919,7 +919,7 @@

                                      unregister

                                    • diff --git a/docs/api/classes/doctype.html b/docs/api/classes/doctype.html index 02ca037906..ffff82d0c9 100644 --- a/docs/api/classes/doctype.html +++ b/docs/api/classes/doctype.html @@ -151,7 +151,7 @@

                                      constructor

                                      Parameters

                                      @@ -194,7 +194,7 @@

                                      content

                                    • Returns any

                                      @@ -212,7 +212,7 @@

                                      context

                                    • Returns Context

                                      @@ -220,7 +220,7 @@

                                      Returns

                                      Parameters

                                      @@ -243,7 +243,7 @@

                                      controllers

                                    • Returns Array<string>

                                      @@ -260,7 +260,7 @@

                                      doctype

                                    • Returns string

                                      @@ -277,7 +277,7 @@

                                      head

                                    • Returns CID

                                      @@ -294,7 +294,7 @@

                                      id

                                    • Returns DocID

                                      @@ -311,7 +311,7 @@

                                      metadata

                                    • Returns DocMetadata

                                      @@ -329,7 +329,7 @@

                                      state

                                    • Returns DocState

                                      @@ -337,7 +337,7 @@

                                      Returns

                                      Parameters

                                      @@ -408,7 +408,7 @@

                                      Abstract change

                                    • diff --git a/docs/api/classes/doctypeutils.html b/docs/api/classes/doctypeutils.html index b03bf8f603..68180999e1 100644 --- a/docs/api/classes/doctypeutils.html +++ b/docs/api/classes/doctypeutils.html @@ -112,7 +112,7 @@

                                      Static convertRecordTo
                                    • @@ -149,7 +149,7 @@

                                      Static deserializeRecord
                                      @@ -180,7 +180,7 @@

                                      Static deserializeState

                                      @@ -211,7 +211,7 @@

                                      Static isAnchorRecord<
                                    • @@ -242,7 +242,7 @@

                                      Static isSignedRecord<
                                    • @@ -273,7 +273,7 @@

                                      Static isSignedRecordD
                                    • @@ -304,7 +304,7 @@

                                      Static makeReadOnly
                                      @@ -341,7 +341,7 @@

                                      Static serializeRecord

                                    • @@ -372,7 +372,7 @@

                                      Static serializeState

                                    • diff --git a/docs/api/classes/document.html b/docs/api/classes/document.html index 4cae6dc1ab..2442bec538 100644 --- a/docs/api/classes/document.html +++ b/docs/api/classes/document.html @@ -114,11 +114,10 @@

                                      Accessors

                                      @@ -178,7 +177,7 @@

                                      constructor

                                      Parameters

                                      @@ -206,7 +205,7 @@

                                      _context

                                      _context: Context
                                      @@ -216,7 +215,7 @@

                                      dispatcher

                                      dispatcher: Dispatcher
                                      @@ -226,7 +225,7 @@

                                      doctypeHandler

                                      doctypeHandler: DoctypeHandler<Doctype>
                                      @@ -241,7 +240,7 @@

                                      Readonly id

                                      Returns DocID

                                      @@ -254,7 +253,7 @@

                                      pinStore

                                      pinStore: PinStore
                                      @@ -264,7 +263,7 @@

                                      Readonly version

                                      version: CID
                                      @@ -293,7 +292,7 @@

                                      content

                                      @@ -339,17 +338,18 @@

                                      Returns any

                                    -
                                    +

                                    controllers

                                    -
                                    -
                                    - -

                                    owners

                                    -
                                      -
                                    • get owners(): Array<string>
                                    • -
                                    -
                                      -
                                    • - -

                                      Returns Array<string>

                                      -
                                    • -
                                    -

                                    state

                                    @@ -459,7 +441,7 @@

                                    state

                                    @@ -484,7 +466,7 @@

                                    _syncState

                                  • Returns Promise<void>

                                    @@ -547,7 +529,7 @@

                                    anchor

                                  • @@ -569,7 +551,7 @@

                                    applyRecord

                                  • @@ -613,7 +595,7 @@

                                    change

                                    Parameters

                                    @@ -636,7 +618,7 @@

                                    close

                                  • @@ -724,7 +706,7 @@

                                    getVersion

                                  • @@ -761,7 +743,7 @@

                                    listVersions

                                  • @@ -1184,7 +1166,7 @@

                                    toString

                                  • @@ -1206,7 +1188,7 @@

                                    validate

                                  • @@ -1228,7 +1210,7 @@

                                    Static applyRecord

                                  • Parameters

                                    @@ -1263,7 +1245,7 @@

                                    Static create

                                  • @@ -1336,7 +1318,7 @@

                                    Static createFromGenes
                                  • Parameters

                                    @@ -1368,7 +1350,7 @@

                                    Static getVersion

                                  • @@ -1411,7 +1393,7 @@

                                    Static listVersions

                                  • Parameters

                                    @@ -1471,7 +1453,7 @@

                                    Static load

                                  • @@ -1556,7 +1538,7 @@

                                    Static loadDocumentRec
                                  • Parameters

                                    @@ -1582,7 +1564,7 @@

                                    Static loadSchema

                                  • @@ -1625,7 +1607,7 @@

                                    Static loadSchemaById<
                                  • @@ -1668,7 +1650,7 @@

                                    Static wait

                                  • @@ -1736,7 +1718,7 @@

                                    Returns Promise context

                                  • -
                                  • +
                                  • controllers
                                  • @@ -1748,9 +1730,6 @@

                                    Returns Promise metadata

                                  • -
                                  • - owners -
                                  • state
                                  • diff --git a/docs/api/classes/emptytokenerror.html b/docs/api/classes/emptytokenerror.html index b6153da2b9..7d137ee3b6 100644 --- a/docs/api/classes/emptytokenerror.html +++ b/docs/api/classes/emptytokenerror.html @@ -111,7 +111,7 @@

                                    constructor

                                  • Parameters

                                    diff --git a/docs/api/classes/ethereumanchorservice.html b/docs/api/classes/ethereumanchorservice.html index 3df2fcfe94..d4ba8ef2e7 100644 --- a/docs/api/classes/ethereumanchorservice.html +++ b/docs/api/classes/ethereumanchorservice.html @@ -131,7 +131,7 @@

                                    constructor

                                  • @@ -639,7 +639,7 @@

                                    requestAnchor

                                    @@ -701,7 +701,7 @@

                                    validateChainInclusion

                                    diff --git a/docs/api/classes/ipfspinning.html b/docs/api/classes/ipfspinning.html index b6accd4882..05c186ea04 100644 --- a/docs/api/classes/ipfspinning.html +++ b/docs/api/classes/ipfspinning.html @@ -136,7 +136,7 @@

                                    constructor

                                  • Parameters

                                    @@ -161,7 +161,7 @@

                                    Readonly ipfsAddress

                                    ipfsAddress: string
                                  • @@ -171,7 +171,7 @@

                                    Static designator

                                    designator: string = "ipfs"
                                    @@ -188,7 +188,7 @@

                                    ipfs

                                  • Returns any

                                    @@ -209,7 +209,7 @@

                                    close

                                    Returns Promise<void>

                                    @@ -227,7 +227,7 @@

                                    open

                                    Returns Promise<void>

                                    @@ -245,7 +245,7 @@

                                    pin

                                    Parameters

                                    @@ -269,7 +269,7 @@

                                    unpin

                                    Parameters

                                    diff --git a/docs/api/classes/levelstatestore.html b/docs/api/classes/levelstatestore.html index aea12005e1..9f2fe4a626 100644 --- a/docs/api/classes/levelstatestore.html +++ b/docs/api/classes/levelstatestore.html @@ -128,7 +128,7 @@

                                    constructor

                                  • Parameters

                                    @@ -154,7 +154,7 @@

                                    store

                                  • @@ -180,7 +180,7 @@

                                    close

                                    @@ -203,7 +203,7 @@

                                    exists

                                    @@ -235,7 +235,7 @@

                                    list

                                    @@ -267,7 +267,7 @@

                                    load

                                    @@ -299,7 +299,7 @@

                                    open

                                    @@ -322,7 +322,7 @@

                                    remove

                                    @@ -354,7 +354,7 @@

                                    save

                                    diff --git a/docs/api/classes/loggerprovider.html b/docs/api/classes/loggerprovider.html index 3035bc42ba..38432de27c 100644 --- a/docs/api/classes/loggerprovider.html +++ b/docs/api/classes/loggerprovider.html @@ -106,7 +106,7 @@

                                    Static _toText

                                  • @@ -140,7 +140,7 @@

                                    Static addPlugin

                                  • @@ -183,7 +183,7 @@

                                    Static init

                                  • diff --git a/docs/api/classes/logtofiles.html b/docs/api/classes/logtofiles.html index d56a66e235..c254053ea9 100644 --- a/docs/api/classes/logtofiles.html +++ b/docs/api/classes/logtofiles.html @@ -104,7 +104,7 @@

                                    Static main

                                  • diff --git a/docs/api/classes/mockanchorservice.html b/docs/api/classes/mockanchorservice.html index bbdfac51f5..3733ae0b8d 100644 --- a/docs/api/classes/mockanchorservice.html +++ b/docs/api/classes/mockanchorservice.html @@ -124,7 +124,7 @@

                                    constructor

                                  • Parameters

                                    @@ -628,7 +628,7 @@

                                    requestAnchor

                                    Parameters

                                    @@ -679,7 +679,7 @@

                                    validateChainInclusion

                                    Parameters

                                    diff --git a/docs/api/classes/pinningaggregation.html b/docs/api/classes/pinningaggregation.html index e568ab8ce0..7d04d89181 100644 --- a/docs/api/classes/pinningaggregation.html +++ b/docs/api/classes/pinningaggregation.html @@ -125,7 +125,7 @@

                                    constructor

                                  • Parameters

                                    @@ -153,7 +153,7 @@

                                    Readonly backends

                                    backends: Pinning[]
                                    @@ -171,7 +171,7 @@

                                    close

                                    @@ -195,7 +195,7 @@

                                    open

                                    @@ -219,7 +219,7 @@

                                    pin

                                    @@ -249,7 +249,7 @@

                                    unpin

                                    diff --git a/docs/api/classes/pinstore.html b/docs/api/classes/pinstore.html index 82b8caa91d..687fa6324c 100644 --- a/docs/api/classes/pinstore.html +++ b/docs/api/classes/pinstore.html @@ -124,7 +124,7 @@

                                    constructor

                                  • Parameters

                                    @@ -191,7 +191,7 @@

                                    Readonly pinning

                                    pinning: Pinning
                                    @@ -201,7 +201,7 @@

                                    Readonly resolve

                                    resolve: (path: string) => Promise<CID>
                                    @@ -232,7 +232,7 @@

                                    Readonly retrieve

                                    retrieve: (cid: CID) => Promise<any | null>
                                    @@ -263,7 +263,7 @@

                                    Readonly stateStore

                                    stateStore: StateStore
                                    @@ -280,7 +280,7 @@

                                    add

                                  • Parameters

                                    @@ -303,7 +303,7 @@

                                    close

                                  • Returns Promise<void>

                                    @@ -320,7 +320,7 @@

                                    ls

                                  • Parameters

                                    @@ -343,7 +343,7 @@

                                    open

                                  • Returns Promise<void>

                                    @@ -360,7 +360,7 @@

                                    Protected pointsOfIntere
                                  • Parameters

                                    @@ -383,7 +383,7 @@

                                    rm

                                  • Parameters

                                    diff --git a/docs/api/classes/pinstorefactory.html b/docs/api/classes/pinstorefactory.html index 886f40ad6d..0061275977 100644 --- a/docs/api/classes/pinstorefactory.html +++ b/docs/api/classes/pinstorefactory.html @@ -111,7 +111,7 @@

                                    constructor

                                  • Parameters

                                    @@ -139,7 +139,7 @@

                                    Readonly context

                                    context: Context
                                    @@ -149,7 +149,7 @@

                                    Readonly pinnings

                                    pinnings: string[]
                                    @@ -159,7 +159,7 @@

                                    Readonly stateStoreP
                                    stateStorePath: string
                                    @@ -176,7 +176,7 @@

                                    open

                                  • Returns Promise<PinStore>

                                    diff --git a/docs/api/classes/powergatepinning.html b/docs/api/classes/powergatepinning.html index 716abce92f..18df451433 100644 --- a/docs/api/classes/powergatepinning.html +++ b/docs/api/classes/powergatepinning.html @@ -127,7 +127,7 @@

                                    constructor

                                  • Parameters

                                    @@ -152,7 +152,7 @@

                                    Readonly endpoint

                                    endpoint: string
                                    @@ -162,7 +162,7 @@

                                    Readonly token

                                    token: string
                                    @@ -172,7 +172,7 @@

                                    Static designator

                                    designator: string = "powergate"
                                    @@ -189,7 +189,7 @@

                                    pow

                                  • Returns any

                                    @@ -210,7 +210,7 @@

                                    close

                                    Returns Promise<void>

                                    @@ -228,7 +228,7 @@

                                    open

                                    Returns Promise<void>

                                    @@ -246,7 +246,7 @@

                                    pin

                                    Parameters

                                    @@ -270,7 +270,7 @@

                                    unpin

                                    Parameters

                                    @@ -293,7 +293,7 @@

                                    Protected waitForJo
                                  • Parameters

                                    diff --git a/docs/api/classes/tiledoctype.html b/docs/api/classes/tiledoctype.html index 3cda1addea..d99a07b485 100644 --- a/docs/api/classes/tiledoctype.html +++ b/docs/api/classes/tiledoctype.html @@ -99,11 +99,11 @@

                                    Accessors

                                    @@ -217,6 +217,24 @@

                                    Returns any

                                  +
                                  + +

                                  controllers

                                  +
                                    +
                                  • get controllers(): Array<string>
                                  • +
                                  + +

                                  doctype

                                  @@ -289,24 +307,6 @@

                                  Returns DocMetada

                                -
                                - -

                                owners

                                -
                                  -
                                • get owners(): Array<string>
                                • -
                                -
                                  -
                                • - -

                                  Returns Array<string>

                                  -
                                • -
                                -

                                state

                                @@ -400,7 +400,7 @@

                                change

                                @@ -890,7 +890,7 @@

                                Static create

                              • @@ -933,7 +933,7 @@

                                Static makeGenesis

                              • @@ -992,6 +992,9 @@

                                Returns Promise context

                              • +
                              • + controllers +
                              • doctype
                              • @@ -1004,9 +1007,6 @@

                                Returns Promise metadata

                              • -
                              • - owners -
                              • state
                              • diff --git a/docs/api/classes/tiledoctypehandler.html b/docs/api/classes/tiledoctypehandler.html index 01af0555f6..b7de9a4e09 100644 --- a/docs/api/classes/tiledoctypehandler.html +++ b/docs/api/classes/tiledoctypehandler.html @@ -119,7 +119,7 @@

                                doctype

                              • @@ -141,7 +141,7 @@

                                name

                              • @@ -166,7 +166,7 @@

                                applyRecord

                              • @@ -215,7 +215,7 @@

                                create

                              • @@ -258,7 +258,7 @@

                                verifyJWS

                              • diff --git a/docs/api/classes/unknownpinningservice.html b/docs/api/classes/unknownpinningservice.html index 75b29eba37..e6e611a42d 100644 --- a/docs/api/classes/unknownpinningservice.html +++ b/docs/api/classes/unknownpinningservice.html @@ -111,7 +111,7 @@

                                constructor

                              • Parameters

                                diff --git a/docs/api/classes/utils.html b/docs/api/classes/utils.html index 5f311678ff..adeb3078f3 100644 --- a/docs/api/classes/utils.html +++ b/docs/api/classes/utils.html @@ -109,7 +109,7 @@

                                Static validator

                                validator: any = new ajv({ allErrors: true })
                                @@ -126,7 +126,7 @@

                                Static awaitCondition

                              • @@ -160,7 +160,7 @@

                                Static isSchemaValid
                                @@ -191,7 +191,7 @@

                                Static validate

                              • @@ -228,7 +228,7 @@

                                Static validateDoctype

                              • diff --git a/docs/api/enums/anchorstatus.html b/docs/api/enums/anchorstatus.html index 2c68a827d9..e18ac344bc 100644 --- a/docs/api/enums/anchorstatus.html +++ b/docs/api/enums/anchorstatus.html @@ -96,7 +96,7 @@

                                ANCHORED

                                ANCHORED:
                                @@ -106,7 +106,7 @@

                                FAILED

                                FAILED:
                                @@ -116,7 +116,7 @@

                                NOT_REQUESTED

                                NOT_REQUESTED:
                                @@ -126,7 +126,7 @@

                                PENDING

                                PENDING:
                                @@ -136,7 +136,7 @@

                                PROCESSING

                                PROCESSING:
                                diff --git a/docs/api/enums/jobstatus.html b/docs/api/enums/jobstatus.html index e51a4f76fc..6f568fbc45 100644 --- a/docs/api/enums/jobstatus.html +++ b/docs/api/enums/jobstatus.html @@ -90,7 +90,7 @@

                                JOB_STATUS_CANCELED

                                JOB_STATUS_CANCELED: = 4
                                @@ -100,7 +100,7 @@

                                JOB_STATUS_EXECUTING

                                JOB_STATUS_EXECUTING: = 2
                                @@ -110,7 +110,7 @@

                                JOB_STATUS_FAILED

                                JOB_STATUS_FAILED: = 3
                                @@ -120,7 +120,7 @@

                                JOB_STATUS_QUEUED

                                JOB_STATUS_QUEUED: = 1
                                @@ -130,7 +130,7 @@

                                JOB_STATUS_SUCCESS

                                JOB_STATUS_SUCCESS: = 5
                                @@ -140,7 +140,7 @@

                                JOB_STATUS_UNSPECIFIED

                                JOB_STATUS_UNSPECIFIED: = 0
                                diff --git a/docs/api/enums/msgtype.html b/docs/api/enums/msgtype.html index dea33a6ecd..6a1ed7b635 100644 --- a/docs/api/enums/msgtype.html +++ b/docs/api/enums/msgtype.html @@ -94,7 +94,7 @@

                                REQUEST

                                REQUEST:
                                @@ -104,7 +104,7 @@

                                RESPONSE

                                RESPONSE:
                                @@ -114,7 +114,7 @@

                                UPDATE

                                UPDATE:
                                diff --git a/docs/api/enums/signaturestatus.html b/docs/api/enums/signaturestatus.html index 33644085c0..6b83cda07f 100644 --- a/docs/api/enums/signaturestatus.html +++ b/docs/api/enums/signaturestatus.html @@ -94,7 +94,7 @@

                                GENESIS

                                GENESIS:
                                @@ -104,7 +104,7 @@

                                PARTIAL

                                PARTIAL:
                                @@ -114,7 +114,7 @@

                                SIGNED

                                SIGNED:
                                diff --git a/docs/api/globals.html b/docs/api/globals.html index bde37515d2..64c7554728 100644 --- a/docs/api/globals.html +++ b/docs/api/globals.html @@ -202,7 +202,7 @@

                                Plugin

                                Plugin: (rootLogger: RootLogger, loggerOptions: Options, pluginOptions?: PluginOptions) => void
                                @@ -252,7 +252,7 @@

                                Const API_PATH

                                API_PATH: "/api/v0" = "/api/v0"
                                @@ -262,7 +262,7 @@

                                Const CERAMIC_HOST

                                CERAMIC_HOST: "http://localhost:7007" = "http://localhost:7007"
                                @@ -272,7 +272,7 @@

                                Const DEFAULT_ANCHOR_SE
                                DEFAULT_ANCHOR_SERVICE_URL: "https://cas.3box.io:8081/api/v0/requests" = "https://cas.3box.io:8081/api/v0/requests"
                                @@ -282,7 +282,7 @@

                                Const DEFAULT_CLI_CONFI
                                DEFAULT_CLI_CONFIG_FILE: "config.json" = "config.json"
                                @@ -292,7 +292,7 @@

                                Const DEFAULT_CLI_CONFI
                                DEFAULT_CLI_CONFIG_PATH: string = path.join(os.homedir(), '.ceramic')
                                @@ -302,7 +302,7 @@

                                Const DEFAULT_MAX_POLL_
                                DEFAULT_MAX_POLL_TIME: 7200000 = 7200000
                                @@ -312,7 +312,7 @@

                                Const DEFAULT_PINNING_S
                                DEFAULT_PINNING_STORE_PATH: ".pinning.store" = ".pinning.store"
                                @@ -322,7 +322,7 @@

                                Const DEFAULT_POLL_TIME
                                DEFAULT_POLL_TIME: 5000 = 5000
                                @@ -332,7 +332,7 @@

                                Const DEFAULT_PORT

                                DEFAULT_PORT: 7007 = 7007
                                @@ -342,7 +342,7 @@

                                Const DOCID_CODEC

                                DOCID_CODEC: 206 = 206
                                @@ -352,10 +352,10 @@

                                Const DOCTYPE

                                DOCTYPE: "tile" = "tile"
                                @@ -365,7 +365,7 @@

                                Const FROM_CONTEXT

                                FROM_CONTEXT: "__context" = "__context"
                                @@ -375,7 +375,7 @@

                                Const TOPIC

                                TOPIC: "/ceramic" = "/ceramic"
                                @@ -390,7 +390,7 @@

                                Const config

                                config: Command = program.command('config')
                                @@ -400,7 +400,7 @@

                                Const fs

                                fs: any = require('fs').promises
                                @@ -410,7 +410,7 @@

                                Const pin

                                pin: Command = program.command('pin')
                                @@ -420,7 +420,7 @@

                                Const schemas

                                schemas: Command = program.command('schema')
                                @@ -437,7 +437,7 @@

                                DoctypeStatic

                              • @@ -465,7 +465,7 @@

                                Const docIdUrl

                              • Parameters

                                @@ -488,7 +488,7 @@

                                fetchJson

                              • Parameters

                                @@ -514,7 +514,7 @@

                                Const getKey

                              • Parameters

                                @@ -545,7 +545,7 @@

                                Const keyToDidDoc

                              • @@ -576,7 +576,7 @@

                                Const normalizeDocID

                              • Parameters

                                @@ -599,7 +599,7 @@

                                Const toApiPath

                              • Parameters

                                @@ -622,7 +622,7 @@

                                typeDocID

                              • Parameters

                                @@ -645,7 +645,7 @@

                                wrapDocument

                              • Parameters

                                @@ -670,7 +670,7 @@

                                Const ETH_CHAIN_ID_ETH_CHAIN_ID_MAPPINGS: object

                              • @@ -684,7 +684,7 @@

                                eip155:1

                                eip155:1: object
                                @@ -693,7 +693,7 @@

                                chain

                                chain: string = "ETH"
                                @@ -703,7 +703,7 @@

                                chainId

                                chainId: number = 1
                                @@ -713,7 +713,7 @@

                                network

                                network: string = "mainnet"
                                @@ -723,7 +723,7 @@

                                networkId

                                networkId: number = 1
                                @@ -733,7 +733,7 @@

                                type

                                type: string = "Production"
                                @@ -744,7 +744,7 @@

                                eip155:3

                                eip155:3: object
                                @@ -753,7 +753,7 @@

                                chain

                                chain: string = "ETH"
                                @@ -763,7 +763,7 @@

                                chainId

                                chainId: number = 3
                                @@ -773,7 +773,7 @@

                                network

                                network: string = "ropsten"
                                @@ -783,7 +783,7 @@

                                networkId

                                networkId: number = 3
                                @@ -793,7 +793,7 @@

                                type

                                type: string = "Test"
                                @@ -805,7 +805,7 @@

                                Const defaultOpts

                                defaultOpts: object
                                @@ -819,7 +819,7 @@

                                format

                                format: string = "text"
                                @@ -829,7 +829,7 @@

                                level

                                level: string = "info"
                                @@ -839,7 +839,7 @@

                                stacktrace

                                stacktrace: object
                                @@ -848,7 +848,7 @@

                                depth

                                depth: 3 = 3
                                @@ -858,7 +858,7 @@

                                excess

                                excess: 0 = 0
                                @@ -868,7 +868,7 @@

                                levels

                                levels: ["trace", "warn", "error"] = ['trace', 'warn', 'error']
                                @@ -880,16 +880,16 @@

                                Const prefixToDriverMap
                                prefixToDriverMap: object

                                231

                                -
                                231: "/home/spencer/js-ceramic2/packages/key-did-resolver/src/secp256k1" = secp256k1
                                +
                                231: "/home/spencer/js-ceramic1/packages/key-did-resolver/src/secp256k1" = secp256k1
                                @@ -900,7 +900,7 @@

                                Const table

                                table: object
                                @@ -909,7 +909,7 @@

                                caip10-link

                                caip10-link: number = 1
                                @@ -919,7 +919,7 @@

                                tile

                                tile: number = 0
                                diff --git a/docs/api/interfaces/accountlinkparams.html b/docs/api/interfaces/accountlinkparams.html index 49354a62f0..2636966d23 100644 --- a/docs/api/interfaces/accountlinkparams.html +++ b/docs/api/interfaces/accountlinkparams.html @@ -115,7 +115,7 @@

                                Optional content

                                content: object
                                diff --git a/docs/api/interfaces/anchorproof.html b/docs/api/interfaces/anchorproof.html index 7b51ef88b2..b520ae8843 100644 --- a/docs/api/interfaces/anchorproof.html +++ b/docs/api/interfaces/anchorproof.html @@ -104,7 +104,7 @@

                                blockNumber

                                blockNumber: number
                                @@ -114,7 +114,7 @@

                                blockTimestamp

                                blockTimestamp: number
                                @@ -124,7 +124,7 @@

                                chainId

                                chainId: string
                                @@ -134,7 +134,7 @@

                                root

                                root: CID
                                @@ -144,7 +144,7 @@

                                txHash

                                txHash: CID
                                diff --git a/docs/api/interfaces/anchorrecord.html b/docs/api/interfaces/anchorrecord.html index 176986b239..17219c1c1d 100644 --- a/docs/api/interfaces/anchorrecord.html +++ b/docs/api/interfaces/anchorrecord.html @@ -102,7 +102,7 @@

                                path

                                path: string
                                @@ -112,7 +112,7 @@

                                prev

                                prev: CID
                                @@ -122,7 +122,7 @@

                                proof

                                proof: CID
                                diff --git a/docs/api/interfaces/anchorserviceresponse.html b/docs/api/interfaces/anchorserviceresponse.html index e1dabc5e4d..db6a4e09bc 100644 --- a/docs/api/interfaces/anchorserviceresponse.html +++ b/docs/api/interfaces/anchorserviceresponse.html @@ -103,7 +103,7 @@

                                Optional anchorRecord: CID

                                @@ -113,7 +113,7 @@

                                Optional anchorScheduledFor: number

                                @@ -123,7 +123,7 @@

                                Readonly message

                                message: string
                                @@ -133,7 +133,7 @@

                                Readonly status

                                status: string
                                diff --git a/docs/api/interfaces/ceramicapi.html b/docs/api/interfaces/ceramicapi.html index 9fc7fb9cc6..c0e6df7346 100644 --- a/docs/api/interfaces/ceramicapi.html +++ b/docs/api/interfaces/ceramicapi.html @@ -116,7 +116,7 @@

                                Optional did

                                did: DID
                                @@ -126,7 +126,7 @@

                                pin

                                pin: PinApi
                                @@ -143,7 +143,7 @@

                                addDoctypeHandler

                              • @@ -180,7 +180,7 @@

                                applyRecord

                              • @@ -229,7 +229,7 @@

                                close

                              • @@ -251,7 +251,7 @@

                                createDocument

                              • @@ -300,7 +300,7 @@

                                createDocumentFromGenesis

                              • @@ -343,7 +343,7 @@

                                findDoctypeHandler

                              • @@ -380,7 +380,7 @@

                                listVersions

                              • @@ -411,7 +411,7 @@

                                loadDocument

                              • @@ -454,7 +454,7 @@

                                loadDocumentRecords

                              • @@ -485,7 +485,7 @@

                                setDIDProvider

                              • diff --git a/docs/api/interfaces/ceramicconfig.html b/docs/api/interfaces/ceramicconfig.html index 737f1d0fa3..fed9dbb78b 100644 --- a/docs/api/interfaces/ceramicconfig.html +++ b/docs/api/interfaces/ceramicconfig.html @@ -111,7 +111,7 @@

                                Optional anchorServiceanchorServiceUrl: string

                                @@ -121,7 +121,7 @@

                                Optional didProvider

                                didProvider: DIDProvider
                                @@ -131,7 +131,7 @@

                                Optional didResolver

                                didResolver: Resolver
                                @@ -141,7 +141,7 @@

                                Optional ethereumRpc
                                ethereumRpcUrl: string
                                @@ -151,7 +151,7 @@

                                Optional gateway

                                gateway: boolean
                                @@ -161,7 +161,7 @@

                                Optional logLevel

                                logLevel: string
                                @@ -171,7 +171,7 @@

                                Optional logToFiles

                                logToFiles: boolean
                                @@ -181,7 +181,7 @@

                                Optional logToFilesP
                                logToFilesPlugin: { options: LoggerPluginOptions; plugin: LoggerPlugin }
                                @@ -202,7 +202,7 @@

                                Optional pinning

                                pinning: string[]
                                @@ -212,7 +212,7 @@

                                Optional stateStoreP
                                stateStorePath: string
                                @@ -222,7 +222,7 @@

                                Optional topic

                                topic: string
                                @@ -232,7 +232,7 @@

                                Optional validateDocs

                                validateDocs: boolean
                                diff --git a/docs/api/interfaces/ciddoc.html b/docs/api/interfaces/ciddoc.html index a4adc92fe3..ba84fa82b3 100644 --- a/docs/api/interfaces/ciddoc.html +++ b/docs/api/interfaces/ciddoc.html @@ -101,7 +101,7 @@

                                Readonly cid

                                cid: CID
                                @@ -111,7 +111,7 @@

                                Readonly docId

                                docId: string
                                diff --git a/docs/api/interfaces/cliconfig.html b/docs/api/interfaces/cliconfig.html index 4095ad80c1..cb54fd0cd2 100644 --- a/docs/api/interfaces/cliconfig.html +++ b/docs/api/interfaces/cliconfig.html @@ -110,7 +110,7 @@

                                Optional ceramicHost

                                ceramicHost: string
                                @@ -120,7 +120,7 @@

                                Optional seed

                                seed: string
                                diff --git a/docs/api/interfaces/context.html b/docs/api/interfaces/context.html index 6ec4f6b028..bdeeff6292 100644 --- a/docs/api/interfaces/context.html +++ b/docs/api/interfaces/context.html @@ -105,7 +105,7 @@

                                Optional anchorServiceanchorService: AnchorService

                            @@ -115,7 +115,7 @@

                            Optional api

                            @@ -125,7 +125,7 @@

                            Optional did

                            did: DID
                            @@ -135,7 +135,7 @@

                            Optional ipfs

                            ipfs: Ipfs
                            @@ -145,7 +145,7 @@

                            Optional provider

                            provider: DIDProvider
                            @@ -155,7 +155,7 @@

                            Optional resolver

                            resolver: Resolver
                            diff --git a/docs/api/interfaces/createopts.html b/docs/api/interfaces/createopts.html index dc58cf7f99..0e61636674 100644 --- a/docs/api/interfaces/createopts.html +++ b/docs/api/interfaces/createopts.html @@ -111,7 +111,7 @@

                            Optional anchorServiceanchorServiceUrl: string

                        @@ -121,7 +121,7 @@

                        debug

                        debug: boolean
                        @@ -131,7 +131,7 @@

                        Optional ethereumRpc
                        ethereumRpcUrl: string
                        @@ -141,7 +141,7 @@

                        Optional gateway

                        gateway: boolean
                        @@ -151,7 +151,7 @@

                        Optional ipfs

                        ipfs: Ipfs.Ipfs
                        @@ -161,7 +161,7 @@

                        Optional ipfsHost

                        ipfsHost: string
                        @@ -171,7 +171,7 @@

                        Optional logPath

                        logPath: string
                        @@ -181,7 +181,7 @@

                        Optional logToFiles

                        logToFiles: boolean
                        @@ -191,7 +191,7 @@

                        Optional pinning

                        pinning: string[]
                        @@ -201,7 +201,7 @@

                        Optional port

                        port: number
                        @@ -211,7 +211,7 @@

                        Optional stateStoreP
                        stateStorePath: string
                        @@ -221,7 +221,7 @@

                        Optional validateDocs

                        validateDocs: boolean
                      diff --git a/docs/api/interfaces/docmetadata.html b/docs/api/interfaces/docmetadata.html index aea31eb15c..9d291752c0 100644 --- a/docs/api/interfaces/docmetadata.html +++ b/docs/api/interfaces/docmetadata.html @@ -112,7 +112,7 @@

                      controllers

                      controllers: Array<string>
                      @@ -122,7 +122,7 @@

                      Optional isUnique

                      isUnique: boolean
                      @@ -132,7 +132,7 @@

                      Optional schema

                      schema: string
                      @@ -142,7 +142,7 @@

                      Optional tags

                      tags: Array<string>
                      diff --git a/docs/api/interfaces/docnext.html b/docs/api/interfaces/docnext.html index 4ab757a513..9c0e5119da 100644 --- a/docs/api/interfaces/docnext.html +++ b/docs/api/interfaces/docnext.html @@ -102,7 +102,7 @@

                      Optional content

                      content: any
                      @@ -112,7 +112,7 @@

                      Optional controllers

                      controllers: Array<string>
                      @@ -122,7 +122,7 @@

                      Optional metadata

                      metadata: DocMetadata
                      diff --git a/docs/api/interfaces/docopts.html b/docs/api/interfaces/docopts.html index 386f732f6e..5af0c6a4cf 100644 --- a/docs/api/interfaces/docopts.html +++ b/docs/api/interfaces/docopts.html @@ -101,7 +101,7 @@

                      Optional applyOnly

                      applyOnly: boolean
                      @@ -111,7 +111,7 @@

                      Optional skipWait

                      skipWait: boolean
                      diff --git a/docs/api/interfaces/docparams.html b/docs/api/interfaces/docparams.html index 97c8f61235..d79b918c2e 100644 --- a/docs/api/interfaces/docparams.html +++ b/docs/api/interfaces/docparams.html @@ -109,7 +109,7 @@

                      Optional metadata

                      metadata: DocMetadata
                      diff --git a/docs/api/interfaces/docstate.html b/docs/api/interfaces/docstate.html index e4c8944672..2de56db072 100644 --- a/docs/api/interfaces/docstate.html +++ b/docs/api/interfaces/docstate.html @@ -108,7 +108,7 @@

                      Optional anchorProof

                      anchorProof: AnchorProof
                      @@ -118,7 +118,7 @@

                      Optional anchorScheduled<
                      anchorScheduledFor: number
                      @@ -128,7 +128,7 @@

                      anchorStatus

                      anchorStatus: AnchorStatus
                      @@ -138,7 +138,7 @@

                      content

                      content: any
                      @@ -148,7 +148,7 @@

                      doctype

                      doctype: string
                      @@ -158,7 +158,7 @@

                      log

                      log: Array<CID>
                      @@ -168,7 +168,7 @@

                      metadata

                      metadata: DocMetadata
                      @@ -178,7 +178,7 @@

                      Optional next

                      next: DocNext
                      @@ -188,7 +188,7 @@

                      signature

                      signature: SignatureStatus
                      diff --git a/docs/api/interfaces/doctypeconstructor.html b/docs/api/interfaces/doctypeconstructor.html index 18bda217ff..cbbb9ef967 100644 --- a/docs/api/interfaces/doctypeconstructor.html +++ b/docs/api/interfaces/doctypeconstructor.html @@ -118,7 +118,7 @@

                      constructor

                    • @@ -162,7 +162,7 @@

                      makeGenesis

                    • diff --git a/docs/api/interfaces/doctypehandler.html b/docs/api/interfaces/doctypehandler.html index 67f72aacf0..121ae355f9 100644 --- a/docs/api/interfaces/doctypehandler.html +++ b/docs/api/interfaces/doctypehandler.html @@ -115,7 +115,7 @@

                      doctype

                      doctype: DoctypeConstructor<T>
                      @@ -130,7 +130,7 @@

                      name

                      name: string
                      @@ -152,7 +152,7 @@

                      applyRecord

                    • diff --git a/docs/api/interfaces/ethnetwork.html b/docs/api/interfaces/ethnetwork.html index 06d87d4fc7..d665444ae7 100644 --- a/docs/api/interfaces/ethnetwork.html +++ b/docs/api/interfaces/ethnetwork.html @@ -104,7 +104,7 @@

                      chain

                      chain: string
                      @@ -114,7 +114,7 @@

                      chainId

                      chainId: number
                      @@ -124,7 +124,7 @@

                      network

                      network: string
                      @@ -134,7 +134,7 @@

                      networkId

                      networkId: number
                      @@ -144,7 +144,7 @@

                      type

                      type: string
                      diff --git a/docs/api/interfaces/httplog.html b/docs/api/interfaces/httplog.html index 45ea84b48e..fa455e0aee 100644 --- a/docs/api/interfaces/httplog.html +++ b/docs/api/interfaces/httplog.html @@ -94,7 +94,7 @@

                      request

                      request: object
                      @@ -104,7 +104,7 @@

                      Optional response

                      response: object
                      diff --git a/docs/api/interfaces/logmessage.html b/docs/api/interfaces/logmessage.html index cf2cd5f62b..b32d94c487 100644 --- a/docs/api/interfaces/logmessage.html +++ b/docs/api/interfaces/logmessage.html @@ -104,7 +104,7 @@

                      event

                      event: string
                      @@ -114,7 +114,7 @@

                      Optional from

                      from: string
                      @@ -124,7 +124,7 @@

                      Optional message

                      message: object
                      @@ -134,7 +134,7 @@

                      peer

                      peer: string
                      @@ -144,7 +144,7 @@

                      topic

                      topic: string
                      diff --git a/docs/api/interfaces/options.html b/docs/api/interfaces/options.html index e72b047761..10714faded 100644 --- a/docs/api/interfaces/options.html +++ b/docs/api/interfaces/options.html @@ -103,7 +103,7 @@

                      Optional component

                      component: string
                      @@ -113,7 +113,7 @@

                      Optional format

                      format: string
                      @@ -123,7 +123,7 @@

                      Optional level

                      level: string
                      @@ -133,7 +133,7 @@

                      Optional stacktrace

                      stacktrace: { depth: 3; excess: 0; levels: ["trace", "warn", "error"] }
                      diff --git a/docs/api/interfaces/pinapi.html b/docs/api/interfaces/pinapi.html index 5a3b8c8c0c..66cf3e857e 100644 --- a/docs/api/interfaces/pinapi.html +++ b/docs/api/interfaces/pinapi.html @@ -106,7 +106,7 @@

                      add

                    • @@ -137,7 +137,7 @@

                      ls

                    • @@ -168,7 +168,7 @@

                      rm

                    • diff --git a/docs/api/interfaces/pinning.html b/docs/api/interfaces/pinning.html index 8dcbf288dd..1f1fd52156 100644 --- a/docs/api/interfaces/pinning.html +++ b/docs/api/interfaces/pinning.html @@ -108,7 +108,7 @@

                      close

                    • Returns Promise<void>

                      @@ -125,7 +125,7 @@

                      open

                    • Returns Promise<void>

                      @@ -142,7 +142,7 @@

                      pin

                    • Parameters

                      @@ -165,7 +165,7 @@

                      unpin

                    • Parameters

                      diff --git a/docs/api/interfaces/pinningstatic.html b/docs/api/interfaces/pinningstatic.html index 0626a65c1d..f07b794149 100644 --- a/docs/api/interfaces/pinningstatic.html +++ b/docs/api/interfaces/pinningstatic.html @@ -103,7 +103,7 @@

                      constructor

                    • Parameters

                      @@ -128,7 +128,7 @@

                      designator

                      designator: string
                      diff --git a/docs/api/interfaces/statestore.html b/docs/api/interfaces/statestore.html index ebab78e534..e61d2650c8 100644 --- a/docs/api/interfaces/statestore.html +++ b/docs/api/interfaces/statestore.html @@ -109,7 +109,7 @@

                      close

                    • Returns Promise<void>

                      @@ -126,7 +126,7 @@

                      exists

                    • Parameters

                      @@ -149,7 +149,7 @@

                      list

                    • Parameters

                      @@ -172,7 +172,7 @@

                      load

                    • Parameters

                      @@ -195,7 +195,7 @@

                      open

                    • Returns Promise<void>

                      @@ -212,7 +212,7 @@

                      remove

                    • Parameters

                      @@ -235,7 +235,7 @@

                      save

                    • Parameters

                      diff --git a/docs/api/interfaces/tileparams.html b/docs/api/interfaces/tileparams.html index 0795b3ec9d..d206645332 100644 --- a/docs/api/interfaces/tileparams.html +++ b/docs/api/interfaces/tileparams.html @@ -115,7 +115,7 @@

                      Optional content

                      content: object
                      From 72ec3ee605af4c16c8372de3bb109e4accba2b9c Mon Sep 17 00:00:00 2001 From: Janko Simonovic Date: Mon, 26 Oct 2020 17:31:35 +0100 Subject: [PATCH 4/4] fix tests --- .../src/__tests__/ceramic-anchor.test.ts | 52 +++++++++---------- .../src/__tests__/ceramic.test.ts | 4 +- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/packages/ceramic-core/src/__tests__/ceramic-anchor.test.ts b/packages/ceramic-core/src/__tests__/ceramic-anchor.test.ts index c1316d5569..df8ee43f25 100644 --- a/packages/ceramic-core/src/__tests__/ceramic-anchor.test.ts +++ b/packages/ceramic-core/src/__tests__/ceramic-anchor.test.ts @@ -122,11 +122,11 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { a: 1 } }, { applyOnly: false }) - await doctype1.change({ content: { a: 2 }, metadata: { owners: [owner] } }, { applyOnly: false }) - await doctype1.change({ content: { a: 3 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { a: 2 }, metadata: { controllers: [controller] } }, { applyOnly: false }) + await doctype1.change({ content: { a: 3 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) @@ -150,11 +150,11 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { a: 1 } }, { applyOnly: true }) - await doctype1.change({ content: { a: 2 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { a: 3 }, metadata: { owners: [owner] } }, { applyOnly: true }) + await doctype1.change({ content: { a: 2 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { a: 3 }, metadata: { controllers: [controller] } }, { applyOnly: true }) expect(doctype1.content).toEqual({ a: 3 }) expect(doctype1.state.log.length).toEqual(2) @@ -174,11 +174,11 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { a: 123, b: 4567 } }, { applyOnly: false }) - await doctype1.change({ content: { a: 4567 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { b: 123 }, metadata: { owners: [owner] } }, { applyOnly: true }) + await doctype1.change({ content: { a: 4567 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { b: 123 }, metadata: { controllers: [controller] } }, { applyOnly: true }) expect(doctype1.state.log.length).toEqual(2) @@ -203,10 +203,10 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { a: 123 } }) - await doctype1.change({ content: { a: 4567 }, metadata: { owners: [owner] } }) + await doctype1.change({ content: { a: 4567 }, metadata: { controllers: [controller] } }) expect(doctype1.state.log.length).toEqual(2) @@ -231,12 +231,12 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { x: 1 } }, { applyOnly: false }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) @@ -259,11 +259,11 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { x: 1 } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) @@ -286,15 +286,15 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { x: 1 } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: true }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: true }) expect(doctype1.content).toEqual({ x: 2 }) expect(doctype1.state.log.length).toEqual(2) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) @@ -302,9 +302,9 @@ describe('Ceramic anchoring', () => { expect(doctype1.content).toEqual({ x: 3 }) expect(doctype1.state.log.length).toEqual(3) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: true }) - await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: true }) + await doctype1.change({ content: { x: doctype1.content.x + 1 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) @@ -327,12 +327,12 @@ describe('Ceramic anchoring', () => { createCeramic(ipfs1, true, topic), createCeramic(ipfs2, false, topic) ]) - const owner = ceramic1.context.did.id + const controller = ceramic1.context.did.id const doctype1 = await ceramic1.createDocument(DOCTYPE_TILE, { content: { x: 1 } }, { applyOnly: true }) const cloned = new TileDoctype(doctype1.state, doctype1.context) - await doctype1.change({ content: { x: 7 }, metadata: { owners: [owner] } }, { applyOnly: false }) - await cloned.change({ content: { x: 5 }, metadata: { owners: [owner] } }, { applyOnly: false }) + await doctype1.change({ content: { x: 7 }, metadata: { controllers: [controller] } }, { applyOnly: false }) + await cloned.change({ content: { x: 5 }, metadata: { controllers: [controller] } }, { applyOnly: false }) await anchor(ceramic1) await syncDoc(doctype1) diff --git a/packages/ceramic-core/src/__tests__/ceramic.test.ts b/packages/ceramic-core/src/__tests__/ceramic.test.ts index 66f27d895d..5a1f35e570 100644 --- a/packages/ceramic-core/src/__tests__/ceramic.test.ts +++ b/packages/ceramic-core/src/__tests__/ceramic.test.ts @@ -225,7 +225,7 @@ describe('Ceramic integration', () => { expect(doctype3.content).toEqual(doctype1.content) - await doctype1.change({ content: { test: 'abcde' }, metadata: { owners: [owner] } }) + await doctype1.change({ content: { test: 'abcde' }, metadata: { controllers: [controller] } }) await syncDoc(doctype3) await anchor(ceramic1) @@ -250,7 +250,7 @@ describe('Ceramic integration', () => { await anchor(ceramic1) await syncDoc(doctype1) - await doctype1.change({ content: { test: 'abcde' }, metadata: { owners: [owner] } }) + await doctype1.change({ content: { test: 'abcde' }, metadata: { controllers: [controller] } }) await anchor(ceramic1) await syncDoc(doctype1)