Skip to content

Commit

Permalink
Minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Jan 17, 2025
1 parent d5052d9 commit c693fe6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/consts/consts.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const MIN_CHAIN_BALANCE = 1; // 1 Wei
// TODO edit this based on experiments
export const WARP_DEPLOY_GAS_UNITS = BigInt(1e7);
// TODO consider reducing this by ~30% if mid-deploying gas top-ups are implemented
export const WARP_DEPLOY_GAS_UNITS = BigInt(2e7);
export const REFUND_FEE_PADDING_FACTOR = 1.2;
export const MIN_DEPLOYER_BALANCE_TO_SHOW = BigInt(1e15); // 0.001 ETH
2 changes: 1 addition & 1 deletion src/features/deployment/DeploymentDetailsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function DeploymentsDetailsModal({
<DeploymentProperty name="Chains" value={chainNames} />
</div>
<CollapsibleData data={config.config} label="Deployment Config" />
{result && <CollapsibleData data={result} label="Deployment Result" />}
{result && <CollapsibleData data={result.result} label="Deployment Result" />}
</Modal>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function WarpDeploymentProgressIndicator({
<div className={clsx('flex flex-col items-center space-y-4', className)}>
<p>{expectedLogs[stepIndex][1]}</p>
<Stepper
numSteps={expectedLogs.length + 20}
numSteps={expectedLogs.length}
currentStep={stepIndex + 1}
size={9}
pulse
Expand Down

0 comments on commit c693fe6

Please sign in to comment.