Skip to content

Commit

Permalink
chore: modify default gas (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
j75689 committed Aug 11, 2023
1 parent 12d7544 commit e973e3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion x/bridge/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var (
DefaultBscTransferOutRelayerFeeParam = sdkmath.NewInt(250000000000000) // 0.00025
DefaultBscTransferOutRelayerFeeParam = sdkmath.NewInt(780000000000000) // 0.00078
DefaultBscTransferOutAckRelayerFeeParam = sdkmath.NewInt(0)
)

Expand Down
12 changes: 6 additions & 6 deletions x/storage/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ const (
DefaultMinUpdateQuotaInterval uint64 = 2592000 // 30 days (in second)

DefaultMaxLocalVirtualGroupNumPerBucket uint32 = 10
DefaultMirrorBucketRelayerFee = "250000000000000" // 0.00025
DefaultMirrorBucketAckRelayerFee = "250000000000000" // 0.00025
DefaultMirrorObjectRelayerFee = "250000000000000" // 0.00025
DefaultMirrorObjectAckRelayerFee = "250000000000000" // 0.00025
DefaultMirrorGroupRelayerFee = "250000000000000" // 0.00025
DefaultMirrorGroupAckRelayerFee = "250000000000000" // 0.00025
DefaultMirrorBucketRelayerFee = "1300000000000000" // 0.0013
DefaultMirrorBucketAckRelayerFee = "250000000000000" // 0.00025
DefaultMirrorObjectRelayerFee = "1300000000000000" // 0.0013
DefaultMirrorObjectAckRelayerFee = "250000000000000" // 0.00025
DefaultMirrorGroupRelayerFee = "1300000000000000" // 0.0013
DefaultMirrorGroupAckRelayerFee = "250000000000000" // 0.00025
)

var (
Expand Down

0 comments on commit e973e3b

Please sign in to comment.