delegate-framework
Version:
A TypeScript framework for building robust, production-ready blockchain workflows with comprehensive error handling, logging, and testing. Maintained by delegate.fun
15 lines • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FEE_WALLET_ADDRESS = exports.TOKEN_ACCOUNT_RENT = exports.DELEGATE_TYPES = void 0;
exports.DELEGATE_TYPES = {
DEPLOYER: 'deployer',
BURNER: 'burner',
ALLOCATOR: 'allocator',
DISTRIBUTOR: 'distributor',
HOPPER: 'hopper',
LIQUIDATOR: 'liquidator',
};
// Solana constants
exports.TOKEN_ACCOUNT_RENT = 2039280; // Rent for token account in lamports
exports.FEE_WALLET_ADDRESS = '11111111111111111111111111111111'; // Default fee wallet (can be overridden)
//# sourceMappingURL=constants.js.map