Skip to content

Commit 9c6b84e

Browse files
committed
feat: implement web app (WIP)
1 parent 8045a94 commit 9c6b84e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+14921
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# `One Bridge Canister`
2-
🌉 A fully on-chain cross-chain token bridge (Internet Computer, Ethereum, BNB Chain and other EVM-compatible chains).
1+
# 🌉 `One Bridge Canister`
2+
The project enables seamless cross-chain token transfers across the Internet Computer, Ethereum, BNB Chain, and other EVM-compatible networks through a fully on-chain bridge.
33

44
## Demo
55

dfx.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@
99
"optimize": "cycles",
1010
"gzip": true,
1111
"type": "rust"
12+
},
13+
"one_bridge_app": {
14+
"dependencies": [],
15+
"build": [
16+
"echo 'Disable dfx build for ic_panda_frontend because some issue, you should run npm build manually'"
17+
],
18+
"source": [
19+
"src/one_bridge_app/build"
20+
],
21+
"type": "assets",
22+
"workspace": "one_bridge_app"
1223
}
1324
},
1425
"defaults": {

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"engines": {
3+
"node": ">=22.0.0",
4+
"npm": ">=10.0.0"
5+
},
6+
"name": "one_bridge",
7+
"private": true,
8+
"scripts": {
9+
"build": "npm run build --workspaces --if-present",
10+
"prebuild": "npm run prebuild --workspaces --if-present",
11+
"pretest": "npm run prebuild --workspaces --if-present",
12+
"start": "npm start --workspaces --if-present",
13+
"test": "npm test --workspaces --if-present"
14+
},
15+
"packageManager": "[email protected]",
16+
"type": "module",
17+
"workspaces": [
18+
"src/one_bridge_app"
19+
]
20+
}

0 commit comments

Comments
 (0)