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
Welcome to Fin Wallet Extension Developer Guide. This documentation contains guides for developers to get started developing on Fin Wallet Extension.
To detect Fin Wallet Extension with Cosmos Base Chain
To detect whether your browser is running fin Extension, please use:
Notice: Fin Wallet Extension Testnet is under development and not available now.
To connect Fin Extension Wallet
To connect Fin Wallet Extension means to access the user's [blockchain - like Cosmos] account(s).
Currently chains support: ['terra','cosmos']
To disconnect Fin Extension Wallet
To disconnect fin Extension, please use:
To experience functions
Once your account is connected, let's start experiencing more functions.
Get Current Account
return Promise<Array[String]>
If wallet can not be found, return
[]
instead ofthrow Error
Check wallet whether exists or not
return Promise<{data: Boolean}>
Execute contract function
return: Promise<Hash>
To handle events
List of events
Currently we only support some action event from wallet extension
accountsChanged
Receive when active account changed in Extension
networkChanged
Receive when active network changed in Extension
chainChanged
Receive when active chain changed in Extension
disconnect
Receive when disconnect from Extension
close
Alias for disconnect event
Method
Description
on(event, callback)
Add event listener
off(event, callback)
Remove event listener
Last updated