Joe
66f7497339
update grafana page
2 years ago
Felix Lange
12df45662a
all: remove remaining uses of untyped golang-lru ( #26194 )
2 years ago
Felix Lange
c3b42683b3
Dockerfile: upgrade to Go 1.19 ( #26195 )
2 years ago
Sina Mahmoodi
64067fbdc4
eth/tracers: small refactor for native tracers ( #26196 )
...
Use noopTracer as a base for other native tracers to avoid extra boilerplate for unimplemented hooks.
2 years ago
Paul Wackerow
629ed7c885
default to system color mode
2 years ago
Paul Wackerow
e2858c04dc
Update SpecificVersionsSection.tsx
2 years ago
Paul Wackerow
87665f0e35
Merge branch 'master' into dark-mode
2 years ago
Paul Wackerow
ecb4f6a9ce
matched button hover styling for dark toggle
2 years ago
Corwin Smith
41932f6527
remove unused file
2 years ago
Corwin Smith
f380245ca0
Merge branch 'setupDocs' into codeSnippet
2 years ago
Corwin Smith
d39c1fde78
Merge branch 'master' into setupDocs
2 years ago
Corwin Smith
73454b0028
style code blocks
2 years ago
Corwin Smith
649918abe5
inline code styles
2 years ago
Corwin Smith
1d89df8cc1
Merge pull request #32 from ethereum/latest-releases-downloads
...
feat: latest releases downloads logic
2 years ago
Nicolás Quiroz
832ad6bab0
chore: reduce release name & version to a single request
2 years ago
Nicolás Quiroz
5d61fc3219
Merge branch 'master' of github.com:ethereum/geth-website into latest-releases-downloads
2 years ago
Nicolás Quiroz
e398c08f76
Merge pull request #24 from ethereum/downloads-desktop
...
Downloads desktop
2 years ago
Corwin Smith
3643120353
change requests
2 years ago
Paul Wackerow
8e6023c60b
fix, switch to correct gropher
2 years ago
Paul Wackerow
4e25c6bf94
linting
2 years ago
Paul Wackerow
87f1d60428
implement ButtonLinkSecondary component
2 years ago
Paul Wackerow
e9ca402279
create ButtonLinkSecondary component
2 years ago
Nicolás Quiroz
d7ed9e4d5b
chore: move urls to constants
2 years ago
Paul Wackerow
8016016c68
prop clean up
2 years ago
Paul Wackerow
caaedf0335
refactor to Section components to accept SVG prop
2 years ago
Paul Wackerow
d791e0a1a3
replace downloads images with SVG components
2 years ago
Paul Wackerow
980255ebcf
build downloads svg components
2 years ago
Paul Wackerow
0bbb61cfb2
replace homepage images with SVG components
...
allows color of SVGs to be dynamically styled based on color mode choice
2 years ago
Paul Wackerow
483a822251
build homepage svg components
2 years ago
Nicolás Quiroz
83a2c81290
feat: add latest releases downloads logic
2 years ago
storyicon
add337e0f7
rpc: support injecting HTTP headers through context ( #26023 )
...
This adds a way to specify HTTP headers per request.
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Felix Lange <fjl@twurst.com>
2 years ago
Mark Tyneway
b4ea2bf7dd
all: implement EIP-1153 transient storage ( #26003 )
...
Implements TSTORE and TLOAD as specified by the following EIP:
https://eips.ethereum.org/EIPS/eip-1153
https://ethereum-magicians.org/t/eip-1153-transient-storage-opcodes/553
Co-authored-by: Sara Reynolds <snreynolds2506@gmail.com>
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2 years ago
ligi
bc90a88263
ethclient: docs, fix misleading comment ( #26189 )
...
closes #26188
2 years ago
Paul Wackerow
384ecd0248
add sun icon when in dark mode
2 years ago
Paul Wackerow
fe4014c03c
enable light/dark mode toggle button
2 years ago
Paul Wackerow
c71e2e2e23
refactor colors to use semantic tokens
2 years ago
Paul Wackerow
d43682359f
update icon svg colors to use currentColor
...
enabled color-mode responsiveness with "color" prop
2 years ago
Paul Wackerow
e77c1507f5
fix hamburger spelling
...
switch fill color to "currentColor" to allow using dark mode responsive "color" prop
2 years ago
Paul Wackerow
d93e1b5d4d
setup color palette from design system
2 years ago
Corwin Smith
48553b284e
Merge branch 'master' into downloads-desktop
2 years ago
Corwin Smith
71ce846b9e
Merge branch 'master' into setupDocs
2 years ago
Corwin Smith
d096d10aba
add main
2 years ago
Corwin Smith
4cd65f1b22
Remove flex from DownloadsHero
2 years ago
Corwin Smith
86ada0d098
fix footer regression ( #29 )
...
* fix footer regression
* fix social icon and copyright date
2 years ago
Felix Lange
ae42148093
rpc: fix connection tracking set in Server ( #26180 )
...
rpc: fix connection tracking in Server
When upgrading to mapset/v2 with generics, the set element type used in
rpc.Server had to be changed to *ServerCodec because ServerCodec is not
'comparable'. While the distinction is technically correct, we know all
possible ServerCodec types, and all of them are comparable. So just use
a map instead.
2 years ago
Felix Lange
9afc6816d2
common/lru: add generic LRU implementation ( #26162 )
...
It seems there is no fully typed library implementation of an LRU cache.
So I wrote one. Method names are the same as github.com/hashicorp/golang-lru,
and the new type can be used as a drop-in replacement.
Two reasons to do this:
- It's much easier to understand what a cache is for when the types are right there.
- Performance: the new implementation is slightly faster and performs zero memory
allocations in Add when the cache is at capacity. Overall, memory usage of the cache
is much reduced because keys are values are no longer wrapped in interface.
2 years ago
Jolly Zhao
f58ebd9696
all: use github.com/deckarep/golang-set/v2 (generic set) ( #26159 )
...
Co-authored-by: Felix Lange <fjl@twurst.com>
2 years ago
Martin Holst Swende
8c5ce1107b
eth/filters: send rpctransactions in pending-subscription ( #26126 )
...
This PR changes the pending tx subscription to return RPCTransaction types instead of normal Transaction objects. This will fix the inconsistencies with other tx returning API methods (i.e. getTransactionByHash), and also fill in the sender value for the tx.
co-authored by @s1na
2 years ago
Martin Holst Swende
e34e540e4c
accounts/keystore: replace inotify with fsnotify ( #26176 )
2 years ago
Corwin Smith
14900bcdfa
fix build issues
2 years ago