@atproto/identity 0.5.0-next.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,24 +1,22 @@
1
1
  # @atproto/identity
2
2
 
3
- ## 0.5.0-next.0
3
+ ## 0.5.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - [#4929](https://github.com/bluesky-social/atproto/pull/4929) [`bb7491c`](https://github.com/bluesky-social/atproto/commit/bb7491c29e06181e1d2f8cf6eb454f9bb8ab961b) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Drop support for Node.js 18 and 20. Node.js 22 is now the minimum supported version. Docker images now use Node.js 24.
7
+ - [#4929](https://github.com/bluesky-social/atproto/pull/4929) [`f01c59f`](https://github.com/bluesky-social/atproto/commit/f01c59f5bd3f75fb8b47a9eecd4858b84033fb7c) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Drop support for Node.js 18 and 20. Node.js 22 is now the minimum supported version. Docker images now use Node.js 24.
8
8
 
9
- - [#4943](https://github.com/bluesky-social/atproto/pull/4943) [`07ae5d4`](https://github.com/bluesky-social/atproto/commit/07ae5d4452df51e045e0239da7a04cf0bc154028) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Convert to pure ESM. All packages now ship `"type": "module"` with ES module output and Node16 module resolution.
9
+ - [#4943](https://github.com/bluesky-social/atproto/pull/4943) [`c459153`](https://github.com/bluesky-social/atproto/commit/c459153395a30ce89e050892c8fab7dc98e019b9) Thanks [@devinivy](https://github.com/devinivy)! - **BREAKING:** Convert to pure ESM. All packages now ship `"type": "module"` with ES module output and Node16 module resolution.
10
10
 
11
11
  Node.js 22's `require()` compatibility layer can still load these packages in CommonJS code.
12
12
 
13
- - [#4930](https://github.com/bluesky-social/atproto/pull/4930) [`042df15`](https://github.com/bluesky-social/atproto/commit/042df15087c0e62cd1e715fcbf58852fab875af9) Thanks [@devinivy](https://github.com/devinivy)! - Build with TypeScript 6.0. Emitted `.d.ts` files now use TypeScript 6's stricter `Uint8Array<ArrayBuffer>` typing in places where Web/Node APIs require buffer-backed (not shared-memory) byte arrays. Consumers compiling against these types on older TypeScript should see no runtime impact, but may need to widen or cast in spots that previously relied on `Uint8Array` defaulting to `<ArrayBufferLike>`.
14
-
15
- Internal: tsconfig `moduleResolution: "node"` is silenced via `ignoreDeprecations: "6.0"` for now; the proper migration to `node16`/`bundler` resolution is deferred.
13
+ - [#4930](https://github.com/bluesky-social/atproto/pull/4930) [`908bece`](https://github.com/bluesky-social/atproto/commit/908bece169258bff5ad121e5eec157d6ded6f705) Thanks [@devinivy](https://github.com/devinivy)! - Build with TypeScript 6.0.
16
14
 
17
15
  ### Patch Changes
18
16
 
19
- - Updated dependencies [[`bb7491c`](https://github.com/bluesky-social/atproto/commit/bb7491c29e06181e1d2f8cf6eb454f9bb8ab961b), [`07ae5d4`](https://github.com/bluesky-social/atproto/commit/07ae5d4452df51e045e0239da7a04cf0bc154028), [`042df15`](https://github.com/bluesky-social/atproto/commit/042df15087c0e62cd1e715fcbf58852fab875af9)]:
20
- - @atproto/common-web@0.5.0-next.0
21
- - @atproto/crypto@0.5.0-next.0
17
+ - Updated dependencies [[`f01c59f`](https://github.com/bluesky-social/atproto/commit/f01c59f5bd3f75fb8b47a9eecd4858b84033fb7c), [`c459153`](https://github.com/bluesky-social/atproto/commit/c459153395a30ce89e050892c8fab7dc98e019b9), [`908bece`](https://github.com/bluesky-social/atproto/commit/908bece169258bff5ad121e5eec157d6ded6f705)]:
18
+ - @atproto/common-web@0.5.0
19
+ - @atproto/crypto@0.5.0
22
20
 
23
21
  ## 0.4.12
24
22
 
package/jest.config.cjs CHANGED
@@ -4,11 +4,18 @@ module.exports = {
4
4
  transform: {
5
5
  '^.+\\.(t|j)s$': [
6
6
  '@swc/jest',
7
- { jsc: { transform: {} }, module: { type: 'es6' } },
7
+ {
8
+ jsc: {
9
+ parser: { syntax: 'typescript', importAttributes: true },
10
+ experimental: { keepImportAttributes: true },
11
+ transform: {},
12
+ },
13
+ module: { type: 'es6' },
14
+ },
8
15
  ],
9
16
  },
10
17
  extensionsToTreatAsEsm: ['.ts'],
11
18
  transformIgnorePatterns: [],
12
- setupFiles: ['<rootDir>/../../jest.setup.ts'],
19
+ setupFiles: ['<rootDir>/../../test.setup.ts'],
13
20
  moduleNameMapper: { '^(\\.\\.?\\/.+)\\.js$': ['$1.ts', '$1.js'] },
14
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atproto/identity",
3
- "version": "0.5.0-next.0",
3
+ "version": "0.5.0",
4
4
  "license": "MIT",
5
5
  "description": "Library for decentralized identities in atproto using DIDs and handles",
6
6
  "keywords": [
@@ -18,8 +18,8 @@
18
18
  "node": ">=22"
19
19
  },
20
20
  "dependencies": {
21
- "@atproto/common-web": "^0.5.0-next.0",
22
- "@atproto/crypto": "^0.5.0-next.0"
21
+ "@atproto/common-web": "^0.5.0",
22
+ "@atproto/crypto": "^0.5.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@did-plc/lib": "^0.0.1",
package/test.log DELETED
@@ -1,60 +0,0 @@
1
- {"level":30,"time":1689275840930,"pid":71480,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"433","accept-encoding":"gzip, compress, deflate, br","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59979},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":26,"msg":"request completed"}
2
- {"level":30,"time":1689275840954,"pid":71480,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59980},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":4,"msg":"request completed"}
3
- {"level":30,"time":1689275840963,"pid":71480,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59981},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":4,"msg":"request completed"}
4
- {"level":30,"time":1689275840967,"pid":71480,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59982},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":3,"msg":"request completed"}
5
- {"level":30,"time":1689275840978,"pid":71480,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59983},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":3,"msg":"request completed"}
6
- {"level":30,"time":1689275840983,"pid":71480,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59984},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":3,"msg":"request completed"}
7
- {"level":30,"time":1689275840994,"pid":71480,"hostname":"dicorcia.local","req":{"id":7,"method":"GET","url":"/did%3Aplc%3Awal42s6ti6sjc6frkwilq5hv","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59978","connection":"close"},"remoteAddress":"::1","remotePort":59985},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-RJkkO5YJwpIfpAOUfQbM1GWVX6I\""}},"responseTime":4,"msg":"request completed"}
8
- {"level":30,"time":1689275841162,"pid":71479,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3A32jih6tnrtjjx36i4c4oybll","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"434","accept-encoding":"gzip, compress, deflate, br","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59988},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":26,"msg":"request completed"}
9
- {"level":30,"time":1689275841170,"pid":71479,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3A32jih6tnrtjjx36i4c4oybll","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/1.3.4","accept-encoding":"gzip, compress, deflate, br","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59989},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-LdbiZSnfZPKdYJIe++nRQRpnIho\""}},"responseTime":4,"msg":"request completed"}
10
- {"level":30,"time":1689275841225,"pid":71479,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3A32jih6tnrtjjx36i4c4oybll","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59992},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-LdbiZSnfZPKdYJIe++nRQRpnIho\""}},"responseTime":3,"msg":"request completed"}
11
- {"level":30,"time":1689275841230,"pid":71479,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3A32jih6tnrtjjx36i4c4oybll","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59993},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-LdbiZSnfZPKdYJIe++nRQRpnIho\""}},"responseTime":3,"msg":"request completed"}
12
- {"level":30,"time":1689275841233,"pid":71479,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59994},"err":{"type":"ServerError","message":"DID not registered: did:plc:asdf","stack":"Error: DID not registered: did:plc:asdf\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
13
- {"level":30,"time":1689275841591,"pid":71479,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59994},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"46","etag":"W/\"2e-ouyx9dlGpAF6gs2puC1AAUwbx84\""}},"responseTime":358,"msg":"request completed"}
14
- {"level":30,"time":1689275841592,"pid":71479,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59995},"err":{"type":"ServerError","message":"DID not registered: did:plc","stack":"Error: DID not registered: did:plc\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
15
- {"level":30,"time":1689275841593,"pid":71479,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:59987","connection":"close"},"remoteAddress":"::1","remotePort":59995},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"41","etag":"W/\"29-pS6VolLLFKlzTQkRVMexS+2oUm8\""}},"responseTime":1,"msg":"request completed"}
16
- {"level":30,"time":1689278983516,"pid":75490,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"433","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60293},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":28,"msg":"request completed"}
17
- {"level":30,"time":1689278983531,"pid":75490,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60294},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":5,"msg":"request completed"}
18
- {"level":30,"time":1689278983539,"pid":75490,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60295},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":3,"msg":"request completed"}
19
- {"level":30,"time":1689278983545,"pid":75490,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60296},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":4,"msg":"request completed"}
20
- {"level":30,"time":1689278983555,"pid":75490,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60298},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":3,"msg":"request completed"}
21
- {"level":30,"time":1689278983559,"pid":75490,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60300},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":2,"msg":"request completed"}
22
- {"level":30,"time":1689278983570,"pid":75490,"hostname":"dicorcia.local","req":{"id":7,"method":"GET","url":"/did%3Aplc%3A6rzcre3todeexytbodbzsa6p","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60292","connection":"close"},"remoteAddress":"::1","remotePort":60301},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-h6DF5AIlxTEEJBAcBzUIuDrzi+U\""}},"responseTime":3,"msg":"request completed"}
23
- {"level":30,"time":1689278983622,"pid":75489,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Avmeendn3be7mv7gew3pxmjsk","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"434","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60302},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":26,"msg":"request completed"}
24
- {"level":30,"time":1689278983631,"pid":75489,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Avmeendn3be7mv7gew3pxmjsk","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/1.3.4","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60303},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-CpesPuFJ48PxQH7Pq+pCxCxM4PE\""}},"responseTime":4,"msg":"request completed"}
25
- {"level":30,"time":1689278983680,"pid":75489,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Avmeendn3be7mv7gew3pxmjsk","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60306},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-CpesPuFJ48PxQH7Pq+pCxCxM4PE\""}},"responseTime":4,"msg":"request completed"}
26
- {"level":30,"time":1689278983685,"pid":75489,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Avmeendn3be7mv7gew3pxmjsk","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60307},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-CpesPuFJ48PxQH7Pq+pCxCxM4PE\""}},"responseTime":3,"msg":"request completed"}
27
- {"level":30,"time":1689278983687,"pid":75489,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60308},"err":{"type":"ServerError","message":"DID not registered: did:plc:asdf","stack":"Error: DID not registered: did:plc:asdf\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
28
- {"level":30,"time":1689278984045,"pid":75489,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60308},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"46","etag":"W/\"2e-ouyx9dlGpAF6gs2puC1AAUwbx84\""}},"responseTime":358,"msg":"request completed"}
29
- {"level":30,"time":1689278984047,"pid":75489,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60309},"err":{"type":"ServerError","message":"DID not registered: did:plc","stack":"Error: DID not registered: did:plc\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
30
- {"level":30,"time":1689278984048,"pid":75489,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60299","connection":"close"},"remoteAddress":"::1","remotePort":60309},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"41","etag":"W/\"29-pS6VolLLFKlzTQkRVMexS+2oUm8\""}},"responseTime":1,"msg":"request completed"}
31
- {"level":30,"time":1689279026156,"pid":75628,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"433","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60318},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":27,"msg":"request completed"}
32
- {"level":30,"time":1689279026170,"pid":75628,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60321},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":5,"msg":"request completed"}
33
- {"level":30,"time":1689279026179,"pid":75628,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60322},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":3,"msg":"request completed"}
34
- {"level":30,"time":1689279026184,"pid":75628,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60323},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":3,"msg":"request completed"}
35
- {"level":30,"time":1689279026193,"pid":75628,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60325},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":3,"msg":"request completed"}
36
- {"level":30,"time":1689279026198,"pid":75628,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60326},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":3,"msg":"request completed"}
37
- {"level":30,"time":1689279026208,"pid":75628,"hostname":"dicorcia.local","req":{"id":7,"method":"GET","url":"/did%3Aplc%3Aykqfxtz3ac47rdtvoijy7uyp","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60317","connection":"close"},"remoteAddress":"::1","remotePort":60327},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-EMSn9/hKLGml1ERLLqPdSo2Qd6M\""}},"responseTime":2,"msg":"request completed"}
38
- {"level":30,"time":1689279026211,"pid":75627,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Amgtoznwm7fd7ilrh36tr462f","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"434","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60324},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":26,"msg":"request completed"}
39
- {"level":30,"time":1689279026220,"pid":75627,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Amgtoznwm7fd7ilrh36tr462f","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/1.3.4","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60328},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-+m13Z3hRO2ZPxgN+apn35LpI39k\""}},"responseTime":5,"msg":"request completed"}
40
- {"level":30,"time":1689279026267,"pid":75627,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Amgtoznwm7fd7ilrh36tr462f","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60331},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-+m13Z3hRO2ZPxgN+apn35LpI39k\""}},"responseTime":4,"msg":"request completed"}
41
- {"level":30,"time":1689279026271,"pid":75627,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Amgtoznwm7fd7ilrh36tr462f","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60332},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-+m13Z3hRO2ZPxgN+apn35LpI39k\""}},"responseTime":3,"msg":"request completed"}
42
- {"level":30,"time":1689279026273,"pid":75627,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60333},"err":{"type":"ServerError","message":"DID not registered: did:plc:asdf","stack":"Error: DID not registered: did:plc:asdf\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
43
- {"level":30,"time":1689279026623,"pid":75627,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60333},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"46","etag":"W/\"2e-ouyx9dlGpAF6gs2puC1AAUwbx84\""}},"responseTime":350,"msg":"request completed"}
44
- {"level":30,"time":1689279026625,"pid":75627,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60334},"err":{"type":"ServerError","message":"DID not registered: did:plc","stack":"Error: DID not registered: did:plc\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
45
- {"level":30,"time":1689279026626,"pid":75627,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60320","connection":"close"},"remoteAddress":"::1","remotePort":60334},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"41","etag":"W/\"29-pS6VolLLFKlzTQkRVMexS+2oUm8\""}},"responseTime":1,"msg":"request completed"}
46
- {"level":30,"time":1689279097637,"pid":75799,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"433","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60345},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":26,"msg":"request completed"}
47
- {"level":30,"time":1689279097650,"pid":75799,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60348},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":5,"msg":"request completed"}
48
- {"level":30,"time":1689279097658,"pid":75799,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60349},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":3,"msg":"request completed"}
49
- {"level":30,"time":1689279097663,"pid":75799,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60350},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":3,"msg":"request completed"}
50
- {"level":30,"time":1689279097674,"pid":75799,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60351},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":3,"msg":"request completed"}
51
- {"level":30,"time":1689279097679,"pid":75799,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60353},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":3,"msg":"request completed"}
52
- {"level":30,"time":1689279097689,"pid":75799,"hostname":"dicorcia.local","req":{"id":7,"method":"GET","url":"/did%3Aplc%3Aahrhjewkjjmbmsbru6kloszb","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60344","connection":"close"},"remoteAddress":"::1","remotePort":60354},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"526","etag":"W/\"20e-vl6/JGFwlRkbuXAmqQC22NecDyE\""}},"responseTime":3,"msg":"request completed"}
53
- {"level":30,"time":1689279097706,"pid":75798,"hostname":"dicorcia.local","req":{"id":1,"method":"POST","url":"/did%3Aplc%3Aysbphh7uga6uydsoxgbqmxla","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","content-type":"application/json","user-agent":"axios/1.3.4","content-length":"434","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60352},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"text/plain; charset=utf-8","content-length":"2","etag":"W/\"2-nOO9QiTIwXgNtWtBJezz8kv3SLc\""}},"responseTime":27,"msg":"request completed"}
54
- {"level":30,"time":1689279097719,"pid":75798,"hostname":"dicorcia.local","req":{"id":2,"method":"GET","url":"/did%3Aplc%3Aysbphh7uga6uydsoxgbqmxla","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/1.3.4","accept-encoding":"gzip, compress, deflate, br","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60355},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-glwwWunaLV47EyhcSr+de00CK80\""}},"responseTime":5,"msg":"request completed"}
55
- {"level":30,"time":1689279097770,"pid":75798,"hostname":"dicorcia.local","req":{"id":3,"method":"GET","url":"/did%3Aplc%3Aysbphh7uga6uydsoxgbqmxla","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60358},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-glwwWunaLV47EyhcSr+de00CK80\""}},"responseTime":4,"msg":"request completed"}
56
- {"level":30,"time":1689279097775,"pid":75798,"hostname":"dicorcia.local","req":{"id":4,"method":"GET","url":"/did%3Aplc%3Aysbphh7uga6uydsoxgbqmxla","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60359},"res":{"statusCode":200,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/did+ld+json; charset=utf-8","content-length":"527","etag":"W/\"20f-glwwWunaLV47EyhcSr+de00CK80\""}},"responseTime":3,"msg":"request completed"}
57
- {"level":30,"time":1689279097778,"pid":75798,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60360},"err":{"type":"ServerError","message":"DID not registered: did:plc:asdf","stack":"Error: DID not registered: did:plc:asdf\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
58
- {"level":30,"time":1689279098126,"pid":75798,"hostname":"dicorcia.local","req":{"id":5,"method":"GET","url":"/did%3Aplc%3Aasdf","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60360},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"46","etag":"W/\"2e-ouyx9dlGpAF6gs2puC1AAUwbx84\""}},"responseTime":348,"msg":"request completed"}
59
- {"level":30,"time":1689279098128,"pid":75798,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60362},"err":{"type":"ServerError","message":"DID not registered: did:plc","stack":"Error: DID not registered: did:plc\n at /Users/devinivy/Documents/bluesky/atproto/node_modules/@did-plc/server/dist/index.js:78306:13\n at processTicksAndRejections (node:internal/process/task_queues:95:5)","status":404},"msg":"handled server error"}
60
- {"level":30,"time":1689279098128,"pid":75798,"hostname":"dicorcia.local","req":{"id":6,"method":"GET","url":"/did%3Aplc","query":{},"params":{},"headers":{"accept":"application/json, text/plain, */*","user-agent":"axios/0.27.2","host":"localhost:60347","connection":"close"},"remoteAddress":"::1","remotePort":60362},"res":{"statusCode":404,"headers":{"x-powered-by":"Express","access-control-allow-origin":"*","content-type":"application/json; charset=utf-8","content-length":"41","etag":"W/\"29-pS6VolLLFKlzTQkRVMexS+2oUm8\""}},"responseTime":0,"msg":"request completed"}