getAttentionId
This function gets the attention contract ID running on the bundler.
Example Code
const knode = require("@_koi/sdk/node");
const ktools = new knode.Node();
async function testGetAttentionId() {
const attentionContractID= await ktools.getAttentionId();
console.log("attentionContractID :", attentionContractID);
}
testGetAttentionId();Example Code Output
Initialized Koii Tools for true ownership and direct communication using version QA7AIFVx1KBBmzC7WUNhJbDsHlSJArUT0jWrhZMZPS8
attentionContractID : NwaSMGCdz6Yu5vNjlMtCNBmfEkjYfT-dfYkbQQDGn5sReturns
Promise <string> - Attention contract ID running on the bundler as a string
Last updated