Skip to content

Commit

Permalink
V0.12.5 (#255)
Browse files Browse the repository at this point in the history
* chore: fix wrong min_gas_price calculation (#243)

* chore: fix wrong min_gas_price calculation

* chore: rename param

* chore: use wei

* chore: improve doc

* chore: add tests

* [feature][draft] subscribeToTx (#241)

* chore: initial commit

* feat: 'working' wss

* 0.12.5-alpha.1

* refactor: polymorphic subscribeToTx

* chore: serialize menssage instead of interpolating string

* chore: remove ws dependency

* 0.12.5-alpha.2

* chore: update changelog

---------

Co-authored-by: Canh Trinh <[email protected]>

* chore: fix arbitrum

* 0.12.5-alph.3

* Update package (#249)

* feat:add repo to package.json for link on npm (#248)

Hopefully adding a repository link here will get the "repository" link to show up on npm here:  https://www.npmjs.com/package/@axelar-network/axelarjs-sdk/

* Update package

* Fix wording in readme

---------

Co-authored-by: Stephen Fluin <[email protected]>

* Improve manual relay (#250)

* chore: setting up calc for generating command ID

chore: code cleanup

* chore: update manual relay to destination chain

* chore: code cleanup

* chore: code cleanup

* chore: adding comments

* chore: adding event query

* chore: adding query methods for confirmation height and event

* chore: code cleanup

* chore: code refactor

* chore: typo in changelog

* chore: refactor code and update tests

* chore: fixing command ID calculation

chore: fixing issue where event initially not found

chore: adding retry on retrieving batch data

chore: adding retries

chore: code cleanup

* chore: code cleanup

* chore: code cleanup

* chore: code cleanup for manualRelay through signing

* chore: adding logs for debug mode

* chore: update command ID and update tests

* Erc20 deposit address (#251)

* feat: add erc 20 deposit address initial commit

* chroe: wip

* chore: update tests

* chore: update tests

* chore: PR comment for local binding of refundAddress

* chore: update changelog

* 0.12.5-alpha.4

* chore: adding BNBCHAIN

* chore: gmpe treatment

* chore: update subtractNativeGasFee to not subtract gas already paid

* chore: update changelog

* 0.12.5-alpha.5

* chore: updating express fee calculation (#254)

* chore: adding a fix to addNativeGasMethod with overestimation (#253)

* chore: adding a fix to addNativeGasMethod with overestimation

* chore: code cleanup

* 0.12.5-alpha.6

* chore: fix aurora symbol

* 0.12.5-alpha.7

* fix: adding expressFee to fee param

* 0.12.5-alpha.8

* chore: code cleanup and adding base to testnet

* chore: fix date of v0.12.5 in changelog

* 0.12.5

---------

Co-authored-by: npty <[email protected]>
Co-authored-by: Alan Soares <[email protected]>
Co-authored-by: Jon Ator <[email protected]>
Co-authored-by: Stephen Fluin <[email protected]>
  • Loading branch information
5 people authored Mar 17, 2023
1 parent 302cb46 commit eaba948
Show file tree
Hide file tree
Showing 27 changed files with 20,036 additions and 3,776 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.12.5] - 2023-MARCH-17

- AxelarQueryAPI
- Fixed `estimateGasFee` function in how it handles the `minGasPrice` parameter, which should compare the min to the destination chain gas price, whereas it was comparing to the source chain price originally.
- Updated `estimateGasFee` to accept `isGMPExpressTransaction` parameter
- AxelarRecoveryAPI
- introduced wss subscription service (subscribeToTx) to invoke subscribe to specific transactions for updates
- fixed `addNativeGas` method so that it does not subtract out the fee the user originally paid (which has led to situations of adding zero gas)
- AxelarAssetTransfer
- adding feature to generate deposit addresses "offline" for erc-20 transfers
- AxelarGMPRecoveryAPI
- fixes to manualRelayToDestinationChain to first check if transaction is already confirmed but not broadcasted, and broadcast the transaction (as identified by command ID) if so
- update constants to include `BNBCHAIN` (in addition to `BINANCE`)

## [0.12.4] - 2023-FEBRUARY-1

- AxelarQueryAPI
- added `minGasPrice` parameter for the `estimateGasFee` function. `minGasPrice` is a floor set for the gas price in wei, used as override in case estimated gas price is below specified minimum.
- AxelarGMPRecoveryAPI
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ For full SDK docs, please visit: https://docs.axelar.dev/dev/axelarjs-sdk/intro

## Development

When you develop make sure that you have the [_eslint plugin_](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) installed plugin installed.
When you develop make sure that you have the [_eslint plugin_](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) installed.
Loading

0 comments on commit eaba948

Please sign in to comment.