Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/assets/CARS/CARS.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "Rip Cars",
"symbol": "CARS",
"description": "The world’s first Hot Wheels gacha platform",
"image": "https://raw.githubusercontent.com/metaDAOproject/futarchy/refs/heads/develop/scripts/assets/CARS/CARS.png"
}
Binary file added scripts/assets/CARS/CARS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions scripts/v0.7/rip-cars/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import { PublicKey } from "@solana/web3.js";

// Token Details
export const TOKEN_SEED = "TVOzl2TKhXCRVn9U";
export const TOKEN_ADDRESS = new PublicKey(
"CARSsxWPkpQWvfyRBwfGMGvysJBHdHGfE46X5MNgmeta",

Check warning on line 6 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + "CARSsxWPkpQWvfyRBwfGMGvysJBHdHGfE46X5MNgmeta",
);

export const LAUNCH_AUTHORITY = new PublicKey(
"LncRyJVBbek7EFhnd6QNZRTLT9mReKWPGCpsfu5bqJS",

Check warning on line 10 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + "LncRyJVBbek7EFhnd6QNZRTLT9mReKWPGCpsfu5bqJS",
);

// Team Config Details
export const TEAM_ADDRESS = new PublicKey(
"CnTDWPAEsN5RAgNapTJerDAc45TWavRQ1m3ACMpukYPd",

Check warning on line 15 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + "CnTDWPAEsN5RAgNapTJerDAc45TWavRQ1m3ACMpukYPd",
); // Rip Cars team squads address

// export const LAUNCH_ADDRESS = new PublicKey("");

export const SPENDING_MEMBERS = [
new PublicKey("CqK6aBSSycQU3igvptxvhf9YNC1v5EodCuCxuVLPPohh"),

Check warning on line 21 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + new PublicKey("CqK6aBSSycQU3igvptxvhf9YNC1v5EodCuCxuVLPPohh"),
new PublicKey("4Huto5Lv8z59tW4EezrYNSvBJhCc9U5bgmR5yH5csFDc"),

Check warning on line 22 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + new PublicKey("4Huto5Lv8z59tW4EezrYNSvBJhCc9U5bgmR5yH5csFDc"),
];
// Even without a performance package, defaults need to be set
export const PERFORMANCE_PACKAGE_GRANTEE = new PublicKey(
"7iiE6ncVh5uJuBKw7JcwCjhUT8o2VT2JMeQZ8Tsi5Ckf",

Check warning on line 26 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + "7iiE6ncVh5uJuBKw7JcwCjhUT8o2VT2JMeQZ8Tsi5Ckf",
);

// Amount Details
export const MIN_GOAL = 250_000; // 250k USDC
export const SPENDING_LIMIT = 40_000; // 40k USDC
export const PERFORMANCE_PACKAGE_TOKEN_AMOUNT = 12_900_000; // 12.9M CARS
export const TOTAL_ALLOCATION = 250_000; // 250k USDC
export const PERFORMANCE_PACKAGE_UNLOCK_MONTHS = 18; // 18 months
export const ADDITIONAL_CARVEOUT = 0; // 0 CARS
export const ADDITIONAL_CARVEOUT_RECIPIENT = new PublicKey(
"11111111111111111111111111111111",

Check warning on line 37 in scripts/v0.7/rip-cars/constants.ts

View workflow job for this annotation

GitHub Actions / repository-guard

Hardcoded Solana address literal: + "11111111111111111111111111111111",
); // Unused
export const LAUNCH_DAYS = 4;

export const TOKEN_NAME = "Rip Cars";
export const TOKEN_SYMBOL = "CARS";
export const TOKEN_URI =
"https://raw.githubusercontent.com/metaDAOproject/programs/refs/heads/develop/scripts/assets/CARS/CARS.json";
Loading