Skip to content

Commit 5dd74e1

Browse files
authored
fix: use ZERO_ADDRESS constant for currencyAddress example (#655)
1 parent eeee4d1 commit 5dd74e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/routes/backend-wallet/transfer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const requestBodySchema = Type.Object({
3939
},
4040
currencyAddress: Type.Optional({
4141
...AddressSchema,
42-
examples: [constants.AddressZero],
42+
examples: [ZERO_ADDRESS],
4343
description:
4444
"The token address to transfer. Omit to transfer the chain's native currency (e.g. ETH on Ethereum).",
4545
}),

0 commit comments

Comments
 (0)