eckoWALLET API
Welcome to eckoWALLET’s Developer Documentation. eckoWALLET is a user-friendly and robust Kadena-native wallet designed for seamless interaction with dApps on the Kadena network.
`Detecting eckoWALLET
/**
* Check if is X-Wallet installed
*/
const isXWalletInstalled = () => {
const { kadena } = window;
return Boolean(kadena && kadena.isKadena);
};
const initialize = async () => {
if (isXWalletInstalled()) {
// You will start here
}
};
window.addEventListener('load', initialize);Connecting to eckoWALLET
kadena.request({
method: 'kda_connect',
networkId: NETWORK_ID,
});Check Connection status
Get network info
Get account information
Disconnect from eckoWALLET
Send Tokens to another account
Sign command
EckoWALLET events
Account changed
Status changed
Last updated
