@sora-test/wallet-connect
Overview
This library aim to connect multiple extension wallets of Dotsama ecosystem that use the @polkadot/extension-dapp
package with web3Enable. You can use this with any webUI to get features of extension.
We built this packages with idea and some code from @talisman-connect/wallets.
Here is main concept of this package:
Getting start
wallet.ts
public some useful method will help to start connect with wallets.
You can enable all supported wallets that activated on your browser with this code. Authentication popup of support and
activated extension will be showed after this code first time.
import { getWallets } from '../wallets';
import { Wallet } from '../types';
const supportedWallets: Wallet[] = getWallets();
supportedWallets.forEach((wallet) => {
if (wallet.installed) {
wallet.enable();
}
});
You can use wallet methods after enable extension. Example get account list:
import { getWalletBySource } from '../wallets';
import { BaseDotsamaWallet } from '../base-dotsama-wallet';
const wallet = getWalletBySource('subwallet-js') as BaseDotsamaWallet;
if (wallet) {
wallet.enable()
.then(() => {
wallet.getAccounts()
.then((accounts) => {
accounts && accounts.forEach((account) => {
console.log(account.name, account.address)
})
}).catch(console.error)
}).catch(console.error);
}
You also can use object signer with smart contract call
const contract = await new ContractPromise(api, abi, address);
const address = '...'
const wallet = getWalletBySource('subwallet-js') as BaseDotsamaWallet;
if (wallet) {
await wallet.enable()
const signer = wallet.signer;
if (signer && signer.signRaw && signer.signPayload) {
await contract.tx
.doSomething({ })
.signAndSend(
address,
{ signer },
async ({ status, dispatchError }) => {
}
);
}
}
Add more wallet
You can add more wallet and not required to modify this packages.
To add new wallet you should you can see and example from packages/sub-connect/src/new-wallet-example
- Add svg logo should not exceed 10KB
- Create some code like
packages/sub-connect/src/new-wallet-example/newWalletExample.ts
:
import { addWallet } from '@sora-test/wallet-connect/dotsama/wallets';
import SubWalletLogo from './ExampleWallet.svg';
export const doAddWallet = () => {
addWallet({
extensionName: 'example',
title: 'New Wallet Example',
chromeUrl: 'https://github.com/Koniverse/SubConnect',
mozillaUrl: '',
logo: {
src: SubWalletLogo as string,
alt: 'New Wallet Example'
}
});
};
- Call doAddWallet before any functions in
packages/wallet-connect/src/dotsama/wallets.ts
is called.
require('./App.scss');
doAddWallet();
export function App () {
const [walletKey, setWalletKey] = useLocalStorage('wallet-key');
const [currentWallet, setCurrentWallet] = useState<Wallet | undefined>(getWalletBySource(walletKey));
const [isSelectWallet, setIsSelectWallet] = useState(false);
const [accounts, setAccounts] = useState<WalletAccount[]>([]);
}
Functions
Basic functions from wallet.ts:
addWallet(data: WalletInfo): void
: Add your custom wallet to the wallet list. This method need to be call before other method in this file is called.getWallets(): Wallet[]
: Get all supported walletsgetWalletBySource( source: string | unknown )
: Get wallet by extensionNameisWalletInstalled(source: string | unknown)
Check installation, activation of a wallet.
Basic functions of wallets (BaseDotsamaWallet):
wallet.intalled
: Check extension is installed and activated or not by checking object window.injectedWeb3
wallet.enable(): Promise<void>
: Enable wallet with your url by authentication popup in the first time and any time before use another wallet functions.wallet.getAccounts(): WalletAccount[]
: Get all account of the wallet.wallet.subscribeAccounts(callback): UnsubscribeFn
: Get and subscribe account changes. This will return self unsubscribe function.wallet.extention
: Return InjectExtension
object that is provided wallet extension. You can found all extension interface in package @polkadot/extension-inject
. We also make quick access of extension with these props:
wallet.signer
: Quick access of wallet.extension.signer
wallet.metadata
: Quick access of wallet.extension.metadata
wallet.provider
: Quick access of wallet.extension.provider