Skip to content

Subspace 1.2.0

Compare
Choose a tag to compare
@richard-ramos richard-ramos released this 27 Jan 20:16
· 70 commits to master since this release

New Org

Subspace is now under the @embarklabs Org. Versions under @status-im Org have been deprecated.

# Using npm
npm install --save @embarklabs/subspace

# Using yarn
yarn add @embarklabs/subspace 

HttpProvider support

Previously Subspace only worked with WebSockets for event subscriptions, and polled for changes only if the callInterval option was specified, displaying a warning indicating that the use of providers other than WebSocketProvider was discouraged.

With this release, Subspace will identify if the provider supports subscriptions and use them automatically. If no subscriptions are available, it will assume the provider does not support them and poll the contract for new changes periodically.

Subscriptions can be disabled with the disableSubscriptions option.

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

GraphQL Example

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

Bug fixes

  • Fixed obtaining the from address when instantiating a Web3 Contract with Subspace tracking functionality
  • .track() is added only to event names as they're specified in the ABI. Tracking events by signature is not allowed