Skip to content

Commit

Permalink
fixed solana fee
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Apr 1, 2024
1 parent d548568 commit 45da151
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/factory/factories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ export namespace ChainFactoryConfigs {

export const MainNet: () => Promise<Partial<ChainParams>> = async () => {
const feeMargin = { min: 0.5, max: 5 };
const solFeeMargin = { min: 7, max: 7 };
const notifier = evNotifier(middleware_uri);

// VeChain related:
Expand Down Expand Up @@ -1289,7 +1290,7 @@ export namespace ChainFactoryConfigs {
bridgeContractAddr: "8bJT5J4tFzeBcxhd7i3KhYUVr7oAV4z7ijau2mTCcXD1",
endpoint: MainNetRpcUri.SOLANA,
notifier,
feeMargin,
feeMargin: solFeeMargin,
},
secretParams: {
notifier,
Expand Down

0 comments on commit 45da151

Please sign in to comment.