We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b0075 commit 4c1c31bCopy full SHA for 4c1c31b
1 file changed
src/pages/CreateApp/types.ts
@@ -153,7 +153,7 @@ export const erc8004Schema = z.object({
153
.max(1000, {
154
message: 'Pinata JWT must be less than 1000 characters.',
155
}),
156
- ERC8004_SIGNING_KEY: z.string().regex(/^0x[a-fA-F0-9]{64}$/, {
+ ERC8004_SIGNING_KEY: z.string().regex(/^[a-fA-F0-9]{64}$/, {
157
message: 'Please enter a valid Ethereum private key (64 hexadecimal characters).',
158
159
ERC8004_AGENT_NAME: z.string().optional(),
0 commit comments