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

release/v0.4.48 -> master #230

Merged
merged 4 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/workflows/merge_hook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
"licenses": "CC BY-NC-SA 4.0",
"title": "interx",
"description": "INTERX is KIRA’s Content Availability Layer. It ensures rapid, scalable queries and access to on-chain (SEKAI) and off-chain (L2) RollApp data without reliance on third-party RPC service providers such as Infura (Ethereum) and DA networks such as Celestia (Cosmos). INTERX streamlines the creation and maintenance of front-end and RollApp, eliminating the complexities associated with light clients and providing out-of-the-box support for sequencing, storage, fraud-proof generation, replication, proxy, and middleware layer load-balancing. "
}
}
EOF
}
}
EOF
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ build:
./scripts/build.sh

build-static:
./scripts/proto-gen.sh
./scripts/sbuild.sh

start:
go run main.go

Expand Down
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ Features:

* Add webhook for sekin repo
* Bump sekai and interx version
* Fix pub_p2p_list endpoint
* Del bin

2 changes: 1 addition & 1 deletion config/constants.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package config

const (
InterxVersion = "v0.4.47"
InterxVersion = "v0.4.48"
SekaiVersion = "v0.3.42"
CosmosVersion = "v0.47.6"

Expand Down
Binary file removed interx
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/sbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ set -x
go mod tidy
CGO_ENABLED=0 go build -a -tags netgo -installsuffix cgo -ldflags "-X google.golang.org/protobuf/reflect/protoregistry.conflictPolicy=ignore -extldflags '-static'" -o "/interxd" .
go mod verify
echoInfo "INFO: Sucessfully intalled INTERX $(interxd version)"
echoInfo "INFO: Sucessfully intalled INTERX $(/interxd version)"
2 changes: 2 additions & 0 deletions tasks/node_discover.go
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,7 @@ func NodeDiscover(rpcAddr string, isLog bool) {
peers := peersFromIP[ipAddr]
for _, peer := range peers {
nodeInfo.Peers = append(nodeInfo.Peers, string(peer.NodeInfo.ID()))
nodeInfo.PeersNumber = int64(len(nodeInfo.Peers))

ip, _ := getHostname(peer.NodeInfo.ListenAddr)
if isPrivateIP(ip) {
Expand All @@ -537,6 +538,7 @@ func NodeDiscover(rpcAddr string, isLog bool) {
privNodeInfo.Port, _ = getPort(peer.NodeInfo.ListenAddr)
privNodeInfo.Peers = []string{}
privNodeInfo.Peers = append(privNodeInfo.Peers, nodeInfo.ID)
privNodeInfo.PeersNumber = int64(len(privNodeInfo.Peers))
privNodeInfo.Alive = true
privNodeInfo.Synced = nodeInfo.Synced
privNodeInfo.BlockHeightAtSync = nodeInfo.BlockHeightAtSync
Expand Down
Loading