File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
typescript/packages/common-charm/src/storage Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,6 @@ interface MemoryState<Space extends MemorySpace = MemorySpace> {
3434 */
3535const HOME = "did:key:z6Mko2qR9b8mbdPnaEKXvcYwdK7iDnRkh8mEcEP2719aCu6P" ;
3636
37- /**
38- * ed25519 key derived from the sha256 of the "common operator".
39- */
40- const defaultProfile = await Identity . fromPassphrase ( "common operator" ) ;
41-
4237export class RemoteStorageProvider implements StorageProvider {
4338 connection : WebSocket | null = null ;
4439 address : URL ;
@@ -59,12 +54,12 @@ export class RemoteStorageProvider implements StorageProvider {
5954
6055 constructor ( {
6156 address,
62- as = defaultProfile ,
57+ as,
6358 space = HOME ,
6459 the = "application/json" ,
6560 } : {
6661 address : URL ;
67- as ? : Memory . Signer ;
62+ as : Memory . Signer ;
6863 space ?: MemorySpace ;
6964 the ?: string ;
7065 } ) {
You can’t perform that action at this time.
0 commit comments