Skip to content
This repository was archived by the owner on Jan 21, 2023. It is now read-only.

Commit a8eff72

Browse files
committed
readme
1 parent c937907 commit a8eff72

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

README.md

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Constants
2+
- [x] OP_FALSE OP_0
3+
- [ ] push bytes
4+
- [ ] OP_PUSHDATA1
5+
- [ ] OP_PUSHDATA2
6+
- [ ] OP_PUSHDATA4
7+
- [ ] OP_1NEGATE
8+
- [x] OP_TRUE OP_1 ~ OP_16
9+
10+
# Flow control
11+
- [x] OP_NOP
12+
- [x] OP_IF OP_ELSE OP_ENDIF
13+
- [ ] OP_VERIFY
14+
- [ ] OP_RETURN
15+
16+
# Stack
17+
- [ ] OP_TOALTSTACK
18+
- [ ] OP_FROMALTSTACK
19+
- [ ] OP_IFDUP
20+
- [ ] OP_DEPTH
21+
- [ ] OP_DROP
22+
- [x] OP_DUP
23+
- [ ] OP_NIP
24+
- [ ] OP_OVER
25+
- [ ] OP_PICK
26+
- [ ] OP_ROLL
27+
- [ ] OP_ROT
28+
- [ ] OP_SWAP
29+
- [ ] OP_TUCK
30+
- [ ] OP_2DROP
31+
- [ ] OP_2DUP
32+
- [ ] OP_3DUP
33+
- [ ] OP_2OVER
34+
- [ ] OP_2ROT
35+
- [ ] OP_2SWAP
36+
37+
# Splice
38+
- [ ] OP_SIZE
39+
40+
# Bitwise logic
41+
- [ ] OP_EQUAL
42+
- [ ] OP_EQUALVERIFY
43+
44+
# Arithmetic
45+
- [ ] OP_1ADD
46+
- [ ] OP_1SUB
47+
- [ ] OP_NEGATE
48+
- [ ] OP_ABS
49+
- [ ] OP_NOT
50+
- [ ] OP_0NOTEQUAL
51+
- [ ] OP_ADD
52+
- [ ] OP_SUB
53+
- [ ] OP_BOOLAND
54+
- [ ] OP_BOOLOR
55+
- [ ] OP_NUMEQUAL
56+
- [ ] OP_NUMEQUALVERIFY
57+
- [ ] OP_NUMNOTEQUAL
58+
- [ ] OP_LESSTHAN
59+
- [ ] OP_GREATERTHAN
60+
- [ ] OP_LESSTHANOREQUAL
61+
- [ ] OP_GREATERTHANOREQUAL
62+
- [ ] OP_MIN
63+
- [ ] OP_MAX
64+
- [ ] OP_WITHIN
65+
66+
# Crypto
67+
- [ ] OP_RIPEMD160
68+
- [ ] OP_SHA1
69+
- [ ] OP_SHA256
70+
- [ ] OP_HASH160
71+
- [ ] OP_HASH256
72+
- [ ] OP_CODESEPARATOR
73+
- [ ] OP_CHECKSIG
74+
- [ ] OP_CHECKSIGVERIFY
75+
- [ ] OP_CHECKMULTISIG
76+
- [ ] OP_CHECKMULTISIGVERIFY
77+
- [ ] OP_NOP2 / OP_CHECKLOCKTIMEVERIFY
78+
- [ ] OP_NOP3 / OP_CHECKSEQUENCEVERIFY
79+
80+
# Pseudo-words
81+
- [ ] OP_PUBKEYHASH
82+
- [ ] OP_PUBKEY
83+
- [ ] OP_INVALIDOPCODE

0 commit comments

Comments
 (0)