Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): preconfs #281

Closed
wants to merge 61 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
c8648e9
basisc slot/signature preconfs addition
cyberhorsey Jun 27, 2024
5c474c0
Remove slog and signature, also hijack eth_getTransactionReceipt
cyberhorsey Jun 28, 2024
ed57045
.
cyberhorsey Jun 28, 2024
9e91c83
encode
cyberhorsey Jun 28, 2024
e4147eb
preconfs nework support
cyberhorsey Jul 2, 2024
9316c67
build on pr
cyberhorsey Jul 2, 2024
3e33107
.'
cyberhorsey Jul 2, 2024
962c01a
change image url
cyberhorsey Jul 3, 2024
d4ae804
Merge branch 'taiko' into preconfs
cyberhorsey Jul 3, 2024
283c866
spew
cyberhorsey Jul 7, 2024
07d9ac7
Merge branch 'preconfs' of github.com:taikochain/taiko-geth into prec…
cyberhorsey Jul 7, 2024
8175e6d
log
cyberhorsey Jul 7, 2024
0be6e70
oops
cyberhorsey Jul 7, 2024
c09982c
forward addtl calls
cyberhorsey Jul 8, 2024
11547c6
lint
cyberhorsey Jul 8, 2024
86dc5a9
Merge branch 'taiko' into preconfs
cyberhorsey Jul 8, 2024
ca1606a
typo
cyberhorsey Jul 25, 2024
7c97fef
Merge branch 'preconfs' of github.com:taikochain/taiko-geth into prec…
cyberhorsey Jul 25, 2024
28837e2
str req
cyberhorsey Jul 25, 2024
22827b7
.
cyberhorsey Jul 25, 2024
239690d
logs
cyberhorsey Jul 25, 2024
a175b68
log
cyberhorsey Jul 25, 2024
e085b23
method
cyberhorsey Jul 25, 2024
c8e4db3
.
cyberhorsey Jul 25, 2024
9dc9717
Type log
cyberhorsey Jul 25, 2024
002515b
.
cyberhorsey Jul 25, 2024
f61e2dd
fix
cyberhorsey Jul 25, 2024
aeeeda0
.
cyberhorsey Jul 25, 2024
d1ebecb
.
cyberhorsey Jul 25, 2024
58b373f
balance fix
cyberhorsey Jul 25, 2024
ffd909d
err
cyberhorsey Jul 25, 2024
4edd506
conforms
cyberhorsey Jul 25, 2024
6a3418e
forwarding
cyberhorsey Jul 25, 2024
b138398
.'
cyberhorsey Jul 25, 2024
139410e
.'
cyberhorsey Jul 25, 2024
7e281e2
try this
cyberhorsey Jul 25, 2024
323c733
handle nil
cyberhorsey Jul 25, 2024
6cd1f75
.
cyberhorsey Jul 25, 2024
f07fe35
one more log
cyberhorsey Jul 25, 2024
9d01948
gn
cyberhorsey Jul 25, 2024
cd44d64
.
cyberhorsey Jul 26, 2024
7391e27
forwarding
cyberhorsey Jul 26, 2024
4ccf51d
.
cyberhorsey Jul 26, 2024
d1ab2fb
Log
cyberhorsey Jul 29, 2024
bf451ad
Check local before forwarding
cyberhorsey Jul 29, 2024
b96e4b7
Merge branch 'taiko' into preconfs
davidtaikocha Aug 8, 2024
6674bcf
update genesis for helder
cyberhorsey Aug 21, 2024
cd7ecf3
Merge branch 'preconfs' of github.com:taikochain/taiko-geth into prec…
cyberhorsey Aug 21, 2024
b46389f
ontake block
cyberhorsey Aug 21, 2024
9a8241c
Merge branch 'taiko' into preconfs
cyberhorsey Aug 21, 2024
c579ad7
log
cyberhorsey Aug 21, 2024
6f0827b
log
cyberhorsey Aug 22, 2024
c6597c6
moar logs
cyberhorsey Aug 22, 2024
a2e96fd
genesis
cyberhorsey Aug 23, 2024
7510e3c
Merge branch 'taiko' into preconfs
cyberhorsey Sep 10, 2024
649a1e5
Merge branch 'taiko' into preconfs
cyberhorsey Sep 13, 2024
dc64cdf
genesis
cyberhorsey Sep 13, 2024
34d90f5
Merge branch 'preconfs' of github.com:taikochain/taiko-geth into prec…
cyberhorsey Sep 13, 2024
66e3912
genesis
cyberhorsey Sep 13, 2024
4f349c3
merge taiko branch in
cyberhorsey Oct 8, 2024
47b52e4
return err
cyberhorsey Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
oops
  • Loading branch information
cyberhorsey committed Jul 7, 2024
commit 0be6e70a9afff90f313dac35d6b971a235869fb7
5 changes: 1 addition & 4 deletions internal/ethapi/preconf.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"github.com/davecgh/go-spew/spew"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common/hexutil"
"github.com/ethereum/go-ethereum/log"
)

type rpcRequest struct {
Expand Down Expand Up @@ -67,12 +66,10 @@ func forwardRawTransaction(forwardURL string, input hexutil.Bytes) (common.Hash,
return common.Hash{}, err
}

log.Info("forward response", "esp", string(body))

var rpcResp rpcResponse

// Unmarshal the response into the struct
if err := json.Unmarshal(body, &resp); err != nil {
if err := json.Unmarshal(body, &rpcResp); err != nil {
return common.Hash{}, err
}

Expand Down
Loading