Skip to content

Commit

Permalink
change eth-sol fees to 0.1%
Browse files Browse the repository at this point in the history
  • Loading branch information
taureau75 committed Jun 15, 2023
1 parent 86de788 commit aa3b990
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/components/bridge/Bridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ function Bridge() {
<div className="flex justify-between">

<p className="text-[#88818C] ">Trading Fee</p>
<span className="text-[#88818C]">0.2%</span>
<span className="text-[#88818C]">0.1%</span>
</div>

<div className="flex justify-between">
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/bridge/tokenSelector/TokenSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const evmTokenItems = [
priceKey: "eth_usd",
maxSize: 1,
minSize: 0.004,
networkFee: 0.002
networkFee: 0.0015
},
//{
// name: "USDC",
Expand Down
2 changes: 1 addition & 1 deletion scripts/eth_sol/eth_pay.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ethersProvider = new ethers.providers.InfuraProvider(
);
const ethWallet = new ethers.Wallet(process.env.ETH_PRIVKEY, ethersProvider);

const FEE_MULTIPLIER = 0.998
const FEE_MULTIPLIER = 0.999

makePayments()

Expand Down
2 changes: 1 addition & 1 deletion scripts/eth_sol/sol_pay.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const connection = new Connection(

makePayments()

const FEE_MULTIPLIER = 0.998
const FEE_MULTIPLIER = 0.999

async function makePayments () {
const result = await db.query("SELECT * FROM bridges WHERE paid=false AND outgoing_currency = 'SOL' AND outgoing_address IS NOT NULL AND deposit_currency='ETH'");
Expand Down

1 comment on commit aa3b990

@vercel
Copy link

@vercel vercel bot commented on aa3b990 Jun 15, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.