Skip to content

Commit

Permalink
update lnbridge estimate time
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed Nov 1, 2023
1 parent 0c778b8 commit af623ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/apps/src/bridges/lnbridge-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ export class LnBridgeBase extends BaseBridge {
symbol: "helix-symbol.svg",
};
this.name = "Helix LnBridge";
this.estimateTime = { min: 1, max: 30 };
this.estimateTime = { min: 0, max: 1 };
}

isLnBridge() {
return true;
}

formatEstimateTime(): string {
return "Within 1 minute";
}

async getFee(args?: { baseFee?: bigint; protocolFee?: bigint; liquidityFeeRate?: bigint; transferAmount?: bigint }) {
if (this.sourceToken) {
return {
Expand Down

0 comments on commit af623ed

Please sign in to comment.