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

hypersdk version to v0.9.7-arcadia.17 #31

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
83f464a
hypersdk version to v0.9.7-arcadia.17
bianyuanop Jan 23, 2025
4953f12
val server derive port fix
bianyuanop Jan 23, 2025
821b17b
hypersdk version to v0.9.7-arcadia.18
bianyuanop Jan 23, 2025
268e460
hypersdk to v0.9.7-arcadia.19, update on abnormal reconnection control
bianyuanop Jan 24, 2025
9bd88ac
detailed logging for chunk messages
bianyuanop Jan 24, 2025
efd4418
hypersdk to v0.9.7-arcadia.21
bianyuanop Feb 6, 2025
ce9be10
Merge pull request #32 from AnomalyFi/auction
bianyuanop Feb 6, 2025
7f670ff
retrigger e2e
bianyuanop Feb 6, 2025
9b2c92f
da actions
bianyuanop Feb 10, 2025
ec8eda5
debugging unit tests
bianyuanop Feb 11, 2025
d187aff
fix unit tests
bianyuanop Feb 11, 2025
6d45730
da cert permissioned
bianyuanop Feb 11, 2025
da348cb
hypersdk version to v0.9.7-arcadia.22
bianyuanop Feb 11, 2025
ab14265
lint fix
bianyuanop Feb 11, 2025
276a77a
da type inside cert info
bianyuanop Feb 11, 2025
6e1e800
query error udpate
bianyuanop Feb 13, 2025
cc16413
rpc method update
bianyuanop Feb 13, 2025
a1ccfbe
highesttobnonce rpc client
bianyuanop Feb 13, 2025
3ad5c83
set settled tobnonce
bianyuanop Feb 13, 2025
f9b3cda
set settled tobnonce action
bianyuanop Feb 13, 2025
7149589
rpc fixes & DA type symbol
bianyuanop Feb 19, 2025
6040a01
UX update
bianyuanop Feb 19, 2025
a44d3dc
cert bytes unmarshal fix
bianyuanop Feb 20, 2025
1c161b5
cert allow override for testing & noop for tobnonce that is lower tha…
bianyuanop Feb 24, 2025
9fa22be
lint fix
bianyuanop Feb 28, 2025
4091467
rollup cmd & prevent e2e tests run twice when in pr
bianyuanop Feb 28, 2025
7191e88
Merge pull request #33 from AnomalyFi/da-action
bianyuanop Feb 28, 2025
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
5 changes: 3 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,10 @@ func (c *Config) Loaded() bool { return c.loaded }
func (c *Config) GetETHL1RPC() string { return c.ETHRPCAddr }
func (c *Config) GetETHL1WS() string { return c.ETHWSAddr }
func (c *Config) GetArcadiaURL() string { return c.ArcadiaURL }
func (*Config) GetValServerConfig() *rpc.JSONRPCValServerConfig {
func (c *Config) GetValServerConfig() *rpc.JSONRPCValServerConfig {
return &rpc.JSONRPCValServerConfig{
DerivePort: true,
DerivePort: c.ValRPCConfig.DerivePort,
Port: c.ValRPCConfig.Port,
}
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/AnomalyFi/nodekit-seq
go 1.21.12

require (
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.16
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.20
github.com/ava-labs/avalanche-network-runner v1.7.4-rc.0
github.com/ava-labs/avalanchego v1.11.10
github.com/ethereum/go-ethereum v1.13.14
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7
filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek=
filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns=
github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.16 h1:bwkpHWSs/fzelJp97iU+npoS5KAGcz48EloGSD23Jdc=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.16/go.mod h1:0Vj2PdwSFN7pat4Sno39IfmtOiv/gO9mxZXyRKnoKtI=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.20 h1:Q55syZ/aAdBC3zQXhXdYV+0QvGafdaOYNC74MZfxxiY=
github.com/AnomalyFi/hypersdk v0.9.7-arcadia.20/go.mod h1:0Vj2PdwSFN7pat4Sno39IfmtOiv/gO9mxZXyRKnoKtI=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8=
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ cat <<EOF > "${TMPDIR}"/seqvm.config
},
"valRPCConfig": {
"derivePort": true,
"port": 0
"port": 9652
}
}
EOF
Expand Down
Loading