Skip to content

Commit

Permalink
Generate spec
Browse files Browse the repository at this point in the history
  • Loading branch information
jannotti committed Sep 8, 2021
1 parent b162c42 commit 52d6c86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/transactions/logic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Some of these have immediate data in the byte or bytes after the opcode.
| `load i` | copy a value from scratch space to the stack |
| `loads` | copy a value from the Xth scratch space to the stack |
| `store i` | pop value X. store X to the Ith scratch space |
| `stores` | pop indexes A and B. store A to the Bth scratch space |
| `stores` | pop indexes A and B. store B to the Ath scratch space |
| `gload t i` | push Ith scratch space index of the Tth transaction in the current group |
| `gloads i` | push Ith scratch space index of the Xth transaction in the current group |
| `gaid t` | push the ID of the asset or application created in the Tth transaction of the current group |
Expand Down
4 changes: 2 additions & 2 deletions data/transactions/logic/TEAL_opcodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,9 +580,9 @@ for notes on transaction fields available, see `txn`. If top of stack is _i_, `g
## stores

- Opcode: 0x3f
- Pops: *... stack*, {any A}, {uint64 B}
- Pops: *... stack*, {uint64 A}, {any B}
- Pushes: _None_
- pop indexes A and B. store A to the Bth scratch space
- pop indexes A and B. store B to the Ath scratch space
- LogicSigVersion >= 5

## bnz target
Expand Down

0 comments on commit 52d6c86

Please sign in to comment.