@base-org/account
Version:
Base Account SDK
15 lines • 994 B
TypeScript
/**
* Browser entry point for Base Account SDK
* This file exposes the account interface to the global window object
*/
import { base } from './interface/payment/base.js';
import { CHAIN_IDS, TOKENS } from './interface/payment/constants.js';
import { getPaymentStatus } from './interface/payment/getPaymentStatus.js';
import { pay } from './interface/payment/pay.js';
import type { InfoRequest, PayerInfo, PaymentOptions, PaymentResult, PaymentStatus, PaymentStatusOptions } from './interface/payment/types.js';
export type { AppMetadata, Preference, ProviderInterface, } from './core/provider/interface.js';
export { createBaseAccountSDK } from './interface/builder/core/createBaseAccountSDK.js';
export { getCryptoKeyAccount, removeCryptoKey } from './kms/crypto-key/index.js';
export { base, CHAIN_IDS, getPaymentStatus, pay, TOKENS };
export type { InfoRequest, PayerInfo, PaymentOptions, PaymentResult, PaymentStatus, PaymentStatusOptions, };
//# sourceMappingURL=browser-entry.d.ts.map