@blockassetlabs/blaze
Version:
Blockasset Blaze
19 lines • 954 B
TypeScript
import type { AnchorTypes } from '@saberhq/anchor-contrib';
import { PublicKey } from '@solana/web3.js';
import * as BLAZE_TYPES from '../../idl/blockasset_blaze';
export declare const BLAZE_ADDRESS: PublicKey;
export declare const BLAZE_PREFIX = "blaze";
export declare const IDENTIFIER_PREFIX = "identifier";
export declare const ENTRANTS_PREFIX = "entrants";
export declare const BLAZE_PROJECT_ID_OFFSET: number;
export declare type BLAZE_PROGRAM = BLAZE_TYPES.BlockassetBlaze;
export declare const BLAZE_IDL: BLAZE_TYPES.BlockassetBlaze;
export declare type BlazeTypes = AnchorTypes<BLAZE_PROGRAM>;
export declare type Accounts = BlazeTypes['Accounts'];
export declare type BlazeData = Accounts['blaze'];
export declare type IdentifierData = Accounts['identifier'];
export declare type EntrantsDataRaw = Accounts['entrants'];
export declare type EntrantsData = EntrantsDataRaw & {
entrants: PublicKey[];
};
//# sourceMappingURL=constants.d.ts.map