You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the API returns contract_address, while the documentation specifies token_address.
Since existing clients may already rely on token_address, removing or renaming it could cause breaking changes.
To maintain backward compatibility and improve clarity,
we propose to include both fields in the response, and mark token_address as deprecated in the documentation.
Description
Currently, the API returns contract_address, while the documentation specifies token_address.
Since existing clients may already rely on token_address, removing or renaming it could cause breaking changes.
To maintain backward compatibility and improve clarity,
we propose to include both fields in the response, and mark token_address as deprecated in the documentation.
Expected Response
{ "token_address": "0x1234...abcd", // deprecated "contract_address": "0x1234...abcd" }