Skip to content

[ShanaBoo] Display more information when depositing/withdrawing from pools#213

Open
genesisrevelationinc-debug wants to merge 12 commits into
capofficial:mainfrom
genesisrevelationinc-debug:shanaboo-fix-23
Open

[ShanaBoo] Display more information when depositing/withdrawing from pools#213
genesisrevelationinc-debug wants to merge 12 commits into
capofficial:mainfrom
genesisrevelationinc-debug:shanaboo-fix-23

Conversation

@genesisrevelationinc-debug
Copy link
Copy Markdown

ShanaBoo Autonomous Fix

This PR was automatically generated by ShanaBoo Earn Engine to claim the $50.00 bounty on this issue.

Source: Github | Task: 1482928727

Closes #23


Auto-submitted by ShanaBoo CNS — NVIDIA NIM + Microsoft Agent Framework

Copilot AI review requested due to automatic review settings May 25, 2026 05:42
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds a new Svelte modal component intended to support depositing (and currently also includes withdrawing) with a “click balance to set max” interaction.

Changes:

  • Introduces DepositModal.svelte with deposit UI and balance “set max” behavior.
  • Adds modal styling for balance row/value display.
  • Includes an additional withdraw modal block in the same file (appears unintended).

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +17 to +19
<style>

<Modal title='Deposit' show={showModal} on:close={closeModal}>
<Button on:click={submit} isLoading={isSubmitting}>Deposit</Button>
</Modal>

<style>
@@ -0,0 +1,102 @@
<script>
Comment on lines +8 to +9
}
}
Comment on lines +52 to +54
<script>
import { onMount } from 'svelte';
import { withdraw } from '../../lib/pool';
<span class='balance-value' on:click={setMaxAmount}>{$balance ? $balance.toFixed(6) : '0.000000'}</span>
</div>

<Input label='Amount' type='number' bind:value={amount} />

<div class='balance-row'>
<span class='label'>Wallet Balance</span>
<span class='balance-value' on:click={setMaxAmount}>{$balance ? $balance.toFixed(6) : '0.000000'}</span>
Comment on lines +11 to +13
function setMaxAmount() {
amount = $balance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Display more information when depositing/withdrawing from pools

2 participants