2018-10-23 20:56:54 -07:00
|
|
|
// @flow
|
|
|
|
|
2018-10-26 13:19:47 -07:00
|
|
|
import {Account} from './account';
|
|
|
|
import {PublicKey} from './publickey';
|
|
|
|
import {Loader} from './loader';
|
|
|
|
import type {Connection} from './connection';
|
2018-10-23 20:56:54 -07:00
|
|
|
|
2020-08-25 09:05:33 -07:00
|
|
|
export const BPF_LOADER_PROGRAM_ID = new PublicKey(
|
|
|
|
'BPFLoader2111111111111111111111111111111111',
|
|
|
|
);
|
|
|
|
|
2018-10-23 20:56:54 -07:00
|
|
|
/**
|
|
|
|
* Factory class for transactions to interact with a program loader
|
|
|
|
*/
|
|
|
|
export class BpfLoader {
|
2019-10-22 15:16:12 -07:00
|
|
|
/**
|
|
|
|
* Minimum number of signatures required to load a program not including
|
|
|
|
* retries
|
|
|
|
*
|
|
|
|
* Can be used to calculate transaction fees
|
|
|
|
*/
|
|
|
|
static getMinNumSignatures(dataLength: number): number {
|
|
|
|
return Loader.getMinNumSignatures(dataLength);
|
|
|
|
}
|
|
|
|
|
2018-10-23 20:56:54 -07:00
|
|
|
/**
|
2018-10-25 10:41:18 -07:00
|
|
|
* Load a BPF program
|
2018-10-23 20:56:54 -07:00
|
|
|
*
|
|
|
|
* @param connection The connection to use
|
2020-04-15 21:26:19 +08:00
|
|
|
* @param payer Account that will pay program loading fees
|
|
|
|
* @param program Account to load the program into
|
2020-08-12 15:54:57 -07:00
|
|
|
* @param elf The entire ELF containing the BPF program
|
2020-08-25 09:05:33 -07:00
|
|
|
* @param loaderProgramId The program id of the BPF loader to use
|
2018-10-23 20:56:54 -07:00
|
|
|
*/
|
2019-05-08 09:33:04 -07:00
|
|
|
static load(
|
2018-10-23 20:56:54 -07:00
|
|
|
connection: Connection,
|
2019-05-08 09:33:04 -07:00
|
|
|
payer: Account,
|
2020-04-15 21:26:19 +08:00
|
|
|
program: Account,
|
2020-02-13 08:25:22 +08:00
|
|
|
elf: Buffer | Uint8Array | Array<number>,
|
2020-08-25 09:05:33 -07:00
|
|
|
loaderProgramId: PublicKey,
|
2020-05-20 11:57:51 -07:00
|
|
|
): Promise<void> {
|
2020-08-25 09:05:33 -07:00
|
|
|
return Loader.load(connection, payer, program, loaderProgramId, elf);
|
2018-10-23 20:56:54 -07:00
|
|
|
}
|
|
|
|
}
|