Skip to content

Subspace 1.1.0

Compare
Choose a tag to compare
@iurimatias iurimatias released this 28 Oct 17:28
· 87 commits to master since this release
fe45ae9

Website and Documentation

The website and up to date documentation can be found at https://subspace.status.im

Track Logs

Added trackLogs() to react to incoming logs

subspace.trackLogs({address: tokenAddress, topics: [eventTopic1, eventTopic2, null]}).subscribe((v) => {
  console.log(v);
});

No DB option

In cases where you don't want persistence, you can now disable it with the disableDatabase option

let subspace = new Subspace({disableDatabase: true})

Vue Example

An example DApp using Vue with Subspace can now be found at https://github.com/embark-framework/subspace/tree/master/examples/vue

Bug fixes

  • Fixed chain id awareness so that syncing works better when switching networks