14 KiB
This document proposes new opcodes to be added to the elements network along with the taproot upgrade. The new tapscript OP_SUCCESS opcodes allow introducing new opcodes more cleanly than through OP_NOP. In this document, we propose modifying the following OP_SUCCESS
to have the additional semantics. We use opcodes serially OP_SUCCESS196, 197... in order
to avoid conflict with bitcoin potentially using OP_SUCESSSx(assuming bitcoin uses those serially based on availability). The initial version of this document had additional opcodes(OP_FOR, multi-byte opcodes) has since been updated to this current version in favor of application complexity.
Resource Limits
Changes in Taproot(Including Standardness Policy Changes)
Taproot already increases a lot of resource limitations from segwitv0, so there is no additional need to alter any of those. In particular, from BIP 342
- Script size limit: the maximum script size of 10000 bytes does not apply. Their size is only implicitly bounded by the block weight limit.
- Non-push opcodes limit: The maximum non-push opcodes limit of 201 per script does not apply.
- Sigops limit: The sigops in tapscripts do not count towards the block-wide limit of 80000 (weighted). Instead, there is a per-script sigops budget. The budget equals 50 + the total serialized size in bytes of the transaction input's witness (including the CompactSize prefix). Executing a signature opcode (
OP_CHECKSIG,OP_CHECKSIGVERIFY, orOP_CHECKSIGADD) with a non-empty signature decrements the budget by 50. If that brings the budget below zero, the script fails immediately. - Stack + altstack element count limit: The existing limit of 1000 elements in the stack and altstack together after every executed opcode remains. It is extended to also apply to the size of the initial stack.
- Stack element size limit: The existing limit of maximum 520 bytes per stack element remains, during the stack machine operations. There is an additional policy rule limiting the initial push size to
80bytes.
Additional resource limits changes in Elements
- New added opcodes
OP_MULTISCALAREXPVERIFYforkbase multi scalar exponentiation is counted as50*kunits towards the SIGOPS budget. If the operation requires extra script_budget, the user must add additional witness elements to make sure that the script executes within the desired budget.
New Opcodes for additional functionality:
-
Streaming Opcodes for streaming hashes: There is an existing limitation of
MAX_SCRIPT_ELEMENT_SIZE(520 bytes) because of which we cannot operate hash functions likeOP_SHA256on messages more than 520 bytes. This allows hashing on more than 520 bytes while still preserving the existing security against resource exhaustion attacks. The proposal for this is still under discussion in https://github.com/ElementsProject/elements/pull/817 by Russell O'Connor.- Define
OP_SUCCESS196asOP_SHA256INITIALIZEwhich pops a bytestring and push SHA256 context creating by adding the bytestring to the initial SHA256 context. - Define
OP_SUCCESS197asOP_SHA256UPDATEwhich frist pops a SHA256 contextm then pops another bytestring and pushes an updated context by adding the bytestring to the data stream being hashed. - Define
OP_SUCCESS198asOP_SHA256FINALIZEwhich first pops a SHA256 context, then pops another bytestring and finally pushes a SHA256 hash value after adding the bytestring and completing the padding.
- Define
-
Transaction Introspection codes: Transaction introspection is already possible in elements script by use of
OP_CHECKSIGFROMSTACKVERIFY, however the current solutions are really expensive in applications like covenants. Therefore, we are not adding any new functionality by supporting introspection, only making it easier to use. The warning still remains the same as with covenants, if the user is inspecting data from parts of the transaction that are not signed, the script can cause unexpected behavior. For opcodes that inspect data that is not committed in sighash, introspection is safe because any changes to the witness data would cause wtxid to change and it would revalidate the tx again. For pegin inputs, the asset/value/script information will be one from the parent chain.- Define
OP_SUCCESS199asOP_INSPECTINPUTwith the following semantics: Pop two minimalCScriptNums from stack. The first numberndenotes the type of introspection, and the second numberidxdenotes the position of input to inspect. Immediately abort ifidxis out of bounds. 2. Ifn=0, Push the outpoint_flag(1) as defined in Modified BIP-341 SigMsg for Elements 3. ifn=1, Push the outpoint as a tuple. First push thetxid(32) of theprev_out, followed by a 4 byte push ofvout4. Ifn=2, Push thenAssetonto the stack as two elements. The first push the assetID(32), followed by the prefix(1) 5. Ifn=3, Push thenValueas a tuple, value(8, 32) followed by prefix(1), 6. Ifn=4, Push the scriptPubkey(34) onto the stack. Note that the compact size prefix is not pushed onto the stack. 7. Ifn=5, Push thenSequence(4) as little-endian number. 8. Ifn=6, Push the assetIssuance information if the asset has issuance, otherwise push an empty vector. Asset Issuance information is pushed as follows - PushnInflationKeysas tuple, value(8, 32) followed by push for prefix(1). In casenInflationKeysis null, push a single element0x00(Note that this is different fromOP_FALSEwhich is empty vector). - PushnAmountas a tuple, value(8, 32) followed by a push for prefix(1). This cannot be null - Push 32 byteassetEntropy- Push 32 byteassetBlindingNonce9. Else, Immediately return true without executing the rest of the script. - Define
OP_SUCCESS200asOP_INSPECTCURRENTINPUTthat pushes the current input index asCScriptNum. This can be used in conjunction withOP_INSPECTINPUTfor inspecting current input - Define
OP_SUCCESS201asOP_INSPECTOUTPUTwith the following semantics:- Pop the stack pop as minimal
CScriptNumasn. Next, pop another element as minimalCScriptNumoutput indexidx.
- If
n=0, Push thenAssetas a tuple, first push the assetID(32), followed by the prefix(1) - If
n=1, Push thenValueas a tuple, value(8, 32) followed by prefix - If
n=2, Push thenNonce(33) onto the stack. If the nonce is null, push an empty vector onto the stack. - If
n=3, Push the scriptPubkey(34) onto the stack. Note that the compact size prefix is not pushed onto the stack. - Else, Immediately return true without executing the rest of the script.
- Pop the stack pop as minimal
- Define
OP_SUCCESS202asOP_INSPECTTXwith the following semantics:- Pop the stack pop as minimal
CScriptNumasn.
- If
n=0, Push the nVersion(4) as little-endian. - If
n=1, Push the nLockTime(4) as little-endian. - If
n=2, Push the number of inputs(4) as little-endian - If
n=3, Push the number of outputs(4) as little-endian - If
n=4, Push the transaction size in vbytes (4) as little-endian - Else, Immediately return true without executing the rest of the script.
- Pop the stack pop as minimal
- Define
-
Crypto: In order to allow more complex operations on elements, we introduce the following new crypto-operators. Each opcode counts as 50 towards the sigops budget.
- Define
OP_SUCCESS203asOP_ECMULSCALAREXPVERIFYwhich pops three elements from stack as described below: 1) a 32 byte scalark. 2) Compressed EC pointP, and 3) compressed EC pointQ. Abort ifP,Qis invalid orkis not 32 bytes and outside of secp256k1 curve order(TODO: confirm this). Abort ifQ != k*P. - Define
OP_SUCCESS204asOP_TAPTWEAKVERIFYwith the following semantics: Pop the three elements as: 1) 32 byte X-only internal keyP, 2) 32 byte scalarkand 3) 33 byte compressed pointQ. Abort ifP,Qis invalid orkis not 32 bytes and outside of secp256k1 curve order(TODO: confirm this). Abort ifQ != P + k*GwhereGis the generator for secp256k1.
- Define
-
Signed 64-bit arithmetic opcodes: Current operations on
CScriptNumas limited to 4 bytes and are difficult to compose because of minimality rules. having a fixed width little operations with 8 byte signed operations helps doing calculations on amounts which are encoded as 8 byte little endian.- When dealing with overflows, we explicitly return the success bit as a
CScriptNumat the top of the stack and the result being the second element from the top. If the operation overflows, first the operands are pushed onto the stack followed by success bit. [a_seconda_top] overflows, the stack state after the operation is [a_seconda_top0] and if the operation does not overflow, the stack state is [res1]. - This gives the user flexibility to deal if they script to have overflows using
OP_IF\OP_ELSEorOP_VERIFYthe success bit if they expect that operation would never fail. When defining the opcodes which can fail, we only define the success path, and assume the overflow behavior as stated above. - Define
OP_SUCCESS205asOP_ADD64: pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Push a + b onto the stack. Push 1CScriptNumif there is no overflow. Overflow behavior defined above. - Define
OP_SUCCESS206asOP_SUB64: pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Push a - b onto the stack. Push 1CScriptNumif there is no overflow. Overflow behavior defined above. - Define
OP_SUCCESS207asOP_MUL64: pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha*bonto the stack. Push 1CScriptNumif there is no overflow. Overflow behavior defined above. - Define
OP_SUCCESS208asOP_DIV64(Does not fail): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). First push remaindera%b(must be non-negative and less than |b|) onto the stack followed by quotient(a//b) onto the stack. Ifb==0, treat as overflow as defined above. Push 1CScriptNumif there is no overflow. - Define
OP_SUCCESS209asOP_LESSTHAN64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha < b. - Define
OP_SUCCESS210asOP_LESSTHANOREQUAL64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha <= b. - Define
OP_SUCCESS211asOP_GREATERTHAN64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha > b. - Define
OP_SUCCESS212asOP_GREATERTHANOREQUAL64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha >= b. - Define
OP_SUCCESS213asOP_EQUAL64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha == b. - Define
OP_SUCCESS214asOP_AND64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha & b. - Define
OP_SUCCESS215asOP_OR64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha | b. - Define
OP_SUCCESS216asOP_XOR64(cannot fail!): pop the first number(8 byte LE) asbfollowed another pop fora(8 byte LE). Pusha ^ b. - Define
OP_SUCCESS217asOP_NOT64(cannot fail!): pop the first number(8 byte LE) asa. Push~a. - Define
OP_SUCCESS218asOP_LSHIFT: first popa(8 byte LE) followed by another pop forCScriptNuml(abort if l < 0 or l > 63). Abort ifa<0. Pusha << lotherwise - Define
OP_SUCCESS219asOP_RSHIFT: first popa(8 byte LE) followed by another pop forCScriptNumr(abort if l < 0 or l > 63). Abort ifa<0. Pusha >> rotherwise.
- When dealing with overflows, we explicitly return the success bit as a
-
Conversion opcodes: Methods for conversion from
CScriptNumto8-byte LE,4-byte LE.- Define
OP_SUCCESS220asOP_SCIPTNUMTOLE64: pop the stack as minimalCSciptNum, push 8 byte signed LE corresponding to that number. - Define
OP_SUCCESS221asOP_LE64TOSCIPTNUM: pop the stack as a 8 byte signed LE. Convert toCScriptNumand push it, abort on fail. - Define
OP_SUCCESS222asOP_LE32TOLE64: pop the stack as a 4 byte signed LE. Push the corresponding 8 byte LE number. Cannot fail, useful for conversion of version/sequence.
- Define
-
Changes to existing Opcodes:
- Add
OP_CHECKSIGFROMSTACKandOP_CHECKSIGFROMSTACKVERIFYto follow the semantics from bip340 when witness program is v1. In more detail, the opcodes pops three elements stack 1) 32 bytepkXonly public key 2) Variable length messagemsgand 3) 64 byte Schnorr signaturesig. Letres = BIP340_verify(pk, msg, sig)whereBIP340_verifyis defined for elements here. Note that this is different form bitcoin BIP340 as it uses different tagged hashes. If opcode isOP_CHECKSIGFROMSTACKVERIFY, abort if the verification fails. - If the opcode is
OP_CHECKSIGFROMSTACK, push0if an empty sig is provided and push1if the verification succeeds. Abort if provided with a non-empty signature that fails the verification. BothOP_CHECKSIGFROMSTACKandOP_CHECKSIGFROMSTACKVERIFYcount as 50 towards the sigops budget. - Abort if the pubkey is empty, but allow success for non-empty non-byte keys for future extension of tagged keys.
- Add
General tips, suggestions and quirks for using Taproot opcodes
- In order to inspect the current input,
OP_INSPECTINPUTcan be used in combination withOP_INSPECTCURRENTINPUTto obtain information about input being spent on stack - The input nNonce field is not consistently stored in elements UTXO database. Therefore, it is not covered in sighash or
wtxidand hence introspecting it is not possible. - Coversion opcodes can be used be used to convert ScriptNums/LE32 nums to LE64 for operations.