You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix describe.only - mocha describe.only behaviour has broken with eoslime test
Add more flexibility in eoslime initialization
EOSLIME was able to be initialized 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 initializationconsteoslime=require('eoslime').init('local',{url: 'Your url',chainId: 'Your chainId'});consteoslime=require('eoslime').init('jungle',{url: 'Your url',chainId: 'Your chainId'});consteoslime=require('eoslime').init('bos',{url: 'Your url',chainId: 'Your chainId'});// ... any other supported netwok ...
Allow read-only contracts - You are able now to instantiate a contract withouth a signer/executor and read the contract's tables
Add Tutorial section in the documentation
Describe how examples in the documentation could be run