Wallet Integration

Crosterix supports all major EVM wallets via standard connectors:

  • MetaMask

  • WalletConnect v2

  • Rainbow

  • Trust Wallet

  • Coinbase Wallet

Wallets are connected using the EIP-1193 provider standard, so all signing happens locally.

Key principle: Crosterix never accesses or transmits private keys, only requests wallet signatures through provider interfaces.

Example:

const provider = await crosterix.connectWallet("metamask");
const signer = provider.getSigner();
console.log("Connected Wallet:", await signer.getAddress());

Last updated