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

Fund faucets #327

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
39 changes: 0 additions & 39 deletions script/actions/fund-faucet.s.sol

This file was deleted.

80 changes: 80 additions & 0 deletions script/actions/fund-faucets.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import {KintoWalletFactory} from "@kinto-core/wallet/KintoWalletFactory.sol";
import {SponsorPaymaster} from "@kinto-core/paymasters/SponsorPaymaster.sol";
import {MigrationHelper} from "@kinto-core-script/utils/MigrationHelper.sol";
import {ArrayHelpers} from "@kinto-core-test/helpers/ArrayHelpers.sol";
import "forge-std/console2.sol";

contract FundFaucetsScript is MigrationHelper {
using ArrayHelpers for *;

address public constant FAUCET = 0x0719D47A213149E2Ef8d3f5afDaDA8a8E22dfc03;
address public constant WALLET_FUNDER = 0x4062E762EC9E2E70f40bd9586C18d1894966628F;
address public constant FAUCET_CLAIMER = 0x52F09693c9eEaA93A64BA697e3d3e43a1eB65477;
address public constant KYC_RELAYER = 0x6E31039abF8d248aBed57E307C9E1b7530c269E4;

address public constant DINARI = 0xB2eEc63Cdc175d6d07B8f69804C0Ab5F66aCC3cb;
address public constant KINTO_CORE = 0xD157904639E89df05e89e0DabeEC99aE3d74F9AA;
address public constant SOCKET_DL = 0x3e9727470C66B1e77034590926CDe0242B5A3dCc;

function run() public override {
super.run();

console2.log("Hot Wallet Balance: %e", deployer.balance);
if (deployer.balance < 0.25 ether) {
console2.log("Hot Wallet Balance too low. Refill.");
return;
}

console2.log("");
console2.log("Faucets");

address[4] memory faucets = [FAUCET, WALLET_FUNDER, FAUCET_CLAIMER, KYC_RELAYER];
string[4] memory names = ["FAUCET", "WALLET_FUNDER", "FAUCET_CLAIMER", "KYC_RELAYER"];
uint64[4] memory limits = [0.25 ether, 0.25 ether, 0.25 ether, 0.25 ether];
uint64[4] memory amounts = [0.25 ether, 0.25 ether, 0.25 ether, 0.25 ether];

KintoWalletFactory factory = KintoWalletFactory(_getChainDeployment("KintoWalletFactory"));
for (uint256 index = 0; index < faucets.length; index++) {
address faucet = faucets[index];
uint256 balance = faucet.balance;
console2.log("Faucet:", names[index]);
console2.log("Address:", faucets[index]);
console2.log("Balance: %e", balance);

if (balance < limits[index]) {
console2.log("Needs funding. Adding: %e", amounts[index]);

vm.broadcast(deployerPrivateKey);
factory.sendMoneyToAccount{value: amounts[index]}(faucet);
}
}

console2.log("");
console2.log("Apps");

address[3] memory apps = [KINTO_CORE, DINARI, SOCKET_DL];
string[3] memory appNames = ["KINTO_CORE", "DINARI", "SOCKET_DL"];
uint56[3] memory appLimits = [0.02 ether, 0.02 ether, 0.02 ether];
uint56[3] memory appAmounts = [0.01 ether, 0.01 ether, 0.01 ether];

SponsorPaymaster paymaster = SponsorPaymaster(_getChainDeployment("SponsorPaymaster"));
for (uint256 index = 0; index < apps.length; index++) {
address app = apps[index];
uint256 balance = paymaster.balances(app);

console2.log("App:", appNames[index]);
console2.log("Address:", app);
console2.log("Balance: %e", balance);

if (balance < appLimits[index]) {
console2.log("Needs funding. Adding: %e", appAmounts[index]);

vm.broadcast(deployerPrivateKey);
paymaster.addDepositFor{value: appAmounts[index]}(app);
}
}
}
}
Loading