Trireme commited on
Commit
3380ac7
·
verified ·
1 Parent(s): 513b2d0

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -41,22 +41,22 @@ if __name__ == "__main__":
41
  gr.Markdown("## Patchy Balances and PnL")
42
 
43
  df0_out = gr.Dataframe(label="Starting Balances")
44
- txt0_out = gr.Textbox(label="Starting Value Total")
45
 
46
  df2_out = gr.Dataframe(label="Wallet Balances")
47
- txt2_out = gr.Textbox(label="Wallet Value Total")
48
 
49
  df3_out = gr.Dataframe(label="JUP Limit Balances")
50
- txt3_out = gr.Textbox(label="JUP Limit Value Total")
51
 
52
  df4_out = gr.Dataframe(label="LP Balances")
53
- txt4_out = gr.Textbox(label="LP Balances Value Total")
54
 
55
  df5_out = gr.Dataframe(label="LP Reward Balances")
56
- reward_out = gr.Textbox(label="LP Rewards")
57
 
58
  df1_out = gr.Dataframe(label="Total Balances")
59
- txt1_out = gr.Textbox(label="Current Value Total")
60
 
61
  pnl_out = gr.Textbox(label="PNL (AUM Model)")
62
 
 
41
  gr.Markdown("## Patchy Balances and PnL")
42
 
43
  df0_out = gr.Dataframe(label="Starting Balances")
44
+ txt0_out = gr.Textbox(label="Starting Value Total ($)")
45
 
46
  df2_out = gr.Dataframe(label="Wallet Balances")
47
+ txt2_out = gr.Textbox(label="Wallet Value Total ($)")
48
 
49
  df3_out = gr.Dataframe(label="JUP Limit Balances")
50
+ txt3_out = gr.Textbox(label="JUP Limit Value Total ($)")
51
 
52
  df4_out = gr.Dataframe(label="LP Balances")
53
+ txt4_out = gr.Textbox(label="LP Balances Value Total ($)")
54
 
55
  df5_out = gr.Dataframe(label="LP Reward Balances")
56
+ reward_out = gr.Textbox(label="LP Reward Value Total ($)")
57
 
58
  df1_out = gr.Dataframe(label="Total Balances")
59
+ txt1_out = gr.Textbox(label="Current Value Total ($)")
60
 
61
  pnl_out = gr.Textbox(label="PNL (AUM Model)")
62