You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Merge changes from the initial PR
* Add `BlockHeader` and `PendingBlockHeader`
* Add tests for `get_block_with_receipt`
* Update client models and schemas
* Update docs and workflow
* Increase max fee for devnet tests
* Add more tests
* Update devnet sha in the workflow
* Fix failing docs test
* Update estimated fee multiplier description in docs
* Update devnet sha
* Enhance asserts in block tests
* Cover case when `estimated_fee.gas_price` equals 0
* Update migration guide
* Fix `trace_transaction`
* Reorder fields in `TransactionReceipt`
* Run trace api tests on integration
* Add alpha information to migration guide
* Update docs/migration_guide.rst
Co-authored-by: Maksim Zdobnikau <43750648+DelevoXDG@users.noreply.github.com>
---------
Co-authored-by: Maksim Zdobnikau <43750648+DelevoXDG@users.noreply.github.com>
If you choose to install `starknet-devnet-rs <https://github.com/0xSpaceShard/starknet-devnet-rs>`_ using a different method, please make sure to add the executable ``starknet-devnet`` to your ``PATH`` environment variable.
1. :class:`PendingStarknetBlock` and :class:`PendingStarknetBlockWithTxHashes` field ``parent_block_hash`` has been renamed to ``parent_hash``
22
+
2. :class:`StarknetBlockCommon` has been renamed to :class:`BlockHeader`
23
+
3. :class:`StarknetBlock` and :class:`StarknetBlockWithTxHashes` fields ``parent_block_hash`` and ``root`` have been renamed to ``parent_hash`` and ``new_root`` respectively
24
+
4. :class:`FunctionInvocation` field ``execution_resources`` has been renamed to ``computation_resources``
25
+
26
+
0.21.0 Minor changes
27
+
-----------------------
28
+
13
29
1. :class:`EventsChunk` field ``events`` is now a list of :class:`EmittedEvent` instead of :class:`Event`
30
+
2. :class:`ExecutionResources` has a new required field ``data_availability``
31
+
3. :class:`InvokeTransactionTrace`, :class:`DeclareTransactionTrace` and :class:`DeployAccountTransactionTrace` have a new required field ``execution_resources``
32
+
4. :class:`EstimatedFee` has new required fields ``data_gas_consumed`` and ``data_gas_price``
33
+
5. :class:`StarknetBlock`, :class:`PendingStarknetBlock`, :class:`StarknetBlockWithTxHashes`, :class:`PendingStarknetBlockWithTxHashes` have new required fields ``l1_data_gas_price`` and ``l1_da_mode``
0 commit comments