(eoa: string)
| 25 | const CLOB_MSG = "This message attests that I control the given wallet"; |
| 26 | |
| 27 | function proxyLocalStorageKey(eoa: string): string { |
| 28 | return `pw:proxy:${eoa.toLowerCase()}`; |
| 29 | } |
| 30 | |
| 31 | const SESSION_KEY = (eoa: string) => `pw:session:${eoa.toLowerCase()}`; |
| 32 | const APPROVED_KEY = (proxy: string) => `pw:approved:${proxy.toLowerCase()}`; |
no outgoing calls
no test coverage detected