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"
]
}
}
}
}}
Submitted on: 2025-11-06 20:49:12
Comments
Log in to comment.
No comments yet.