Dev Guide V1 - Sei DApps Integration
Welcome to Fin Extension Wallet Developer Guide. This documentation contains guides for developers to get started developing on Fin Extension Wallet.
Sei DApps Integration
To detect Fin Wallet Extension with Cosmos Base Chain
if (window.fin) {
console.log('Fin Wallet Extension is installed!');
}// Some codeNotice: Fin Wallet Extension Testnet is under development and not available now.
To connect Fin Extension Wallet
// Connect only
const connection = window.fin.cosmos('<chain: String>');
// Connect & get accounts
connection.request({ method: 'cosmos_accounts' });
// Check whether dapp connected or not
connection.isConnected();// Some codeTo disconnect Fin Extension Wallet
To experience functions
Get Current Account
Check wallet whether exists or not
Execute contract function
To handle events
List of events
Events
Trigger
Method
Description
Last updated