Skip to content

Commit

Permalink
DOGE Lower fee bound updated (#878)
Browse files Browse the repository at this point in the history
* Suggested feeRate not checked

* Revert "Suggested feeRate not checked"

This reverts commit 76ef76a.

* Lower fee bound updated

* Update version
  • Loading branch information
0xp3gasus authored Oct 30, 2023
1 parent 6cb6a13 commit 8e88504
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions packages/xchain-doge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v0.7.3 (2023-10-30)

## Update

- DOGE lower fee bound updated

# v0.7.2 (2023-10-26)

## Update
Expand Down
4 changes: 2 additions & 2 deletions packages/xchain-doge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xchainjs/xchain-doge",
"version": "0.7.2",
"version": "0.7.3",
"description": "Custom Doge client and utilities used by XChain clients",
"keywords": [
"Xchain",
Expand Down Expand Up @@ -59,4 +59,4 @@
"publishConfig": {
"access": "public"
}
}
}
2 changes: 1 addition & 1 deletion packages/xchain-doge/src/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
*/
export const MIN_TX_FEE = 100000
export const DOGE_DECIMAL = 8
export const LOWER_FEE_BOUND = 40_000
export const LOWER_FEE_BOUND = 100 // https://github.com/dogecoin/dogecoin/blob/master/doc/fee-recommendation.md
export const UPPER_FEE_BOUND = 20_000_000

/**
Expand Down
4 changes: 2 additions & 2 deletions packages/xchain-thorchain-amm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"@xchainjs/xchain-cosmos": "^0.21.5",
"@xchainjs/xchain-bsc": "^0.3.3",
"@xchainjs/xchain-crypto": "^0.3.0",
"@xchainjs/xchain-doge": "^0.7.2",
"@xchainjs/xchain-doge": "^0.7.3",
"@xchainjs/xchain-ethereum": "^0.30.4",
"@xchainjs/xchain-thornode": "^0.3.8",
"@xchainjs/xchain-thorchain-query": "^0.6.5",
Expand Down Expand Up @@ -83,7 +83,7 @@
"@xchainjs/xchain-cosmos": "^0.21.5",
"@xchainjs/xchain-bsc": "^0.3.3",
"@xchainjs/xchain-crypto": "^0.3.0",
"@xchainjs/xchain-doge": "^0.7.2",
"@xchainjs/xchain-doge": "^0.7.3",
"@xchainjs/xchain-ethereum": "^0.30.4",
"@xchainjs/xchain-thornode": "^0.3.8",
"@xchainjs/xchain-thorchain-query": "^0.6.5",
Expand Down

0 comments on commit 8e88504

Please sign in to comment.