Skip to content

Commit 618d9d9

Browse files
committed
chore: update for release
1 parent 2feb794 commit 618d9d9

24 files changed

+20
-22
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ opt-level = 's'
1010

1111
[workspace.package]
1212
edition = "2024"
13-
version = "0.3.0"
13+
version = "0.3.1"
1414
repository = "https://github.com/ldclabs/ic-one-bridge"
1515
keywords = ["canister", "icp", "bridge", "erc20", "icrc"]
1616
categories = ["web-programming"]

canister_ids.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"__Candid_UI": {
33
"local": "uqqxf-5h777-77774-qaaaa-cai"
44
},
5+
"one_bridge_app": {
6+
"ic": "ejwdq-iyaaa-aaaap-an47q-cai"
7+
},
58
"one_bridge_canister": {
69
"ic": "dpjyw-raaaa-aaaar-qbxlq-cai",
710
"local": "dpjyw-raaaa-aaaar-qbxlq-cai"

dfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"one_bridge_app": {
1414
"dependencies": [],
1515
"build": [
16-
"echo 'Disable dfx build for ic_panda_frontend because some issue, you should run npm build manually'"
16+
"echo 'Disable dfx build for one_bridge_app because some issue, you should run npm build manually'"
1717
],
1818
"source": [
1919
"src/one_bridge_app/build"

src/declarations/one_bridge_canister/one_bridge_canister.did

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ type StateInfo = record {
4545
total_collected_fees : nat;
4646
min_threshold_to_bridge : nat;
4747
token_symbol : text;
48+
governance_canister : opt principal;
4849
icp_address : principal;
4950
total_bridge_count : nat64;
5051
evm_token_contracts : vec record { text; record { text; nat8; nat64 } };

src/declarations/one_bridge_canister/one_bridge_canister.did.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export interface StateInfo {
5656
'total_collected_fees' : bigint,
5757
'min_threshold_to_bridge' : bigint,
5858
'token_symbol' : string,
59+
'governance_canister' : [] | [Principal],
5960
'icp_address' : Principal,
6061
'total_bridge_count' : bigint,
6162
'evm_token_contracts' : Array<[string, [string, number, bigint]]>,

src/declarations/one_bridge_canister/one_bridge_canister.did.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const idlFactory = ({ IDL }) => {
5858
'total_collected_fees' : IDL.Nat,
5959
'min_threshold_to_bridge' : IDL.Nat,
6060
'token_symbol' : IDL.Text,
61+
'governance_canister' : IDL.Opt(IDL.Principal),
6162
'icp_address' : IDL.Principal,
6263
'total_bridge_count' : IDL.Nat64,
6364
'evm_token_contracts' : IDL.Vec(

src/one_bridge_app/src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
content="A Fully On-Chain Multi-Chain Token Bridge for the Internet Computer, Ethereum, BNB Chain and other EVM chains." />
1313
<meta property="og:type" content="website" />
1414
<meta property="og:url" content="https://1bridge.app" />
15-
<meta property="og:image" content="https://1bridge.app/_assets/images/1Bridge.webp" />
15+
<meta property="og:image" content="https://1bridge.app/_assets/images/one-bridge.webp.webp" />
1616
<meta name="twitter:card" content="summary_large_image" />
1717
<meta name="twitter:creator" content="@ICPandaDAO" />
1818

src/one_bridge_app/src/declarations/one_bridge_canister/one_bridge_canister.did

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ type StateInfo = record {
4545
total_collected_fees : nat;
4646
min_threshold_to_bridge : nat;
4747
token_symbol : text;
48+
governance_canister : opt principal;
4849
icp_address : principal;
4950
total_bridge_count : nat64;
5051
evm_token_contracts : vec record { text; record { text; nat8; nat64 } };

src/one_bridge_app/src/declarations/one_bridge_canister/one_bridge_canister.did.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export interface StateInfo {
5656
'total_collected_fees' : bigint,
5757
'min_threshold_to_bridge' : bigint,
5858
'token_symbol' : string,
59+
'governance_canister' : [] | [Principal],
5960
'icp_address' : Principal,
6061
'total_bridge_count' : bigint,
6162
'evm_token_contracts' : Array<[string, [string, number, bigint]]>,

0 commit comments

Comments
 (0)