-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit 4917aef
node, chain: Add extensible compression support for RPC requests
- Replace boolean compression_enabled with Compression enum (None, Gzip)
- Support per-provider compression configuration via "compression" field
- Add placeholders for future compression methods (Brotli, Deflate)
- Update transport layer to handle compression enum with match statement
- Add comprehensive unit tests for compression configuration parsing
- Update example configuration and documentation
Configuration examples:
compression = "gzip" # Enable gzip compression
compression = "none" # Disable compression (default)
Addresses issue #5671 with future-extensible design.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent d4ddfaf commit 4917aef
File tree
7 files changed
+225
-6
lines changed- chain/ethereum/src
- graph
- node
- claude/plans
- resources/tests
- src
7 files changed
+225
-6
lines changedLines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 18 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | + | ||
2 | 3 |
| |
3 | 4 |
| |
4 | 5 |
| |
| |||
54 | 55 |
| |
55 | 56 |
| |
56 | 57 |
| |
58 | + | ||
57 | 59 |
| |
58 | 60 |
| |
59 | - | ||
60 | - | ||
61 | - | ||
62 | - | ||
61 | + | ||
62 | + | ||
63 | + | ||
64 | + | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | + | ||
73 | + | ||
74 | + | ||
75 | + | ||
76 | + | ||
63 | 77 |
| |
64 | 78 |
| |
65 | 79 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
26 | 26 |
| |
27 | 27 |
| |
28 | 28 |
| |
29 | - | ||
29 | + | ||
30 | 30 |
| |
31 | 31 |
| |
32 | 32 |
| |
|
Lines changed: 98 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
46 | + | ||
47 | + | ||
48 | + | ||
49 | + | ||
50 | + | ||
51 | + | ||
52 | + | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + | ||
58 | + | ||
59 | + | ||
60 | + | ||
61 | + | ||
62 | + | ||
63 | + | ||
64 | + | ||
65 | + | ||
66 | + | ||
67 | + | ||
68 | + | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | + | ||
73 | + | ||
74 | + | ||
75 | + | ||
76 | + | ||
77 | + | ||
78 | + | ||
79 | + | ||
80 | + | ||
81 | + | ||
82 | + | ||
83 | + | ||
84 | + | ||
85 | + | ||
86 | + | ||
87 | + | ||
88 | + | ||
89 | + | ||
90 | + | ||
91 | + | ||
92 | + | ||
93 | + | ||
94 | + | ||
95 | + | ||
96 | + | ||
97 | + | ||
98 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
48 | 48 |
| |
49 | 49 |
| |
50 | 50 |
| |
51 | + | ||
51 | 52 |
| |
52 | 53 |
| |
53 | 54 |
| |
|
Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
282 | 282 |
| |
283 | 283 |
| |
284 | 284 |
| |
285 | - | ||
285 | + | ||
286 | + | ||
286 | 287 |
| |
287 | 288 |
| |
288 | 289 |
| |
| |||
293 | 294 |
| |
294 | 295 |
| |
295 | 296 |
| |
297 | + | ||
296 | 298 |
| |
297 | 299 |
| |
298 | 300 |
| |
|
Lines changed: 90 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
502 | 502 |
| |
503 | 503 |
| |
504 | 504 |
| |
505 | + | ||
505 | 506 |
| |
506 | 507 |
| |
507 | 508 |
| |
| |||
705 | 706 |
| |
706 | 707 |
| |
707 | 708 |
| |
709 | + | ||
710 | + | ||
711 | + | ||
712 | + | ||
708 | 713 |
| |
709 | 714 |
| |
710 | 715 |
| |
| |||
901 | 906 |
| |
902 | 907 |
| |
903 | 908 |
| |
909 | + | ||
904 | 910 |
| |
905 | 911 |
| |
906 | 912 |
| |
| |||
944 | 950 |
| |
945 | 951 |
| |
946 | 952 |
| |
953 | + | ||
954 | + | ||
955 | + | ||
956 | + | ||
957 | + | ||
958 | + | ||
959 | + | ||
960 | + | ||
961 | + | ||
962 | + | ||
963 | + | ||
964 | + | ||
965 | + | ||
966 | + | ||
967 | + | ||
968 | + | ||
969 | + | ||
970 | + | ||
971 | + | ||
947 | 972 |
| |
948 | 973 |
| |
949 | 974 |
| |
| |||
1307 | 1332 |
| |
1308 | 1333 |
| |
1309 | 1334 |
| |
1335 | + | ||
1310 | 1336 |
| |
1311 | 1337 |
| |
1312 | 1338 |
| |
| |||
1333 | 1359 |
| |
1334 | 1360 |
| |
1335 | 1361 |
| |
1362 | + | ||
1336 | 1363 |
| |
1337 | 1364 |
| |
1338 | 1365 |
| |
| |||
1440 | 1467 |
| |
1441 | 1468 |
| |
1442 | 1469 |
| |
1470 | + | ||
1443 | 1471 |
| |
1444 | 1472 |
| |
1445 | 1473 |
| |
| |||
1465 | 1493 |
| |
1466 | 1494 |
| |
1467 | 1495 |
| |
1496 | + | ||
1468 | 1497 |
| |
1469 | 1498 |
| |
1470 | 1499 |
| |
| |||
1834 | 1863 |
| |
1835 | 1864 |
| |
1836 | 1865 |
| |
1866 | + | ||
1837 | 1867 |
| |
1838 | 1868 |
| |
1839 | 1869 |
| |
| |||
1846 | 1876 |
| |
1847 | 1877 |
| |
1848 | 1878 |
| |
1879 | + | ||
1880 | + | ||
1881 | + | ||
1882 | + | ||
1883 | + | ||
1884 | + | ||
1885 | + | ||
1886 | + | ||
1887 | + | ||
1888 | + | ||
1889 | + | ||
1890 | + | ||
1891 | + | ||
1892 | + | ||
1893 | + | ||
1894 | + | ||
1895 | + | ||
1896 | + | ||
1897 | + | ||
1898 | + | ||
1899 | + | ||
1900 | + | ||
1901 | + | ||
1902 | + | ||
1903 | + | ||
1904 | + | ||
1905 | + | ||
1906 | + | ||
1907 | + | ||
1908 | + | ||
1909 | + | ||
1910 | + | ||
1911 | + | ||
1912 | + | ||
1913 | + | ||
1914 | + | ||
1915 | + | ||
1916 | + | ||
1917 | + | ||
1918 | + | ||
1919 | + | ||
1920 | + | ||
1921 | + | ||
1922 | + | ||
1923 | + | ||
1924 | + | ||
1925 | + | ||
1926 | + | ||
1927 | + | ||
1928 | + | ||
1929 | + | ||
1930 | + | ||
1931 | + | ||
1932 | + | ||
1933 | + | ||
1934 | + | ||
1935 | + | ||
1936 | + | ||
1937 | + | ||
1938 | + | ||
1849 | 1939 |
| |
1850 | 1940 |
| |
1851 | 1941 |
| |
|
0 commit comments