This is the monorepo for the Talisman Connect project. This project aims to provide the components necessary for Dapp developers to be able to quickly connect to wallets in the Polkadot and Kusama ecosystems.
This turborepo uses Yarn as a package manager. It includes the following packages/apps:
npm i --save @talismn/connect-wallets
import { getWallets } from '@talismn/connect-wallets';
// get an array of wallets which are installed
const installedWallets = getWallets().filter(wallet => wallet.installed)
// get talisman from the array of installed wallets
const talismanWallet = installedWallets.find(wallet => wallet.extensionName === 'talisman')
// enable the wallet
if (talismanWallet) {
talismanWallet.enable("myCoolDapp").then(() => {
talismanWallet.subscribeAccounts((accounts) => {
// do anything you want with the accounts provided by the wallet
console.log("got accounts", accounts)
})
})
}
NOTE: We recommend yarn
cd my-turborepo
yarn run build
To develop all apps and packages, run the following command:
cd my-turborepo
yarn run dev
Turborepo can use a technique known as Remote Caching to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.
By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can create one, then enter the following commands:
cd my-turborepo
npx turbo login
This will authenticate the Turborepo CLI with your Vercel account.
Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo:
npx turbo link
Learn more about the power of Turborepo: