Version 1.0.2
Mocha describe.only behaviour was broken with
eoslime test
EOSLime was able to be initialised only with pre-configured providers connections. Now you can connect eoslime to your chain and keep the pre-configured functionality as the default account on local network
// New local flexible initialization
const eoslime = require('eoslime').init('local', { url: 'Your url', chainId: 'Your chainId' });
const eoslime = require('eoslime').init('jungle', { url: 'Your url', chainId: 'Your chainId' });
const eoslime = require('eoslime').init('bos', { url: 'Your url', chainId: 'Your chainId' });
// ... any other supported netwok ...
You are able now to instantiate a contract without a signer/executor and read the contract's tables
Last modified 3yr ago