mainnet-v1.1.1
Highlights
- [Minor Breaking Change] RPC
dev_inspect_transaction_block
is now checking that the gas price provided is correctly in the range, between RGP and max gas price.gas_price
is an optional argument to the API.None
still works fine and it is the recommended usage if a specific gas price is not of interest. But if a value is provided it has to be in range, whereas any value used to work. That is in line with other transaction execution APIs (execute the transaction and dry run).
If the result of the dev inspect RPC call isGasPriceUnderRGP
**or **GasPriceTooHigh
is an indication of an invalid gas price and that can be corrected either by passingNone
or a propergas_price
- [RPC] Added
get_latest_address_metrics
andget_checkpoint_address_metrics
toextended_api
, which are only available on the indexer. - [RPC bugfix] - fixed incorrect zero timing for addresses, also reverted changes to system addresses (e.g. 0x2) - #11887
- [RPC bugfix] - remove outliers from APY calculation #11867
Full Changelog: devnet-v1.1.0...sui-v1.1.1