Skip to content

Commit

Permalink
Remove address labels from program labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ngundotra authored Oct 15, 2024
1 parent 5dd4d41 commit 39009f6
Showing 1 changed file with 2 additions and 27 deletions.
29 changes: 2 additions & 27 deletions app/utils/programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,8 @@ export enum PROGRAM_NAMES {

// ZK Compression
ZK_LIGHT_SYSTEM_PROGRAM = "Light System Program",
ZK_COMPRESSED_TOKEN_PROGRAM = "Compressed Token Program",
ZK_ACCOUNT_COMPRESSION_PROGRAM = "Account Compression Program",
ZK_SHARED_PUBLIC_STATE_TREE = "Shared Public State Tree",
ZK_SHARED_PUBLIC_NULLIFIER_QUEUE = "Shared Public Nullifier Queue",
ZK_SHARED_PUBLIC_ADDRESS_TREE = "Shared Public Address Tree",
ZK_SHARED_PUBLIC_ADDRESS_QUEUE = "Shared Public Address Queue",
ZK_COMPRESSED_TOKEN_ESCROW_OWNER_PDA = "Compressed Token Escrow Owner PDA",
ZK_COMPRESSED_TOKEN_PROGRAM = "ZK Compressed Token Program",
ZK_ACCOUNT_COMPRESSION_PROGRAM = "ZK Account Compression Program"
}

const ALL_CLUSTERS = [Cluster.Custom, Cluster.Devnet, Cluster.Testnet, Cluster.MainnetBeta];
Expand Down Expand Up @@ -457,26 +452,6 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_ACCOUNT_COMPRESSION_PROGRAM,
},
smt1NamzXdq4AMqS2fS2F1i5KTYPZRhoHgWx38d8WsT: {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_SHARED_PUBLIC_STATE_TREE,
},
nfq1NvQDJ2GEgnS8zt9prAe8rjjpAW1zFkrvZoBR148: {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_SHARED_PUBLIC_NULLIFIER_QUEUE,
},
amt1Ayt45jfbdw5YSo7iz6WZxUmnZsQTYXy82hVwyC2: {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_SHARED_PUBLIC_ADDRESS_TREE,
},
aq1S9z4reTSQAdgWHGD2zDaS39sjGrAxbR31vxJ2F4F: {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_SHARED_PUBLIC_ADDRESS_QUEUE,
},
GXtd2izAiMJPwMEjfgTRH3d7k9mjn4Jq3JrWFv9gySYy: {
deployments: [Cluster.MainnetBeta, Cluster.Devnet],
name: PROGRAM_NAMES.ZK_COMPRESSED_TOKEN_ESCROW_OWNER_PDA,
},
};

export const SPECIAL_IDS: { [key: string]: string } = {
Expand Down

0 comments on commit 39009f6

Please sign in to comment.