FlashLoan

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "contracts/periphery/FlashLoan.sol": {
      "content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;


contract FlashLoan {
    uint256 public feeBps = 9; // 0.09%
    event Borrow(address indexed borrower, address token, uint256 amount);
    function setFee(uint256 newFeeBps) external { feeBps = newFeeBps; }
    function borrow(address token, uint256 amount) external {
        emit Borrow(msg.sender, token, amount);
    }
}
"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": true,
      "runs": 500
    },
    "evmVersion": "paris",
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    }
  }
}}

Tags:
Factory|addr:0x628cb0860267c7c2c6629e5ed7f2558017fcf611|verified:true|block:23742182|tx:0x0b2b6baf0eb8fa44b5ae27c3f524852624a92545e25cb406dd0ff865fb321abf|first_check:1762459197

Submitted on: 2025-11-06 20:59:58

Comments

Log in to comment.

No comments yet.