Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New chains #12

Merged
merged 6 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update
  • Loading branch information
stxphxn committed Sep 10, 2024
commit 5e4fb1ccae5190bcb97473c4042bec80cefa3472
16 changes: 0 additions & 16 deletions tasks/scripts/20240823-swap-scripts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,4 @@ export default async (task: Task): Promise<void> => {
await vaultContract.batchSwap(0, swaps, [input.token1, input.token2], funds, limits, MAX_UINT256, { value: 0 })
).wait();
console.log('Swapped', swaps.length, 'times');

// const swaps2 = [];
// for (let i = 0; i < 10; i++) {
// swaps2.push({
// poolId: input.poolId,
// amount: '220000000000000000000',
// assetInIndex: 1,
// assetOutIndex: 0,
// userData: '0x',
// });
// }
// await (
// await vaultContract.batchSwap(0, swaps2, [input.token1, input.token2], funds, limits, MAX_UINT256, { value: 0 })
// ).wait();
// console.log('Swapped the opposite way', swaps.length, 'times');
//}
};
2 changes: 1 addition & 1 deletion tasks/scripts/collect-protocol-fees/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ProtocolFeesCollector = new Task('20210418-vault', TaskMode.READ_ONLY);

const TeamMultisig = '0xd82fEb2A7Cd2276B569472a4EeE501c02e07b27b';

const TreasuryMultisig = '0xBd8911e8477a7279f085F473f46A6b9AB54385E7';
const TreasuryMultisig = '0x598cb1316Ca33Adb7C75EC889778EF13D9A3B807';

const signer = '0x7255Db0d1C1B93Fb756157074fa0613Aa6878F31';

Expand Down
2 changes: 1 addition & 1 deletion tasks/scripts/update-pool-protocol-fees/input.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type updateProtocolFeePercentageCache = {
export type UpdateProtocolFeePercentageCache = {
signer: string;
pools: string[];
};
Expand Down