Skip to content

Commit 513fda7

Browse files
authored
release: v1.4.8 (#1820)
1 parent 3474cc4 commit 513fda7

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Changelog
22

3-
*Apr 24, 2025*
3+
44

55
## UNRELEASED
66

7+
*Jun 20, 2025*
8+
9+
## v1.4.8
10+
711
### Improvements
812

913
* [#1817](https://github.com/crypto-org-chain/cronos/pull/1817) Add support for eth_getBlockReceipts.
1014

15+
*Apr 24, 2025*
16+
1117
## v1.4.7
1218

1319
### Bug Fixes

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
nativeByteOrder ? true, # nativeByteOrder mode will panic on big endian machines
1212
}:
1313
let
14-
version = "v1.4.7";
14+
version = "v1.4.8";
1515
pname = "cronosd";
1616
tags = [
1717
"ledger"

docs/api/json-rpc/endpoints.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Check the JSON-RPC methods supported on Cronos. {synopsis}
88

99
## Pre-requisite Readings
1010

11-
- [Ethereum JSON-RPC](https://ethereum.github.io/execution-apis/api-documentation) {prereq}
11+
- [Ethereum JSON-RPC](https://ethereum.github.io/execution-apis/docs/reference/json-rpc-api) {prereq}
1212
- [Geth JSON-RPC APIs](https://geth.ethereum.org/docs/interacting-with-geth/rpc) {prereq}
1313

1414
## Endpoints
@@ -38,6 +38,7 @@ Check the JSON-RPC methods supported on Cronos. {synopsis}
3838
| [`eth_estimateGas`](#eth-estimategas) | Eth ||| |
3939
| [`eth_getBlockByNumber`](#eth-getblockbynumber) | Eth ||| |
4040
| [`eth_getBlockByHash`](#eth-getblockbyhash) | Eth ||| |
41+
| [`eth_getBlockReceipts`](#eth-getblockbyhash) | Eth ||| |
4142
| [`eth_getTransactionByHash`](#eth-gettransactionbyhash) | Eth ||| |
4243
| [`eth_getTransactionByBlockHashAndIndex`](#eth-gettransactionbyblockhashandindex) | Eth ||| |
4344
| [`eth_getTransactionReceipt`](#eth-gettransactionreceipt) | Eth ||| |

docs/api/json-rpc/events.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ where `hexAddress` is an Ethereum hex address (eg: `0x11223344556677889900112233
6060

6161
### Ethereum JSON-RPC Events
6262

63-
Cronos also supports the Ethereum [JSON-RPC](https://ethereum.github.io/execution-apis/api-documentation) filters calls to
64-
subscribe to [state logs](https://ethereum.github.io/execution-apis/api-documentation#eth_newfilter),
65-
[blocks](https://ethereum.github.io/execution-apis/api-documentation#eth_newblockfilter) or [pending
66-
transactions](https://ethereum.github.io/execution-apis/api-documentation#eth_newpendingtransactionfilter) changes.
63+
Cronos also supports the Ethereum [JSON-RPC](https://ethereum.github.io/execution-apis/docs/reference/json-rpc-api) filters calls to
64+
subscribe to [state logs](https://ethereum.github.io/execution-apis/docs/reference/eth_newfilter),
65+
[blocks](https://ethereum.github.io/execution-apis/docs/reference/eth_newblockfilter) or [pending
66+
transactions](https://ethereum.github.io/execution-apis/docs/reference/eth_newpendingtransactionfilter) changes.
6767

6868
Under the hood, it uses the Tendermint RPC client's event system to process subscriptions that are
6969
then formatted to Ethereum-compatible events.
@@ -74,7 +74,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_newBlockFilter","params":[],
7474
{"jsonrpc":"2.0","id":1,"result":"0x3503de5f0c766c68f78a03a3b05036a5"}
7575
```
7676

77-
Then you can check if the state changes with the [`eth_getFilterChanges`](https://ethereum.github.io/execution-apis/api-documentation#eth_getfilterchanges) call:
77+
Then you can check if the state changes with the [`eth_getFilterChanges`](https://ethereum.github.io/execution-apis/docs/reference/eth_getfilterchanges) call:
7878

7979
```bash
8080
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getFilterChanges","params":["0x3503de5f0c766c68f78a03a3b05036a5"],"id":1}' -H "Content-Type: application/json" http://localhost:8545

docs/api/json-rpc/server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Learn about the JSON-RPC server to interact with the EVM. {synopsis}
88

99
## Pre-requisite Readings
1010

11-
- [EthWiki JSON-RPC API](https://ethereum.github.io/execution-apis/api-documentation) {prereq}
11+
- [EthWiki JSON-RPC API](https://ethereum.github.io/execution-apis/docs/reference/json-rpc-api) {prereq}
1212
- [Geth JSON-RPC Server](https://geth.ethereum.org/docs/interacting-with-geth/rpc) {prereq}
1313

1414
## JSON-RPC API

docs/architecture/adr-001.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ Accepted
6565
* https://github.com/althea-net/cosmos-gravity-bridge/issues/347
6666
* https://github.com/althea-net/cosmos-gravity-bridge/issues/346
6767
* https://github.com/althea-net/cosmos-gravity-bridge/issues/344
68-
* in-place store migrations: https://github.com/cosmos/cosmos-sdk/blob/a47bd592e951d34ebbffca03f85ca98d65b61be8/docs/architecture/adr-041-in-place-store-migrations.md
68+
* in-place store migrations: https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-041-in-place-store-migrations.md

docs/architecture/adr-008.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,5 +170,3 @@ Accepted
170170

171171
## References
172172

173-
### x/erc20 module
174-
- https://github.com/evmos/evmos/tree/main/x/erc20/spec

0 commit comments

Comments
 (0)