@particle-network/iframe-wallet
v2.0.5
Published
Only support used in iframe.
Downloads
95
Readme
Particle iframe wallet
Only support used in iframe.
Installation
Install Auth Core and its peer dependencies.
npm install @particle-network/iframe-wallet
# or
yarn add @particle-network/iframe-wallet
Quick start
import { iframeWallet, inIframe } from '@particle-network/iframe-wallet';
if (inIframe()) {
iframeWallet.init({
iframeId: 'xxxx',
evm: true,
solana: true,
});
}
// evm eip1193 provider
const provider = iframeWallet.ethereum;
// solana wallet
const wallet = iframeWallet.solana;
// particle user info
const userInfo = await iframeWallet.getUserInfo();
// open account and security
await iframeWallet.openAccountAndSecurity();