Skip to content

Commit

Permalink
Merge pull request #3521 from ioBanker/patch-10
Browse files Browse the repository at this point in the history
fine tuning transaction information
  • Loading branch information
sschiessl-bcp authored Jun 20, 2022
2 parents c08b512 + b439c33 commit e688229
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 15 deletions.
30 changes: 15 additions & 15 deletions app/assets/locales/locale-en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1799,11 +1799,11 @@
"call_order_update": "{account} changed {debtSymbol} debt by {debt} and collateral by {collateral}",
"committee_member_update_global_parameters": "{account} updated the global committee parameters",
"credit_deal_expired": "{account} credit deal has expired.",
"credit_deal_repay": "{account} repays {amount} to credit offerfee: {fee}.",
"credit_offer_accept": "{account} borrows {amount} from credit offer.",
"credit_offer_create": "{account} create a credit offer of {amount}fee rate: {fee}.",
"credit_offer_delete": "{account} deleted credit offer #{id}.",
"credit_offer_update": "{account} update a credit offer #{id}.",
"credit_deal_repay": "{account} repays {amount} to credit offer with fee {fee}",
"credit_offer_accept": "{account} borrows {amount} from credit offer",
"credit_offer_create": "{account} create a credit offer of {amount} with fee rate {fee}",
"credit_offer_delete": "{account} deleted credit offer {id}",
"credit_offer_update": "{account} update a credit offer {id}",
"fill_order_buy": "{account} bought {amount} at {price} for order #%(order)s",
"fill_order_sell": "{account} sold {amount} at {price} for order #%(order)s",
"htlc_create": "{from} locked {amount} for {to} to redeem until {lock_period}",
Expand All @@ -1815,16 +1815,16 @@
"limit_order_buy": "{account} placed order %(order)s to buy {amount} at {price}",
"limit_order_cancel": "{account} cancelled order #%(order)s",
"limit_order_sell": "{account} placed order %(order)s to sell {amount} at {price}",
"liquidity_pool_create": "{account} create a liquidity pool: {asset_a}-{asset_b}.",
"liquidity_pool_delete": "{account} deleted a liquidity pool #{id}.",
"liquidity_pool_deposit": "{account} add liquidity #{id}. paid {amount_a} and {amount_b}. received {received}.",
"liquidity_pool_exchange": "{account} seal the deal, paid {amount_a}, received {amount_b}.",
"liquidity_pool_withdraw": "{account} remove liquidity #{id}. paid {amount_c}. received {amount_a} and {amount_b}.",
"samet_fund_create": "{account} creates a flash loan of {amount}, fee rate: {fee}.",
"samet_fund_update": "{account} update flash loan #{id}.",
"samet_fund_delete": "{account} delete flash loan #{id}, get back {amount}.",
"samet_fund_borrow": "{account} lent {amount} from flash loan #{id}.",
"samet_fund_repay": "{account} repays flash loan #{id} {amount}, fee: {fee}.",
"liquidity_pool_create": "{account} created liquidity pool {id} with {asset_a} and {asset_b}",
"liquidity_pool_delete": "{account} deleted liquidity pool {id}",
"liquidity_pool_deposit": "{account} added liquidity {amount_a} and {amount_b} to liquidity pool {id}",
"liquidity_pool_exchange": "{account} exchanged {amount_a} for {amount_b} from liquidity pool {id}",
"liquidity_pool_withdraw": "{account} removed liquidity {amount_a} and {amount_b} from liquidity pool {id}",
"samet_fund_create": "{account} created flash loan of {amount} with fee rate {fee}",
"samet_fund_update": "{account} update flash loan {id}",
"samet_fund_delete": "{account} delete flash loan {id} with get back {amount}",
"samet_fund_borrow": "{account} lent {amount} from flash loan {id}",
"samet_fund_repay": "{account} repays flash loan {id} {amount} with fee {fee}",
"no_recent": "No recent transactions",
"override_transfer": "{issuer} transferred {amount} from {from} to {to}",
"pending": "pending %(blocks)s blocks",
Expand Down
4 changes: 4 additions & 0 deletions app/components/Blockchain/OperationAnt.js
Original file line number Diff line number Diff line change
Expand Up @@ -1724,6 +1724,10 @@ class Operation {
type: "asset",
value: op[1].asset_b,
arg: "asset_b"
},
{
value: result[1].new_objects[0],
arg: "id"
}
]}
/>
Expand Down

0 comments on commit e688229

Please sign in to comment.