Skip to content

Commit 68cff61

Browse files
authored
Merge pull request #71 from ltonetwork/Update-documentation
Update README.md
2 parents f66e6db + ce7d5e4 commit 68cff61

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,27 @@ from lto.transactions import RevokeAssociation
147147

148148
transaction = RevokeAssociation(recipient, association_type, anchor)
149149
```
150+
151+
### Data transaction
152+
153+
```python
154+
from lto.transactions import Data
155+
156+
transaction = Data(data_entries)
157+
```
158+
159+
### Register transaction
160+
161+
```python
162+
from lto.transactions import Register
163+
164+
transaction = Register(account2, account3)
165+
```
166+
167+
### Burn transaction
168+
169+
```python
170+
from lto.transactions import Burn
171+
172+
transaction = Burn(amount)
173+
```

0 commit comments

Comments
 (0)