Skip to main content

Documentation

Atlas Protocol

Protocol docs, SDK reference, and developer guides

Comprehensive documentation for the Atlas Protocol ecosystem — protocol architecture, storage providers, developer SDKs, network queries, and API reference.

atlas-client.ts
import { AtlasClient, WalletType } from '@atlasdepin/atlas.js';

const client = await AtlasClient.new({
  chainId: 'atlas-1',
  rpcEndpoint: 'https://rpc.atlasprotocol.cloud',
});

await client.connectWallet(WalletType.KEPLR);

const stats = await client.query.storageStats();
console.log(stats);