Skip to content

Commit b22be41

Browse files
committed
Bump versions for delayed TWAP release
1 parent 59f5aa8 commit b22be41

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

Cargo.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

programs/amm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amm"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

programs/amm/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ security_txt! {
1010
contacts: "email:metaproph3t@protonmail.com",
1111
policy: "The market will decide whether we pay a bug bounty.",
1212
source_code: "https://github.com/metaDAOproject/futarchy",
13-
source_release: "v0.4",
13+
source_release: "delayed-twap-v0.4.1",
1414
auditors: "Neodyme",
1515
acknowledgements: "DCF = (CF1 / (1 + r)^1) + (CF2 / (1 + r)^2) + ... (CFn / (1 + r)^n)"
1616
}

programs/autocrat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "autocrat"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "SVM-based program for running futarchy"
55
edition = "2021"
66

programs/autocrat/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ security_txt! {
5656
contacts: "email:metaproph3t@protonmail.com",
5757
policy: "The market will decide whether we pay a bug bounty.",
5858
source_code: "https://github.com/metaDAOproject/futarchy",
59-
source_release: "v0.4",
59+
source_release: "delayed-twap-v0.4.1",
6060
auditors: "Neodyme",
6161
acknowledgements: "DCF = (CF1 / (1 + r)^1) + (CF2 / (1 + r)^2) + ... (CFn / (1 + r)^n)"
6262
}

programs/launchpad/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "launchpad"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Created with Anchor"
55
edition = "2021"
66

@@ -26,4 +26,5 @@ spl-memo = "=4.0.0"
2626
solana-program = "=1.17.14"
2727
spl-token = "=4.0.0"
2828
ahash = "=0.8.6"
29+
solana-security-txt = "1.1.1"
2930

programs/launchpad/src/lib.rs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ pub mod state;
88

99
use instructions::*;
1010

11+
#[cfg(not(feature = "no-entrypoint"))]
12+
use solana_security_txt::security_txt;
13+
14+
#[cfg(not(feature = "no-entrypoint"))]
15+
security_txt! {
16+
name: "launchpad",
17+
project_url: "https://metadao.fi",
18+
contacts: "email:metaproph3t@protonmail.com",
19+
policy: "The market will decide whether we pay a bug bounty.",
20+
source_code: "https://github.com/metaDAOproject/futarchy",
21+
source_release: "delayed-twap-v0.4.1",
22+
auditors: "Accretion",
23+
acknowledgements: "DCF = (CF1 / (1 + r)^1) + (CF2 / (1 + r)^2) + ... (CFn / (1 + r)^n)"
24+
}
25+
1126
declare_id!("AfJJJ5UqxhBKoE3grkKAZZsoXDE9kncbMKvqSHGsCNrE");
1227

1328
/// 10M tokens with 6 decimals

0 commit comments

Comments
 (0)