Links

Web

This documentation for the Particle Network Javascript SDK will get you started in minutes!
Particle Network SDK allows you to easily integrate your app with the EVM and Solana blockchain, whether you already have a dApp integrated with web3 or are starting from scratch. Particle Network provides a smooth and delightful experience for both you and your app's users.

Demo

Getting Started

Step 1: Include Particle Network SDK Script

Download Particle Network SDK to your project via Yarn
yarn add @particle-network/auth
//if you need support evm-chains
yarn add @particle-network/provider
//if you need support solana chain
yarn add @particle-network/solana-wallet
browser
<script src="https://static.particle.network/sdks/web/auth/0.12.2/auth.min.js"></script>
<!-- Optional: Add EVM Chains suport -->
<script src="https://static.particle.network/sdks/web/provider/0.12.2/provider.min.js"></script>
<!-- Optional: Add Solana Chain suport -->
<script src="https://static.particle.network/sdks/web/solana-wallet/0.12.2/solana-wallet.min.js"></script>

Step 2: Setup Developer API Key

Before you can add Auth Service to your app, you need to create a Particle project to connect to your app. Visit Particle Dashboard to learn more about Particle projects and apps.
import { ParticleNetwork, WalletEntryPosition } from "@particle-network/auth";
import { ParticleProvider } from "@particle-network/provider";
import { SolanaWallet } from "@particle-network/solana-wallet";
import Web3 from "web3";
const particle = new ParticleNetwork({
projectId: "xx",
clientKey: "xx",
appId: "xx",
chainName: "Ethereum", //optional: current chain name, default Ethereum.
chainId: 1, //optional: current chain id, default 1.
wallet: { //optional: by default, the wallet entry is displayed in the bottom right corner of the webpage.
displayWalletEntry: true, //show wallet entry when connect particle.
defaultWalletEntryPosition: WalletEntryPosition.BR, //wallet entry position
uiMode: "dark", //optional: light or dark, if not set, the default is the same as web auth.
supportChains: [{ id: 1, name: "Ethereum"}, { id: 5, name: "Ethereum"}], // optional: web wallet support chains.
customStyle: {}, //optional: custom wallet style
}
});
const particleProvider = new ParticleProvider(particle.auth);
//if you need support solana chain
const solanaWallet = new SolanaWallet(particle.auth);
//if you use web3.js
window.web3 = new Web3(particleProvider);
window.web3.currentProvider.isParticleNetwork // => true
//if you use ethers.js
import { ethers } from "ethers";
const ethersProvider = new ethers.providers.Web3Provider(particleProvider, "any");
const ethersSigner = ethersProvider.getSigner();
Your first Particle Network dApp! 🎉 You can implement web3 functionalities just like how you would normally with MetaMask.
Have a problem? you can refer to this FAQ.

Web3 Integration

Connect Wallet

In order for web3 to work and grab the end-users' Ethereum wallet addresses, the users have to login first (similar to unlocking account in MetaMask). You can simply trigger the login for users with the web3 function call below.
import Web3 from "web3";
// Request user login if needed, returns current user info
const userInfo = await particle.auth.login();
// optional: custom login params.
// support auth types: email,phone,facebook,google,apple,discord,github,twitch,microsoft,linkedin
const userInfo = particle.auth.login({
// when set social login auth type, will open thirdparty auth page directly.
preferredAuthType?: AuthType,
// when set email/phone account and preferredAuthType is email or phone,
// Particle Auth will enter directly input verification code page.
// when set JWT value and preferredAuthType is jwt, Particle Auth will auto login.
account?: string,
supportAuthTypes?: string, //need support social login types, split with ','. default value 'all'.
loginFormMode?: boolean, // login form mode will hide others ui except login form. only support supportAuthTypes equals email or phone.
hideLoading?: boolean, //hide particle loading when use jwt authorization.
socialLoginPrompt?: string, //social login prompt. none | consent | select_account
})
Login with Phone and input verification code directly.
const userInfo = await particle.auth.login({
preferredAuthType: 'phone',
account: '+14155552671', //phone number must use E.164
});
Login with Social Account.
const userInfo = await particle.auth.login({
preferredAuthType: 'google', //support facebook,google,twitter,apple,discord,github,twitch,microsoft,linkedin etc.
})
Login with JWT
const userInfo = particle.auth.login({
preferredAuthType: 'jwt',
account: 'JWT Value',
hideLoading: true, //optional: hide particle loading when login.
})
User login modal can also be triggered through web3 accounts.
import Web3 from "web3";
// Async functions that triggers login modal, if user not already logged in
web3.eth.getAccounts((error, accounts) => {
if (error) throw error;
console.log(accounts); // ['0x...']
});
A modal will open to ask users to sign up for an account or login with their mobile phone number/email or social account.

Get Wallet Address

EVM Chains

web3
ethers
particle
import Web3 from 'web3';
import { ParticleProvider } from "@particle-network/provider";
const particleProvider = new ParticleProvider(particle.auth);
//init web3 with paricle provider
const web3 = new Web3(particleProvider);
const accounts = await web3.eth.getAccounts();
import { ethers } from "ethers";
import { ParticleProvider } from "@particle-network/provider";
const particleProvider = new ParticleProvider(particle.auth);
const ethersProvider = new ethers.providers.Web3Provider(providerProvider, "any");
const accounts = await ethersProvider.listAccounts();
import { ParticleProvider } from "@particle-network/provider";
//when new ParticleNetwork, chainId and chainName use EVM chain config.
const account = await particle.evm.getAddress()
//or get accounts with particleProvider
const particleProvider = new ParticleProvider(particle.auth);
const accounts = await particleProvider.request({ method: 'eth_accounts'});

Solana Chain

import { SolanaWallet } from "@particle-network/solana-wallet";
//when new ParticleNetwork, chainId and chainName use Solana chain config.
const account = await particle.solana.getAddress()
//or get accounts with solanaWallet
const solanaWallet = new SolanaWallet(pn.auth);
const publicKey = solanaWallet.publicKey;
const account = publicKey?.toBase58();

Send Transaction

If you have replaced your web3 provider with Particle Network provider, nothing needs to be changed for web3 send Ether transactions to continue working.
The Particle Network X modal will pop open and ask users to confirm their transaction once this web3 function is called on the client-side.
const txnParams = {
from: "0xXX",
to: toAddress,
value: sendValue
};
//for evm transaction: use web3
window.web3.eth.sendTransaction(txnParams, (error, txnHash) => {
if (error) throw error;
console.log(txnHash);
});
//for evm transaction: use particle
const txnHash = await particle.evm.sendTransaction(txnParams);
//for solana transaction: use particle
const result = await particle.solana.signAndSendTransaction(transaction)
//for solana transaction: use particle SolanaWallet
solanWallet.signAndSendTransaction(transaction)

User Signing

This is a relatively advanced use case. If you use the signed typed data JSON RPC endpoint, Particle Network will support this as well.

EVM Chains

Personal Sign
Sign Typed Data v1
Sign Typed Data v3
Sign Typed Data v4
import { ParticleProvider } from "@particle-network/provider";
import Web3 from "web3";
window.web3 = new Web3(new ParticleProvider(particle.auth));
const msg = "Hello Particle Network!";
const accounts = await window.web3.eth.getAccounts();
//use web3
window.web3.eth.personal
.sign(msg, accounts[0])
.then((result) => {
console.log("personal_sign", result);
})
.catch((error) => {
console.error("personal_sign", error);
});
// or use particle
const result = await particle.evm.personalSign(`0x${Buffer.from(msg).toString('hex')}`);
import { ParticleProvider } from "@particle-network/provider";
import Web3 from "web3";
window.web3 = new Web3(new ParticleProvider(particle.auth));
const accounts = await window.web3.eth.getAccounts();
const from = accounts[0];
const msg = [
{
type: "string",
name: "fullName",
value: "John Doe",
},
{
type: "uint32",
name: "userId",
value: "1234",
},
];
const params = [msg, from];
const method = "eth_signTypedData_v1";
//use web3
window.web3.currentProvider
.request({
method,
params,
from,
})
.then((result) => {
console.log("signTypedData result", result);
})
.catch((err) => {
console.log("signTypedData error", err);
});
//use particle
const result = await particle.evm.signTypedData({ data: JSON.parse(msg), version: 'V1' });
import { ParticleProvider } from "@particle-network/provider";
import Web3 from "web3";
window.web3 = new Web3(new ParticleProvider(particle.auth));
const accounts = await window.web3.eth.getAccounts();
const from = accounts[0];
const payload = {
types: {
EIP712Domain: [
{ name: "name", type: "string" },
{ name: "version", type: "string" },
{ name: "verifyingContract", type: "address" },
],
Person: [
{ name: "name", type: "string" },
{ name: "wallet", type: "address" },
],
Mail: [
{ name: "from", type: "Person" },
{ name: "to", type: "Person" },
{ name: "contents", type: "string" },
],
},
primaryType: "Mail",
domain: {
name: "Ether Mail",
version: "1",
verifyingContract: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
},
message: {
from: {
name: "Cow",
wallet: "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826",
},
to: {
name: "Bob",
wallet: "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB",
},
contents: "Hello, Bob!",
},
};
const params = [from, payload];
const method = "eth_signTypedData_v3";
//use web3
window.web3.currentProvider
.request({
method,
params,
from,
})
.then((result) => {
console.log("signTypedData_v3 result", result);
})
.catch((err) => {
console.log("signTypedData_v3 error", err);
});
//use particle
const result = await particle.evm.signTypedData({ data: JSON.parse(payload), version: 'V3' });
import { ParticleProvider } from "@particle-network/provider";
import Web3 from "web3";
window.web3 = new Web3(new ParticleProvider(particle.auth));
const accounts = await window.web3.eth.getAccounts();
const from = accounts[0];
const payload = {
domain: {
name: "Ether Mail",
verifyingContract: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
version: "1",
},
message: {
contents: "Hello, Bob!",
from: {
name: "Cow",
wallets: [
"0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826",
"0xDeaDbeefdEAdbeefdEadbEEFdeadbeEFdEaDbeeF",
],
},
to: [
{
name: "Bob",
wallets: [
"0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB",
"0xB0BdaBea57B0BDABeA57b0bdABEA57b0BDabEa57",
"0xB0B0b0b0b0b0B000000000000000000000000000",
],
},
],
},
primaryType: "Mail",
types: {
EIP712Domain: [
{ name: "name", type: "string" },
{ name: "version", type: "string" },
{ name: "verifyingContract", type: "address" },
],
Group: [
{ name: "name", type: "string" },
{ name: "members", type: "Person[]" },
],
Mail: [
{ name: "from", type: "Person" },
{ name: "to", type: "Person[]" },
{ name: "contents", type: "string" },
],
Person: [
{ name: "name", type: "string" },
{ name: "wallets", type: "address[]" },
],
},
};
const params = [from, payload];
const method = "eth_signTypedData_v4";
//use web3
window.web3.currentProvider
.request({
method,
params,
from,
})
.then((result) => {
console.log("signTypedData_v4 result", result);
})
.catch((err) => {
console.log("signTypedData_v4 error", err);
});
//use particle
const result = await particle.evm.signTypedData({ data: JSON.parse(payload), version: 'V4' });

Solana Chain

// sign message
const result = await particle.solana.signMessage('base58 string');
// sign transaction
const result = await particle.solana.signTransaction('base58 transaction string');
// sign all transactions
const results = await particle.solana.signAllTransactions([
'base58 transaction1 string',
'base58 transaction2 string'
]);

Tips

If you use window.ethereum to call RPC, The following things need to be noted:

Only use the Particle

Use only the Particle wallet and block other plugin wallets. For example, you can directly replace the global variable window.ethereum injected by the Metamask plugin with particleProvider:
window.ethereum = particleProvider;

Co-exists with other wallets

The Particle wallet co-exists with other plug-in wallets. You can create a new Provider object when switching wallets, avoiding contamination of Particle or Ethereum with assignment operations:
let provider = Object.create(particleProvider);
const ParticleWallet = document.getElementById("ParticleWallet");
const MetaMaskWallet = document.getElementById("MetaMaskWallet");
ParticleWallet.onclick = async () => {
provider = Object.create(particleProvider);
ethersProvider = new ethers.providers.Web3Provider(provider, "any");
};
MetaMaskWallet.onclick = async () => {
if (window.ethereum) {
provider = Object.create(window.ethereum);
}
ethersProvider = new ethers.providers.Web3Provider(provider, "any");
};
const accounts = await provider.request({
method: "eth_requestAccounts",
});

Particle Network Native

Login

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
particle.auth.login().then(info => {
//...
})

Logout

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
particle.auth.logout().then(() => {
console.log("logout");
})

Is User Logged In

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
//check user logged
const result = particle.auth.isLogin()
//check user logged and whether the token is valid, this interface also refresh user
//security account info.
const userInfo = await particle.auth.isLoginAsync()

Get User Info

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
//get user info(token/wallet/uuid), return null when user not login.
const info = particle.auth.userInfo();

Status Events

User can listen particle connect , disconnect and chainChanged events.
// listen connect event
particle.auth.on('connect', (userInfo) => {
console.log("particle userInfo", userInfo);
});
// listen disconnect event
particle.auth.on('disconnect', () => {
console.log("particle disconnect");
});
// listen chainChanged event
particle.auth.on('chainChanged', (chain) => {
console.log("particle chainChanged", chain);
});

Set Auth Theme

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
particle.setAuthTheme({
uiMode: "dark",
displayCloseButton: true,
displayWallet: true, // display wallet entrance when send transaction.
modalBorderRadius: 10, // auth & wallet modal border radius. default 10.
});

Set Language

//support languages: en, zh-CN, zh-TW, zh-HK, ja, ko
particle.setLanguage('en');

Set Fiat Coin

// support fiat coin values: 'USD' | 'CNY' | 'JPY' | 'HKD' | 'INR' | 'KRW'
particle.setFiatCoin('USD');

Switch Chain Info

import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
// you can set chain info when new ParticleNetwork, or call setChainInfo
particle.switchChain({
name: "Polygon",
id: 137,
})

Security Account

Open user security account dashboard, user can set Master Password, Payment Password, and Link Other accounts.
import { ParticleNetwork } from "@particle-netwok/auth";
// open security account settings
const particle = new ParticleNetwork({...});
particle.auth.accountSecurity().catch((error) => {
if (error.code === 4011) {
//ignore window close
} else if (error.code === 10005) {
//invalid token
} else if (error.code === 8005) {
//user not login
}
});

Open Particle Web Wallet

When connect particle auth success, you can open particle wallet by below interface.
import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
// Need check login state when open wallet.
// To set target and features for custom window style, same as window.open().
particle.openWallet(target?: string, features?: string)
//open wallet in iframe.
const url = pn.buildWalletUrl({
//optional: left top menu style, close or fullscreen
//"fullscreen": wallet will be fullscreen when user click.
//"close": developer need handle click event
topMenuType: "close"
});
const iframe = document.createElement("iframe");
iframe.src = url;
//if topMenuType is "close"
window.addEventListener("message", (event) => {
if (event.data === "PARTICLE_WALLET_CLOSE_IFRAME") {
//close click event
}
})

Open Crypto Token Buy

When initializing the Particle is complete, you can open the Buy Tokens page.
import { ParticleNetwork } from "@particle-network/auth";
const particle = new ParticleNetwork({...});
// open buy
// To set target and features for custom window style, same as window.open().
particle.openBuy(options?: OpenBuyOptions, target?: string, features?: string)
You can customize the open buy page by setting options parameters.
name
description
type
required
network
[Solana, Ethereum, Binance Smart Chain, Polygon, Tron, Optimism, Arbitrum One]
string
False
fiatCoin
Fiat currency
string
False
cryptoCoin
crypto currency
string
False
fiatAmt
The amount of fiat currency that the user wants to spend.It's just for Buy Crypto
number
False
cryptAmt
The amount of crypto currency that the user wants to sell.It's just for Sell Crypto
number
False
fixFiatCoin
Prevent user from changing fiat currency
bool
False
fixCryptoCoin
Prevent user from changing fiat cryptocurrency
bool
False
fixFiatAmt
Prevent user from changing amount of fiat currency
bool
False
walletAddress
Wallet address for the predefined cryptocurrency
string
False
If Particle not connected. network and walletAddress are requried.

Custom Wallet Style

When "displayWalletEntry" true, you can custom wallet style by set "customStyle" config, refer to Custom Wallet Style
import { ParticleNetwork, WalletEntryPosition } from "@particle-network/auth";
const particle = new ParticleNetwork({
projectId: "xx",
clientKey: "xx",
appId: "xx",
chainName: "Ethereum", //optional: current chain name, default Ethereum.
chainId: 1, //optional: current chain id, default 1.
wallet: { //optional: by default, the wallet entry is displayed in the bottom right corner of the webpage.
displayWalletEntry: true, //show wallet entry when connect particle.
defaultWalletEntryPosition: WalletEntryPosition.BR, //wallet entry position
uiMode: "light",
supportChains: [{ id: 1, name: "Ethereum"}, { id: 5, name: "Ethereum"}], // optional: web wallet support chains.
customStyle: {}, //optional: custom wallet style
}
});

EVM Web3Modal Integration

If you use web3modal connect wallet, you can use custom provider to add particle auth.

EVM RainbowKit Integration

If you use RainbowKit connect wallet, you can add particle auth quickly.
//install particle rainbowkit extension.
yarn add @particle-network/rainbowkit-ext
Init Particle.
// replace config 'xxx'
new ParticleNetwork({
appId: 'xxx',
clientKey: 'xxx',
projectId: 'xxx',
});
Add Particle to RainbowKit wallet list.
// add particle in group Popular
const popularWallets = {
groupName: "Popular",
wallets: [
particleWallet({ chains, authType: "google" }),
particleWallet({ chains, authType: "facebook" }),
particleWallet({ chains, authType: "apple" }),
particleWallet({ chains }),
injectedWallet({ chains }),
rainbowWallet({ chains }),
coinbaseWallet({ appName: "RainbowKit demo", chains }),
metaMaskWallet({ chains }),
walletConnectWallet({ chains }),
],
};
👉 Source Code

EVM WalletConnect V1 Integration

Introduction

WalletConnect is an open protocol to communicate securely between Wallets and Dapps (Web3 Apps). If you integration Particle Auth, you can connect with other Dapps with WalletConnect protocol.

Getting Started

Download SDK to your project via Yarn.
yarn add @particle-network/walletconnect @particle-network/auth
Init SDK.
import { particleWalletConnect, IWalletConnectSession, SwitchChainEvent } from '@particle-network/walletconnect';
particleWalletConnect.init(evmProvider);
particleWalletConnect.hub.on(SwitchChainEvent.request, (options) => {
//TODO: listen switch chain
//approve switch chain
particleWalletConnect.approveSwitchChain(options.session.peerId);
//or reject switch chain
particleWalletConnect.rejectSwitchChain(options.session.peerId);
})
Connect to Dapps.
// connect dapp with uri, you can get uri from qrcode or clipboard.
const connectDapps = async (uri: string) => {
particleWalletConnect.hub.once(SessionRequestEvent.request, (peerInfo) => {
//TODO: receive dapps session request. show confirm modal for user.
//approve dapps session request.
particleWalletConnect.approveSessionRequest(walletconnectData.peerInfo.peerId);
//or reject dapps session request.
particleWalletConnect.rejectSessionRequest(