We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently only success case is handled: https://github.com/public-awesome/ics721/blob/main/contracts/cw-ics721-bridge/src/contract.rs#L266
In case ics721 contract is instantiated with wrong CW721_CODE_ID, during transfer this ack fail is returned:
{"error":"codespace: wasm, code: 4"}
SDK error with code 4 means unauthorized.
In additional pls also have a look here: https://github.com/public-awesome/ics721/blob/main/contracts/cw-ics721-bridge/src/contract.rs#L39
let proxy_instantiate = msg .proxy .map(|m| m.into_wasm_msg(env.contract.address)) .map(|wasm| SubMsg::reply_on_success(wasm, INSTANTIATE_PROXY_REPLY_ID)) .map_or(vec![], |s| vec![s]);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently only success case is handled: https://github.com/public-awesome/ics721/blob/main/contracts/cw-ics721-bridge/src/contract.rs#L266
In case ics721 contract is instantiated with wrong CW721_CODE_ID, during transfer this ack fail is returned:
SDK error with code 4 means unauthorized.
In additional pls also have a look here: https://github.com/public-awesome/ics721/blob/main/contracts/cw-ics721-bridge/src/contract.rs#L39
The text was updated successfully, but these errors were encountered: