Skip to content

Commit d69ed97

Browse files
committed
Update readme
1 parent 75740f0 commit d69ed97

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

CHANGELOG.md

+23-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,33 @@
22

33
## v1.16.0
44

5-
Refactoring
5+
Refactoring and Mumbai support
66

7-
* Changed memory layout and interface for all hash types and `tezos.Address`
8-
- hashes and addresses can now be used as Golang Map keys
7+
BREAKING: Note that due to a new internal address encoding data writting using binary marshalers with earlier versions of TzGo is incompatible.
8+
9+
* Changed memory layout and interface for all hash types and `tezos.Address` to save 24 bytes per address/hash that was previously required for a byte slice header
10+
- hashes and addresses directly comparable now and can thus be used as Golang Map keys
911
- renamed `Address.Bytes()` to `Encode()`
1012
- renamed `Address.Bytes22()` to `EncodePadded()`
1113
- use `Address.Decode(buf []byte)` instead of `UnmarshalBinary()` for reading binary encoded addresses
12-
* Simplified `tezos.Params` removing unused fields and protocol deployment hendling
14+
* Simplified `tezos.Params` removing unused fields and protocol deployment handling
15+
* Added smart rollup support to rpc and codec packages
16+
* Added binary encoders for new operations since Lima
17+
- `drain_delegate`
18+
- `increase_paid_storage`
19+
- `set_deposits_limit`
20+
- `update_consensus_key`
21+
- `transfer_ticket`
22+
- `smart_rollup_add_messages`
23+
- `smart_rollup_cement`
24+
- `smart_rollup_originate`
25+
- `smart_rollup_execute_outbox_message`
26+
- `smart_rollup_publish`
27+
- `smart_rollup_recover_bond`
28+
- `smart_rollup_refute` (incomplete)
29+
- `smart_rollup_timeout`
30+
- `dal_attestation`
31+
- `dal_publish`
1332

1433
## v1.15.0
1534

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Our main focus is on **correctness**, **stability**, and **compliance** with the
66

77
Current Tezos protocol support in TzGo
88

9+
- Mumbai v016
910
- Lima v015
1011
- Kathmandu v014
1112
- Jakarta v013
@@ -355,7 +356,7 @@ func main() {
355356

356357
## License
357358

358-
The MIT License (MIT) Copyright (c) 2020-2022 Blockwatch Data Inc.
359+
The MIT License (MIT) Copyright (c) 2020-2023 Blockwatch Data Inc.
359360

360361
Permission is hereby granted, free of charge, to any person obtaining a copy
361362
of this software and associated documentation files (the "Software"), to deal

codec/transfer_ticket.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"blockwatch.cc/tzgo/tezos"
1212
)
1313

14-
// TransferTicket represents "transaction" operation
14+
// TransferTicket represents "transfer_ticket" operation
1515
type TransferTicket struct {
1616
Manager
1717
Contents micheline.Prim `json:"ticket_contents"`

0 commit comments

Comments
 (0)