Skip to content

Commit

Permalink
chore: updated changelog, deprecated ContractFunctionResult.CreatedCo…
Browse files Browse the repository at this point in the history
…ntractIDs

Signed-off-by: Andrei Kuzmiankov <[email protected]>
  • Loading branch information
andrix10 committed Feb 1, 2022
1 parent 15f1b08 commit 94903d8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## v2.9.0-beta.1

### Added

* CREATE2 Solidity addresses can now be represented by a `ContractId` with `EvmAddress` set.
* `ContractId.FromEvmAddress()`
* `ContractFunctionResult.StateChanges`
* `ContractFunctionResult.EvmAddress`
* `ContractStateChange`
* `StorageChange`
* New response codes.
* `ChunkedTransaction.[Set|Get]ChunkSize()`, and changed default chunk size for `FileAppendTransaction` to 2048.

### Fixed

* Requests not cycling though nodes.
* Free queries not attempting to retry on different nodes.

### Deprecated

* `ContractId.FromSolidityAddress()`, use `ContractId.FromEvmAddress()` instead.
* `ContractFunctionResult.CreatedContractIDs`.

## v2.8.0

### Added
Expand Down
1 change: 1 addition & 0 deletions contract_id.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ func ContractIDFromEvmAddress(shard uint64, realm uint64, evmAddress string) (Co

// ContractIDFromSolidityAddress constructs a ContractID from a string representation of a _Solidity address
// Does not populate ContractID.EvmAddress
// Deprecated
func ContractIDFromSolidityAddress(s string) (ContractID, error) {
shard, realm, contract, err := _IdFromSolidityAddress(s)
if err != nil {
Expand Down

0 comments on commit 94903d8

Please sign in to comment.