OP_11 ​
INFO
Opcode number: 91
Byte representation: 0x5b
Other names: OP_PUSHNUM_11
Short Description: Push the number 11 onto the stack.
The OP_11
opcode will push 0x0b
onto the stack. This opcode uses the minimally encoded integers format.
Examples ​
Example 1 ​
shell
# ASM script
OP_11 OP_11
# Raw script
5b5b
# Final stack
11
11
Example 2 ​
shell
# ASM script
OP_11 OP_11 OP_ADD
# Raw script
5b5b93
# Final stack
22