Skip to content

Commit

Permalink
Updating the canonical reference for the Memo program (#299)
Browse files Browse the repository at this point in the history
The legacy version of the Memo program
(`Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo`) is referred to as Memo
v1,
whereas the latest version of the Memo program
(`MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr`) is more canonically
known simply as `Memo`: https://spl.solana.com/memo

came up in the context of an upcoming wallet integration which noted
that the newer version of the Memo program isn't prototypically referred
to as Memo v2 but just Memo
  • Loading branch information
jnwng authored Sep 29, 2023
1 parent 3e5b2a7 commit 7bfe434
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/utils/programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export enum PROGRAM_NAMES {
ACCOUNT_COMPRESSION = 'State Compression Program',
FEATURE_PROPOSAL = 'Feature Proposal Program',
LENDING = 'Lending Program',
MEMO_1 = 'Memo Program v1',
MEMO = 'Memo Program',
MEMO_2 = 'Memo Program v2',
NAME = 'Name Service Program',
STAKE_POOL = 'Stake Pool Program',
SWAP = 'Swap Program',
Expand Down Expand Up @@ -277,11 +277,11 @@ export const PROGRAM_INFO_BY_ID: { [address: string]: ProgramInfo } = {
},
Memo1UhkJRfHyvLMcVucJwxXeuD728EqVDDwQDxFMNo: {
deployments: ALL_CLUSTERS,
name: PROGRAM_NAMES.MEMO,
name: PROGRAM_NAMES.MEMO_1,
},
MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr: {
deployments: ALL_CLUSTERS,
name: PROGRAM_NAMES.MEMO_2,
name: PROGRAM_NAMES.MEMO,
},
Port7uDYB3wk6GJAw4KT1WpTeMtSu9bTcChBHkX2LfR: {
deployments: [Cluster.MainnetBeta],
Expand Down

1 comment on commit 7bfe434

@vercel
Copy link

@vercel vercel bot commented on 7bfe434 Sep 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

explorer – ./

explorer-solana-labs.vercel.app
explorer.solana.com
explorer-git-master-solana-labs.vercel.app

Please sign in to comment.