-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Kirill <[email protected]>
- Loading branch information
Showing
5 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Location | ||
metadata: | ||
name: rainbow-bridge-public | ||
description: Public Rainbow Bridge repository | ||
spec: | ||
targets: | ||
- ./contracts/eth/nearbridge/.catalog-info.yaml | ||
- ./contracts/eth/nearprover/.catalog-info.yaml | ||
- ./contracts/near/eth-client/.catalog-info.yaml | ||
- ./contracts/near/eth-prover/.catalog-info.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: ed25519-contract | ||
description: |- | ||
Verifies ED255519 signature in Ethereum. | ||
It is expensive. Only used by watchdog in case an invalid block is posted. | ||
tags: | ||
- contract | ||
- ethereum | ||
links: [] | ||
annotations: | ||
aurora.dev/security-tier: "1" | ||
backstage.io/source-location: url:https://github.com/aurora-is-near/rainbow-bridge/blob/master/contracts/eth/nearbridge/contracts/Ed25519.sol | ||
spec: | ||
owner: bridge-team | ||
type: contract | ||
lifecycle: production | ||
system: bridge-protocol | ||
deployedAt: | ||
- contract:ethereum/mainnet/0x88f975d5a1153ea92af66e7c4292576a329c04b6 | ||
interactsWith: [] | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: near-light-client-on-ethereum | ||
title: "NEAR Light Client on Ethereum" | ||
description: |- | ||
Implementation of NEAR Light Client in Ethereum. API: add_block To add blocks from NEAR into this contract. And blockHashes(index) return the block at this height. Only one block per epoch (12 hours) is required. | ||
tags: | ||
- contract | ||
- ethereum | ||
links: [] | ||
annotations: | ||
aurora.dev/security-tier: "1" | ||
backstage.io/source-location: url:https://github.com/aurora-is-near/rainbow-bridge/blob/master/contracts/eth/nearbridge/contracts/NearBridge.sol | ||
spec: | ||
owner: bridge-team | ||
type: contract | ||
lifecycle: production | ||
system: bridge-protocol | ||
deployedAt: | ||
- contract:ethereum/mainnet/0x3be7df8db39996a837041bb8ee0dadf60f767038 | ||
interactsWith: | ||
- relayer:ethereum/mainnet/0x015e634c7c1311a9034220c28d3d12b7f710a3b1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: prover-on-ethereum | ||
title: "Prover on Ethereum" | ||
description: |- | ||
Takes proof of a Receipt from NEAR blockchain and checks if it's valid and included on-chain. | ||
tags: | ||
- contract | ||
- ethereum | ||
links: [] | ||
annotations: | ||
aurora.dev/security-tier: "1" | ||
spec: | ||
owner: bridge-team | ||
type: contract | ||
lifecycle: production | ||
system: bridge-protocol | ||
deployedAt: | ||
- contract:ethereum/mainnet/0x051ad3f020274910065dcb421629cd2e6e5b46c4 | ||
interactsWith: | ||
- contract:ethereum/mainnet/0x3be7df8db39996a837041bb8ee0dadf60f767038 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: ethereum-light-client-on-near | ||
description: Ethereum Light Client on NEAR | ||
tags: | ||
- contract | ||
- near | ||
links: [] | ||
annotations: | ||
aurora.dev/security-tier: "1" | ||
spec: | ||
owner: bridge-team | ||
type: contract | ||
lifecycle: production | ||
system: bridge-protocol | ||
deployedAt: | ||
- contract:near/mainnet/client.bridge.near | ||
interactsWith: | ||
- relayer:near/mainnet/relayer.bridge.near |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: prover-on-near | ||
description: Prover on NEAR | ||
tags: | ||
- contract | ||
- near | ||
links: [] | ||
annotations: | ||
aurora.dev/security-tier: "1" | ||
spec: | ||
owner: bridge-team | ||
type: contract | ||
lifecycle: production | ||
system: bridge-protocol | ||
deployedAt: | ||
- contract:near/mainnet/prover.bridge.near | ||
interactsWith: | ||
- contract:near/mainnet/client.bridge.near |