🪐Cosmos DApps Integration
Welcome to MapNode Extension Wallet Developer Guide. This documentation contains guides for developers to get started developing on MapNode Extension Wallet.
To detect MapNode Extension with Cosmos Base Chain
if (window.MapNode) {
console.log('MapNode Extension is installed!');
}Notice: MapNode Extension Testnet is under development and not available now.
To connect MapNode Extension Wallet
// Connect only
const connection = window.MapNode.cosmos('<chain: String>');
// Connect & get accounts
connection.request({ method: 'cosmos_accounts' });
// Check whether dapp connected or not
connection.isConnected();To disconnect MapNode 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