Providing an efficient and easy solution for connecting Polkadot, Substrate, & Ethereum wallets. Drawing insights from Blocknative's web3-onboard, we've enhanced our capabilities for seamless integration with Substrate wallets.
We have developed the ability to further extend the connection of substrate wallets. SDK Substrate Wallets
- Minimal Dependencies: All wallet dependencies are included in separate packages, so you only include the ones you want to use in your app.
- Multiple Wallets and Accounts Connection: Allow your users to connect multiple wallets and multiple accounts within each wallet at the same time to your app.
- Multiple Chain Support: Allow users to switch between chains/networks with ease.
- Account Center: A persistent interface to manage wallet connections and networks, with a minimal version for mobile
- Notify: Real-time transaction notifications for the connected wallet addresses for all transaction states
- Wallet Provider Ethereum Standardization: All wallet modules expose a provider that is patched to be compliant with the EIP-1193, EIP-1102, EIP-3085 and EIP-3326 specifications.
- Wallet Provider Substrate: For Substrate wallets, we provide 2 connection solutions. This includes injected wallets with available signers, and other connections like hardware wallets, WalletConnect, and Polkadot Vault. Additionally, we offer a provider similar to Ethereum wallets, supporting various methods such as
polkadot_signTransaction
,polkadot_signMessage
,polkadot_sendTransaction
,polkadot_getBalance
, andpolkadot_requestAccounts
- Dynamic Imports: Supporting multiple wallets in your app requires a lot of dependencies. Onboard dynamically imports a wallet and its dependencies only when the user selects it, so that minimal bandwidth is used.
Note: If you're still unsure about following our instructions below, you can run the demo that we have prepared. The result is our SubWallet-Connect. Install the core Onboard library, the injected wallets module and optionally ethers js and polkadot js to support browser extension and mobile wallets:
NPM
npm i @subwallet-connect/core @subwallet-connect/injected-wallets ethers
Yarn
yarn add @subwallet-connect/core @subwallet-connect/injected-wallets ethers @polkadot/extension-inject
Then initialize in your app:
import Onboard from '@subwallet-connect/core';
import injectedModule from '@subwallet-connect/injected-wallets';
import subwalletModule from '@subwallet-connect/subwallet';
import subwalletPolkadotModule from '@subwallet-connect/subwallet-polkadot';
import type {EIP1193Provider, SubstrateProvider} from "@subwallet-connect/common";
import {ethers} from 'ethers';
import {ApiPromise, WsProvider} from '@polkadot/api';
const MAINNET_RPC_URL = 'https://mainnet.infura.io/v3/<INFURA_KEY>'
const ws = 'wss://rpc.polkadot.io'
const injected = injectedModule()
const subwalletWallet = subwalletModule()
const subwalletPolkadotWalet = subwalletPolkadotModule()
const onboard = Onboard({
wallets: [injected, subwalletWallet, subwalletPolkadotWalet],
chains: [
{
id: '0x1',
token: 'ETH',
label: 'Ethereum Mainnet',
rpcUrl: MAINNET_RPC_URL
}
],
chainsPolkadot: [
{
id: '0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3',
namespace: 'substrate',
token: 'DOT',
label: 'Polkadot',
rpcUrl: `polkadot.api.subscan.io`,
decimal: 10
}
]
})
const wallets = await onboard.connectWallet()
const wallet = wallets[0]
if (wallet?.type === 'evm') {
// create an ethers provider with the last connected wallet provider
const ethersProvider = new ethers.providers.Web3Provider(
wallet.provider as EIP1193Provider,
'any'
)
const signer = ethersProvider.getSigner()
// send a transaction with the ethers provider
const txn = await signer.sendTransaction({
to: '0x',
value: 100000000000000
})
const receipt = await txn.wait()
} else if (wallet?.type === 'substrate') {
const api = new ApiPromise({
provider: new WsProvider(ws)
});
api.isReady().then(() => {
const transferExtrinsic = api.tx.balances.transferKeepAlive(recipientAddress, amount);
transferExtrinsic.signAndSend(senderAddress, {signer: wallet.signer}, ({status, txHash}) => {
if (status.isInBlock) {
console.log(txHash.toString());
console.log(`Completed at block hash #${status.asInBlock.toString()}`);
} else {
console.log(`Current status: ${status.type}`);
}
})
})
}
For full documentation, check out the README.md for each package or the docs page here from ethereum wallet:
Core Repo
Injected Wallets
SDK Wallets
- SubWallet
- SubWallet-Polkadot
- WalletConnect-Polkadot
- Talisman
- Polkadot{.js}
- Arcana
- Coinbase
- Trust
- WalletConnect
- Magic
- Fortmatic
- Portis
- MEW-Wallet
- Web3Auth
- Taho (previously Tally Ho)
- Enkrypt
- Frontier
- Infinity Wallet
- Frame
- Blocto
Hardware Wallets
Frameworks
If you would like to test out the current functionality of SubWallet Connect in a small browser demo, then:
- Clone the repo:
git clone git@github.com:Koniverse/SubWallet-Connect.git
- Checkout the SubWallet Connect feature branch:
git checkout sw-dev
- Install the dependencies:
yarn install
(if running a M1 mac -yarn install-m1-mac
) - Run build all packages in dev mode:
yarn build
- Direct to package\demo:
cd .\packages\demo\
- Running start to view demo :
yarn start
- To view the demo app in the browser after running the above steps navigate to http://localhost:8080