forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.ts
22 lines (18 loc) · 889 Bytes
/
common.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { Signer } from '@solana/web3.js';
import { PublicKey, Keypair, Connection } from '@solana/web3.js';
import { TOKEN_PROGRAM_ID } from '../src';
export async function newAccountWithLamports(connection: Connection, lamports = 1000000): Promise<Signer> {
const account = Keypair.generate();
const signature = await connection.requestAirdrop(account.publicKey, lamports);
await connection.confirmTransaction(signature);
return account;
}
export async function getConnection(): Promise<Connection> {
const url = 'http://127.0.0.1:8899';
const connection = new Connection(url, 'confirmed');
return connection;
}
export const TEST_PROGRAM_ID = process.env.TEST_PROGRAM_ID
? new PublicKey(process.env.TEST_PROGRAM_ID)
: TOKEN_PROGRAM_ID;
export const TRANSFER_HOOK_TEST_PROGRAM_ID = new PublicKey('TokenHookExampLe8smaVNrxTBezWTRbEwxwb1Zykrb');