Create a new file called index.js (or index.ts for TypeScript) and add the following code:
Copy
Ask AI
import BRX, { BRK } from 'brx-node';// Initialize the BRX client with your API keyconst brx = new BRX('your-api-key');async function main() { // We'll add more code here}main().catch(console.error);