Skip to content

Commit d274852

Browse files
committed
cleanup logs
1 parent bf8db4e commit d274852

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

packages/hypergraph/src/identity/prove-ownership.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { http, type Chain, type Hex, type WalletClient, createPublicClient, verifyMessage } from 'viem';
1+
import { createPublicClient, http, verifyMessage, type Chain, type Hex, type WalletClient } from 'viem';
22
import { privateKeyToAccount } from 'viem/accounts';
33

44
import type { SmartAccountClient } from 'permissionless';
@@ -64,13 +64,13 @@ export const verifyIdentityOwnership = async (
6464
chain,
6565
transport: http(rpcUrl),
6666
});
67-
console.log('publicClient', publicClient);
68-
console.log('rpcUrl', rpcUrl);
69-
console.log('chain', chain);
67+
// console.log('publicClient', publicClient);
68+
// console.log('rpcUrl', rpcUrl);
69+
// console.log('chain', chain);
7070

71-
console.log('accountProof', accountProof);
72-
console.log('accountAddress', accountAddress);
73-
console.log('publicKey', publicKey);
71+
// console.log('accountProof', accountProof);
72+
// console.log('accountAddress', accountAddress);
73+
// console.log('publicKey', publicKey);
7474

7575
const accountProofMessage = getAccountProofMessage(accountAddress, publicKey);
7676
const validAccountProof = await publicClient.verifyTypedData({

packages/hypergraph/src/store.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,6 @@ export const store: Store<StoreContext, StoreEvent, GenericEventObject> = create
245245
}
246246
}
247247

248-
console.log('storecontext', storeContext);
249-
250248
return storeContext;
251249
},
252250
applyEvent: (context, event: { spaceId: string; event: SpaceEvent; state: SpaceState }) => {

0 commit comments

Comments
 (0)