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
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "QueryMsg_for_Empty", "oneOf": [ { "description": "Return the owner of the given token, error if token does not exist Return type: OwnerOfResponse", [....]
I noticed that when manually changing the title to (removing the "_for_Empty" part)
"title": "QueryMsg",
and running TS-codegen again also the XxxReadOnlyClientInterface is created properly.
The text was updated successfully, but these errors were encountered:
When trying to create the client for the cw721-base contract (branch v0.16!) the XxxReadOnlyInterface is not created.
Looking at the schema file
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "QueryMsg_for_Empty", "oneOf": [ { "description": "Return the owner of the given token, error if token does not exist Return type: OwnerOfResponse", [....]
I noticed that when manually changing the title to (removing the "_for_Empty" part)
"title": "QueryMsg",
and running TS-codegen again also the XxxReadOnlyClientInterface is created properly.
The text was updated successfully, but these errors were encountered: