|
@@ -1,13 +1,13 @@
|
|
//! CPI API for interacting with the SPL shared memory
|
|
//! CPI API for interacting with the SPL shared memory
|
|
//! [program](https://github.com/solana-labs/solana-program-library/tree/master/shared-memory).
|
|
//! [program](https://github.com/solana-labs/solana-program-library/tree/master/shared-memory).
|
|
|
|
|
|
-use anchor_lang::ToAccountInfo;
|
|
|
|
use anchor_lang::{context::CpiContext, Accounts};
|
|
use anchor_lang::{context::CpiContext, Accounts};
|
|
use solana_program::account_info::AccountInfo;
|
|
use solana_program::account_info::AccountInfo;
|
|
use solana_program::declare_id;
|
|
use solana_program::declare_id;
|
|
use solana_program::entrypoint::ProgramResult;
|
|
use solana_program::entrypoint::ProgramResult;
|
|
use solana_program::instruction::{AccountMeta, Instruction};
|
|
use solana_program::instruction::{AccountMeta, Instruction};
|
|
use solana_program::program;
|
|
use solana_program::program;
|
|
|
|
+use solana_program::pubkey::Pubkey;
|
|
|
|
|
|
// TODO: update this once the final shared memory program gets released.
|
|
// TODO: update this once the final shared memory program gets released.
|
|
// shmem4EWT2sPdVGvTZCzXXRAURL9G5vpPxNwSeKhHUL.
|
|
// shmem4EWT2sPdVGvTZCzXXRAURL9G5vpPxNwSeKhHUL.
|