Releases: vechain/connex
v2.2.1
This release incorporates the following packages:
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
Changes
- Added
Connex.Thor.Feesto reflect the newly added/FeesAPI endpointconnex.thor.fess.history(<block-id-or-num>).count().get(<count>)to retrieve the fees history.connex.thor.fess.priorityFee()to get a priority fee suggestion.
- Added node options for building connex and wallet-buddy for legacy webpack.
Full Changelog: v2.2.0...v2.2.1
v2.2.0
This release incorporates the following packages:
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
@vechain/[email protected]
Changes to the Connex API
- Update types to reflect GLACTICA upgrade
- Add
baseFeePerGastoConnex.Thor.Block - Add
type,maxPriorityFeePerGasandmaxFeePerGastoConnex.Thor.Transaction - Add
typetoConnex.Thor.Transaction.Receipt - Add
baseFeePerGastoConnex.Thor.Status['head']
- Add
- Support signing Dynamic Fee transaction in package
@vechain/connex-driver- Add
driver.txParams.txTypeto define default transaction to use. - Add
driver.txParams.maxPriorityFeePerGasto customize the transaction fee for dynamic fee transaction.
- Add
Full Changelog: v2.1.0...v2.2.0
v2.1.0
This release incorporates the following packages:
- @vechain/[email protected]
- @vechain/[email protected]
- @vechain/[email protected]
- @vechain/[email protected]
- @vechain/[email protected]
Changes to the Connex API
In this new update, we introduce the standalone Connex.Thor class that is designed specifically for read-only operations.
const thor = new Connex.Thor({
node: 'https://mainnet.veblocks.net/',
network: 'main'
})Furthermore, we’ve enhanced the construction parameters of Connex.Vendor. The second parameter now allows you to specify a wallet. For more information, please refer to the README.
const vendor = new Connex.Vendor('main', 'sync2') Additionally, it's possible to create a full connex object
const connex = new Connex({
node: 'https://mainnet.veblocks.net/',
network: 'main',
signer: 'sync2'
})
// composed by thor and vendor
const {thor, vendor} = connexA significant modification is that Connex.Thor.Account.Method.transact() will only function in full connex mode from now onwards.
Full Changelog: v2.0.14...v2.1.0