Hi, thank you for all your help.
This time I have a question about deploying module with sdk(I’m using node-sdk and rust-sdk).
First of all, I can deploy modules regardless of the version without any problems when using concordium-client. And also am able to deploy version 0 contract using both sdk.
When deploying version 1 contract with sdk, the transaction is sent successfully but it seems to be rejected by the node with Error raised when validating WASM module
.
I followed this example(node-sdk#deploy-module), except for the version.
const deployModule: DeployModulePayload = {
content: wasmFileBuffer,
version: 1,
};
I have tried with rust-sdk and got the same result.
Is there anything that you think might be the cause?