This PR primarily focuses on updating various schemas and routes to utilize the AddressSchema for validating address fields instead of using plain Type.String(). This enhances consistency and validation across the application.
Detailed summary
Replaced Type.String() with AddressSchema in multiple schemas and routes.
Updated signerAddress, contractAddress, walletAddress, and backendWalletAddress fields to use AddressSchema.
Ensured that all relevant endpoints and schemas are now using the standardized address validation.
✨ Ask PR-Codex anything about this PR by commenting with /codex {your question}
PR-Codex overview
This PR primarily focuses on updating various schemas and routes to utilize the
AddressSchema
for validating address fields instead of using plainType.String()
. This enhances consistency and validation across the application.Detailed summary
Type.String()
withAddressSchema
in multiple schemas and routes.signerAddress
,contractAddress
,walletAddress
, andbackendWalletAddress
fields to useAddressSchema
.