Skip to content

Commit

Permalink
Default gas limit to 150000
Browse files Browse the repository at this point in the history
  • Loading branch information
0xp3gasus committed Sep 16, 2024
1 parent 09760a0 commit 5abf5c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/chilly-clouds-kick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@xchainjs/xchain-cosmos': patch
---

Default transfer gas limit updated from 90_000 to 150_000
2 changes: 1 addition & 1 deletion packages/xchain-cosmos/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export abstract class Client extends CosmosSDKClient {
protected getStandardFee(asset: Asset): StdFee {
const denom = this.getDenom(asset)
const defaultGasPrice = GasPrice.fromString(`0.006${denom}`)
return calculateFee(90_000, defaultGasPrice)
return calculateFee(150_000, defaultGasPrice)
}

/**
Expand Down

0 comments on commit 5abf5c3

Please sign in to comment.