Skip to content
Open
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
4 changes: 2 additions & 2 deletions clients/js/src/generated/programs/loaderV4.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import {
} from '../instructions';

export const LOADER_V4_PROGRAM_ADDRESS =
'CoreBPFLoaderV41111111111111111111111111111' as Address<'CoreBPFLoaderV41111111111111111111111111111'>;
'LoaderV411111111111111111111111111111111111' as Address<'LoaderV411111111111111111111111111111111111'>;

export enum LoaderV4Instruction {
Write,
Expand Down Expand Up @@ -61,7 +61,7 @@ export function identifyLoaderV4Instruction(
}

export type ParsedLoaderV4Instruction<
TProgram extends string = 'CoreBPFLoaderV41111111111111111111111111111',
TProgram extends string = 'LoaderV411111111111111111111111111111111111',
> =
| ({
instructionType: LoaderV4Instruction.Write;
Expand Down
2 changes: 1 addition & 1 deletion clients/rust/src/generated/programs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
use solana_program::{pubkey, pubkey::Pubkey};

/// `loader_v4` program ID.
pub const LOADER_V4_ID: Pubkey = pubkey!("CoreBPFLoaderV41111111111111111111111111111");
pub const LOADER_V4_ID: Pubkey = pubkey!("LoaderV411111111111111111111111111111111111");
2 changes: 1 addition & 1 deletion program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license-file = "../LICENSE"
publish = false

[package.metadata.solana]
program-id = "CoreBPFLoaderV41111111111111111111111111111"
program-id = "LoaderV411111111111111111111111111111111111"
program-dependencies = []

[lib]
Expand Down
2 changes: 1 addition & 1 deletion program/idl.json
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
],
"metadata": {
"origin": "shank",
"address": "CoreBPFLoaderV41111111111111111111111111111",
"address": "LoaderV411111111111111111111111111111111111",
"binaryVersion": "0.4.2",
"libVersion": "^0.4.2"
}
Expand Down
5 changes: 1 addition & 4 deletions program/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,4 @@ pub mod instruction;
pub mod processor;
pub mod state;

// [CORE BPF]: Unfortunately, the runtime still depends pretty heavily on this
// program ID hard-coded, so we can't test with it just yet.
// solana_program::declare_id!("LoaderV411111111111111111111111111111111111");
solana_program::declare_id!("CoreBPFLoaderV41111111111111111111111111111");
solana_program::declare_id!("LoaderV411111111111111111111111111111111111");