From 83c97843b1b274c26c4596dff897d1ab69a9c1aa Mon Sep 17 00:00:00 2001 From: Matt-RUN-CKB Date: Fri, 11 Oct 2024 20:07:26 +0700 Subject: [PATCH] Update index.md Signed-off-by: Matt-RUN-CKB --- what_is_OPCAT_(explainCKBot)/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/what_is_OPCAT_(explainCKBot)/index.md b/what_is_OPCAT_(explainCKBot)/index.md index 829a674..430e602 100644 --- a/what_is_OPCAT_(explainCKBot)/index.md +++ b/what_is_OPCAT_(explainCKBot)/index.md @@ -24,10 +24,10 @@ More specifically, opcodes are single-byte instructions that specify a particula - * **Stack Operations:** These include basic manipulations of the stack, like duplicating (`OP_DUP`), dropping (`OP_DROP`), and swapping (`OP_SWAP`) items. - * **Arithmetic Operations:** Opcodes like `OP_ADD` and `OP_SUB` perform basic arithmetic on the stack items. - * **Cryptographic Operations:** These include operations for cryptographic functions such as `OP_CHECKSIG`, which verifies digital signatures, and `OP_SHA256`, which applies the SHA-256 hash function. - * **Control Flow Operations:** Opcodes like `OP_IF` and `OP_ELSE` control the script's execution flow, allowing for conditional execution of code blocks. +- **Stack Operations:** These include basic manipulations of the stack, like duplicating (`OP_DUP`), dropping (`OP_DROP`), and swapping (`OP_SWAP`) items. +- **Arithmetic Operations:** Opcodes like `OP_ADD` and `OP_SUB` perform basic arithmetic on the stack items. +- **Cryptographic Operations:** These include operations for cryptographic functions such as `OP_CHECKSIG`, which verifies digital signatures, and `OP_SHA256`, which applies the SHA-256 hash function. +- **Control Flow Operations:** Opcodes like `OP_IF` and `OP_ELSE` control the script's execution flow, allowing for conditional execution of code blocks. Opcodes enable the creation of various transaction types and smart contracts on the Bitcoin network. For instance, multi-signature transactions utilize `OP_CHECKMULTISIG` to require multiple signatures for validation. Conditional payments and atomic swaps are also facilitated by specific combinations of opcodes, allowing for more complex financial transactions and interoperability between different blockchains.