Subspace 1.1.0
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