10 lines
426 B
TypeScript
10 lines
426 B
TypeScript
import { PublicKey } from "@solana/web3.js"
|
|
|
|
// Program ID passed with the cli --program-id flag when running the code generator. Do not edit, it will get overwritten.
|
|
export const PROGRAM_ID_CLI = new PublicKey(
|
|
"H7frfaL4ZjRW6NAyBvuGgsi9P2G1CgVgqFqzFSDS521f"
|
|
)
|
|
|
|
// This constant will not get overwritten on subsequent code generations and it's safe to modify it's value.
|
|
export const PROGRAM_ID: PublicKey = PROGRAM_ID_CLI
|