Skip to content

Commit

Permalink
Merge pull request #229 from KiraCore/feature/cook_hook
Browse files Browse the repository at this point in the history
feature/cook_hook -> release/v0.4.48
  • Loading branch information
MrLutik authored Mar 7, 2024
2 parents f8eb2ab + 2534e75 commit 68b249c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 5 deletions.
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

0 comments on commit 68b249c

Please sign in to comment.