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
Assuming I've got an HttpClient, contract address, and payload I should be able to send off a wasm query. I can't quite figure out how to use abci_query to get what I want. I don't see how to build the data parameter.
let my_query = serde_json::to_string(QueryMsg::MyQuery{})?;let client = get_client()?;let contract_addr = get_addr();// How do you build data?
client.abci_query(None, data,None,false)?;
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Assuming I've got an HttpClient, contract address, and payload I should be able to send off a wasm query. I can't quite figure out how to use abci_query to get what I want. I don't see how to build the data parameter.
Beta Was this translation helpful? Give feedback.
All reactions