This repository was archived by the owner on May 22, 2025. It is now read-only.
Aragon Connect 0.3.0
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#forwardingFeePretransactionhas 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. descriptionanddescriptionAnnotatedhave been added and contain two formats for the radspec description of the transaction.descriptionis a string, whiledescriptionAnnotatedis a list of annotations following the format{ type: string, value: any }.
Pull request
- Refactor transactions (#73)