pub fn create_program_for_reply_as<E: Encode, D: Decode>(
    code_id: CodeId,
    salt: impl AsRef<[u8]>,
    payload: E,
    value: u128,
    reply_deposit: u64
) -> Result<CodecCreateProgramFuture<D>>
Expand description

Same as create_program, but the program will interrupt until the reply is received.

Argument reply_deposit: u64 used to provide gas for future reply handling (skipped if zero).

The output should be decodable via SCALE codec.

§See also