Skip to main content
To begin developing with the Rem infrastructure, you’ll need to configure your environment to interact with the Arc and Tempo chains.

Prerequisites

  • Node.js (v18 or higher)
  • A wallet with base tokens for gas
  • Rem SDK (@rem-money/sdk)

Installation

Install the Rem SDK via npm or yarn:
npm install @rem-money/sdk

Configuration

Initialize the Rem client with your preferred network configuration:
import { RemClient } from '@rem-money/sdk';

const rem = new RemClient({
  network: 'arc-mainnet',
  apiKey: process.env.REM_API_KEY
});

Verification

Once configured, you can verify your connection by fetching the current clearing house status:
const status = await rem.getSystemStatus();
console.log(`Clearing House Status: ${status.active ? 'Online' : 'Offline'}`);