Skip to content

Commit 00ba562

Browse files
committed
Merge branch 'develop'
2 parents 5d0afcc + a697887 commit 00ba562

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

Cargo.lock

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

programs/bridge-program/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ anchor-lang = {version = "0.30.0", features = ["init-if-needed"]}
2020
solana-program = "1.18.15"
2121
spl-token = "4.0.0"
2222
anchor-spl = "0.30.0"
23+
solana-security-txt = "1.1.1"

programs/bridge-program/src/lib.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ mod states;
88
use errors::*;
99
mod utils;
1010
use utils::*;
11+
12+
#[cfg(not(feature = "no-entrypoint"))]
13+
solana_security_txt::security_txt! {
14+
name: "itheum-bridge-program",
15+
project_url: "https://www.itheum.io/",
16+
contacts: "will be added",
17+
policy: "will be added",
18+
source_code: "https://github.com/Itheum/core-sol-bridge-sc",
19+
preferred_languages: "en",
20+
auditors: "will be added"
21+
}
22+
1123
declare_id!("bitH2bkiBmbcio1riko9qLhkgKdAtY4BEx61ZQuvrfj");
1224

1325
#[program]

0 commit comments

Comments
 (0)