Skip to content

Commit 7366a34

Browse files
committed
docs: opreturn fixes
1 parent df25179 commit 7366a34

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1107,13 +1107,13 @@ Breaking this down:
11071107

11081108
- `6a` → OP_RETURN opcode
11091109

1110-
- `04` → Pushdata indicating the size (in bytes) of the protocol identifier
1110+
- `04` → Pushdata indicating the size of the protocol identifier
11111111

11121112
- `50415900` → PayButton identifier (ASCII `PAY` + `0x00`)
11131113

11141114
- `00` → Version 0
11151115

1116-
- `0c` → Pushdata indicating the size (in bytes) of data payload identifier
1116+
- `0c` → Pushdata indicating the size of data payload identifier
11171117

11181118
- `0102030405060708090a0b0c` → Data payload
11191119

@@ -1129,17 +1129,17 @@ Breaking this down:
11291129

11301130
- `6a` → OP_RETURN opcode
11311131

1132-
- `04` → Pushdata indicating the size (in bytes) of the protocol identifier
1132+
- `04` → Pushdata indicating the size of the protocol identifier
11331133

11341134
- `50415900` → PayButton identifier (ASCII `PAY` + `0x00`)
11351135

11361136
- `00` → Version 0
11371137

1138-
- `0c` → Pushdata indicating the size (in bytes) of data payload identifier
1138+
- `0c` → Pushdata indicating the size of data payload identifier
11391139

11401140
- `0102030405060708090a0b0c` → Data payload
11411141

1142-
- `00` → Pushdata for payment ID (nonce), indicating there will be none
1142+
- `00` → Pushdata for payment ID, indicating there will be none
11431143

11441144

11451145

@@ -1150,33 +1150,33 @@ Breaking this down:
11501150

11511151
- `6a` → OP_RETURN opcode
11521152

1153-
- `04` → Pushdata indicating the size (in bytes) of the protocol identifier
1153+
- `04` → Pushdata indicating the size of the protocol identifier
11541154

11551155
- `50415900` → PayButton identifier (ASCII `PAY` + `0x00`)
11561156

11571157
- `00` → Version 0
11581158

11591159
- `00` → No data payload
11601160

1161-
- `08` → 8-byte value indicating that this transaction has an 8-byte payment ID (nonce)
1161+
- `08` → 8-byte value indicating that this transaction has an 8-byte payment ID
11621162

1163-
- `0102030405060708` → payment ID (nonce)
1163+
- `0102030405060708` → payment ID
11641164

1165-
### 4. Transaction with no data and no payment ID (nonce)
1165+
### 4. Transaction with no data and no payment ID
11661166

11671167
6a0450415900000000
11681168

11691169
- `6a` → OP_RETURN opcode
11701170

1171-
- `04` → Pushdata indicating the size (in bytes) of the protocol identifier
1171+
- `04` → Pushdata indicating the size of the protocol identifier
11721172

11731173
- `50415900` → PayButton identifier (ASCII `PAY` + `0x00`)
11741174

11751175
- `00` → Version 0
11761176

11771177
- `00` → Pushdata for data payload, indicating there will be none
11781178

1179-
- `00` → Pushdata for payment ID (nonce), indicating there will be none
1179+
- `00` → Pushdata for payment ID, indicating there will be none
11801180

11811181

11821182

0 commit comments

Comments
 (0)