YOUR APP,
READY FOR THE WORLD
Onboard users in one click. Accept any digital asset. Ship 100% onchain.
A bird sitting on a nest of eggs.

Universal Accounts

Onboard users from any chain. Abstract multi-chain operations. Become retail-friendly.

Go chain-agnostic in under 30 lines of code

// Trade $10 worth of TSLAX on Solana
const transaction =
  await universalAccount.createBuyTransaction({
    token: {
      chainId: CHAIN_ID.SOLANA_MAINNET,
      address:
        'XsDoVfqeBukxuZHWhdvWHBhgEHjGNst4MLodqsJHzoB',
    },
    // Buy $10 of TSLAX
    amountInUSD: '10',
  });
Become Chain-Agnostic

Account Abstraction

Sponsor gas fees for your users, allow them to pay gas in stablecoins, or remove signature popups. In less than 15 minutes.

// Any transaction sent via ethersProvider is automatically gasless
const ethersProvider = new ethers.BrowserProvider(
  new AAWrapProvider(
    smartAccount,
    SendTransactionMode.Gasless
  ) as Eip1193Provider,
  'any'
);

Social Logins

Onboard users in seconds. No seed phrases, no downloading wallets. Log in using any OAuth method.

import { useConnect } from '@particle-network/authkit';
const { connect, connected } = useConnect();

// Login with Google
const handleLogin = async () => {
  if (!connected) {
    await connect({
      socialType: 'google',
    });
  }
};
It's free, forever.
Let's get you started
0
1
2
3
4
5