Skip to main content

Core documentation

Connect your dapp to Core

Core is a non-custodial wallet for Avalanche, Ethereum, Bitcoin, Solana, and any EVM network. It speaks the standards you already use, so most integrations need no Core-specific code at all.

Detect Core
// Core announces itself over EIP-6963,
// alongside every other installed wallet.
window.addEventListener(
'eip6963:announceProvider',
({ detail }) => {
if (detail.info.rdns !== 'app.core.extension') return;

// detail.provider implements EIP-1193.
detail.provider.request({ method: 'eth_requestAccounts' });
},
);

window.dispatchEvent(new Event('eip6963:requestProvider'));

Supported networks

  • Avalanche C-Chain
  • Avalanche X-Chain
  • Avalanche P-Chain
  • Ethereum
  • Bitcoin
  • Solana
  • Polygon
  • Any EVM network