Skip to content

Aragon Connect 0.3.0

Compare
Choose a tag to compare
@bpierre bpierre released this 26 Jun 21:50
· 179 commits to master since this release

This version includes support for the xDai network, and API changes for the request-related objects.

Contributors for this release: @0xGabi, @ajsantander, @bpierre, @Evalir and @fabriziovigevani. 🙏

xDai support

Aragon Connect now supports the xDai network.

Set the chainId to 100 in order to use it:

const org = await connect('myorg.aragonid.eth', 'thegraph', {
  chainId: 100
})

Pull request

  • Add support for xdai network (#68)

Tokens connector renaming

The @aragon/connect-thegraph-token-manager package is now @aragon/connect-thegraph-tokens.

@aragon/connect-thegraph-token-manager won’t be updated after 0.3.0 and has been marked as deprecated. Please remember to update your package.json files!

Pull request

  • Renamed token-manager connector to tokens (#74)

TransactionPath and TransactionRequest API changes

TransactionPath

  • TransactionPath#forwardingFeePretransaction has been added.

TransactionRequest

  • The following properties have been removed from TransactionRequest: chainId, gas, gasLimit, gasPrice, value. They can be set as needed by app authors before passing it to an Ethereum library to sign.
  • description and descriptionAnnotated have been added and contain two formats for the radspec description of the transaction. description is a string, while descriptionAnnotated is a list of annotations following the format { type: string, value: any }.

Pull request

  • Refactor transactions (#73)

Other changes

  • Emit an error when a subgraph URL is invalid (#47)
  • Fix yarn clean (#71)
  • Add package.json files field (#67)
  • Removed GraphQL types (#70)
  • Token manager subgraph: fix duplicated balances (#75)
  • Upgrade Ethers to 5.0.0 (#73)