Configuration
Keycat currently supports EOS and Klaytn. If you are interested in Keycat and seeking for integration with your blockchain, contact to indegser@eosdaq.com
Common
import { Keycat } from 'keycat'
const eosMainnetKeycat = new Keycat({
blockchain: {
name: 'eos',
network: 'main',
},
})
const customNodesKeycat = new Keycat({
blockchain: {
name: 'eos',
network: 'custom',
nodes: [
'http://mylocalnodeos.com',
'http://localhost:18888',
],
},
})EOS
Klaytn
Last updated