Skip to content

Commit

Permalink
v.20210918
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuko973663 committed Sep 18, 2021
1 parent c5fe04d commit 798b25c
Show file tree
Hide file tree
Showing 5 changed files with 228 additions and 134 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,18 @@ see article on hide.ac [https://hide.ac/articles/ZZoaKG4yb](https://hide.ac/arti
- ウォレットアドレスの非表示オプション
- リーダーボード実装
- 報酬履歴表示
- community balance の表示(安定させ隊のトータル軍資金 USDC, JPYC)
- スタビの APR 表示
- 流動性プールの APR 表示

## update log

### [v.20210918.0](https://github.com/Nuko973663/JPYCstabilizer/releases/tag/v.20210918.0)

- gas 代の MATIC の自動補充機能を追加(デフォルトオフ): thanks to medy.nim さん @dumblepytech1
- RPC node から切断された場合に他の RPC ノードに自動的に接続する機能を追加
- [bugfix] token を approve していない状態で自動スワップを on にしても swap がトリガーされないように変更

### [v.20210916.0](https://github.com/Nuko973663/JPYCstabilizer/releases/tag/v.20210916.0)

- added favicon: thanks to コイケさん @koikedesuyoo
Expand Down
34 changes: 22 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
Approve Coins
</a>
<a class="dropdown-item" href="#" id="autoswapMatic">
<i class="fas fa-gas-pump fa-sm fa-fw mr-2 text-gray-400"></i>
Autoswap Matic
</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" id="options">
<i class="fas fa-cog fa-sm fa-fw mr-2 text-gray-400"></i>
Options
</a>
<a class="dropdown-item" href="#" id="autoswapMatic">
<i class="fas fa-gas-pump fa-sm fa-fw mr-2 text-gray-400"></i>
Autoswap Matic
</a>
<div class="dropdown-divider"></div>
<a
class="dropdown-item"
Expand All @@ -293,9 +293,17 @@
<!-- Begin Page Content -->
<div class="container-fluid" id="containerBody">
<!-- Page Heading -->

<div id="alert"></div>


<div
class="d-sm-flex align-items-center justify-content-between mb-4"
>




<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>

<div class="text-right">
Expand Down Expand Up @@ -947,14 +955,14 @@ <h5 class="modal-title" id="modalOptionLabel">Options</h5>
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="modalAutoswapMatic">Autoswap Matic</h5>
<h5 class="modal-title" >Autoswap Matic</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" >
<div id="modalBody2">
<div>Automatically swap from JPYC or USDC to MATIC when MATIC falls below the specified amount.</div>
<div>Automatically swap JPYC or USDC for MATIC when the balance MATIC for gas runderruns.</div>
<div class="pt-3">
<div class="form-group">
<label for="privateKey">Lower limit</label>
Expand All @@ -966,15 +974,17 @@ <h5 class="modal-title" id="modalAutoswapMatic">Autoswap Matic</h5>
</div>
</div>

<a href="#" class="btn btn-primary btn-icon-split" id="submitAutoSwap">
<span class="icon text-white-50">
<i class="fas fa-arrow-right"></i>
</span>
<span class="text">Submit</span>
</a>

</div>
</div>

<div class="modal-footer">
<a href="#" class="btn btn-primary btn-icon-split" id="submitAutoSwap">
<span class="icon text-white-50">
<i class="fas fa-arrow-right"></i>
</span>
<span class="text">Save</span>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
Expand Down
Loading

0 comments on commit 798b25c

Please sign in to comment.