We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17e4089 commit a1f4b13Copy full SHA for a1f4b13
web/src/pages/Dashboard.tsx
@@ -3064,7 +3064,7 @@ function Attention({ auth }: { auth: AuthState }) {
3064
const { keccak256, toBytes } = await import('viem');
3065
const emailIdBytes = depEmailId
3066
? keccak256(toBytes(depEmailId))
3067
- : '0x0000000000000000000000000000000000000000000000000000000000000000' as `0x${string}`;
+ : keccak256(toBytes(`bond-${Date.now()}-${Math.random()}`));
3068
3069
try {
3070
// Get recipient wallet
0 commit comments