Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Bug Report
about: Report a bug in mx-bridge-eth-go node
about: Report a bug in klv-bridge-eth-go node
title: "[BUG]"
labels: bug
assignees: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Feature
about: Suggest a new feature for mx-bridge-eth-go
about: Suggest a new feature for klv-bridge-eth-go
title: "[FEAT]"
labels: enhancement
assignees: ''
Expand Down
5 changes: 1 addition & 4 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
name: Question
about: Ask a question about mx-bridge-eth-go
about: Ask a question about klv-bridge-eth-go
title: "[QUESTION]"
labels: ''
assignees: ''

---

<!--
Add here the question you want to ask. For a more immediate response, please use our validator's telegram page: https://t.me/MultiversXValidators
-->
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
GOOS=$(go env GOOS)
GOARCH=$(go env GOARCH)
GOPATH=$(go env GOPATH)
ARCHIVE="multiversx_eth_bridge""$APP_VER_SHORT""_""$GOOS""_""$GOARCH"".tgz"
ARCHIVE="kc_eth_bridge""$APP_VER_SHORT""_""$GOOS""_""$GOARCH"".tgz"
BUILD_DIR=${GITHUB_WORKSPACE}/build

echo "GOOS=${GOOS}" >> $GITHUB_ENV
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# KleverChain<->Eth Bridge
The relayer code implemented in go that uses the smart contracts and powers the bridge between KleverChain and Ethereum.
# KleverBlockchain<->Eth Bridge
The relayer code implemented in go that uses the smart contracts and powers the bridge between KleverBlockchain and Ethereum.

## Installation and running for the relayer

Expand All @@ -18,9 +18,9 @@ For the documentation and how to setup swagger. Go to [README.md](api/swagger/RE


## Contribution
Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes to KleverChain!
Thank you for considering to help out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes to KleverBlockchain!

If you'd like to contribute to KleverChain, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base. If you wish to submit more complex changes though, please check up with the core developers first on our [telegram channel]() to ensure those changes are in line with the general philosophy of the project and/or get some early feedback which can make both your efforts much lighter as well as our review and merge procedures quick and simple.
If you'd like to contribute to KleverBlockchain, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base. If you wish to submit more complex changes though, please check up with the core developers first on our [telegram channel]() to ensure those changes are in line with the general philosophy of the project and/or get some early feedback which can make both your efforts much lighter as well as our review and merge procedures quick and simple.

Please make sure your contributions adhere to our coding guidelines:

Expand All @@ -30,4 +30,4 @@ Please make sure your contributions adhere to our coding guidelines:
- Commit messages should be prefixed with the package(s) they modify.
- E.g. "core/indexer: fixed a typo"

Please see the [documentation](https://docs.klever.org/) for more details on the KleverChain project.
Please see the [documentation](https://docs.klever.org/) for more details on the KleverBlockchain project.
2 changes: 1 addition & 1 deletion api/swagger/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Swagger setup for the relayer node
The relayer node exposes some api routes in order to monitor the health of it:
- connection status between ethereum and multiversx clients
- connection status between ethereum and klever blockchain clients
- information for each half-bridge regarding the current status

In order to setup the swagger for interacting with those routes we will use `docker`
Expand Down
10 changes: 5 additions & 5 deletions api/swagger/swagger/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ info:
version: "1.0.0"
title: "Relayers API"
contact:
email: "contact@multiversx.com"
email: "contact@klever.io"
basePath: "/node"
host: localhost:8080
tags:
Expand All @@ -24,7 +24,7 @@ paths:
content:
application/json:
schema:
$ref: '#components/schemas/MultiversXReply'
$ref: '#components/schemas/KleverBlockchainReply'
/status?name={metric}:
get:
tags:
Expand All @@ -37,18 +37,18 @@ paths:
required: true
description: The wanted metric
type: string
enum: [MultiversXToEth, EthToMultiversX, multiversx-client, eth-client]
enum: [KleverBlockchainToEth, EthToKleverBlockchain, klever-client, eth-client]
responses:
'200':
description: Information of the requested metric
content:
application/json:
schema:
$ref: '#components/schemas/MultiversXReply'
$ref: '#components/schemas/KleverBlockchainReply'

components:
schemas:
MultiversXReply:
KleverBlockchainReply:
type: object
properties:
data:
Expand Down
Loading
Loading