More Info
Private Name Tags
ContractCreator
Latest 6 from a total of 6 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Donatio... | 20514245 | 133 days ago | IN | 0 ETH | 0.00025298 | ||||
Withdraw Donatio... | 20514241 | 133 days ago | IN | 0 ETH | 0.00030421 | ||||
Withdraw Donatio... | 20514180 | 133 days ago | IN | 0 ETH | 0.00024757 | ||||
Withdraw Donatio... | 20170338 | 181 days ago | IN | 0 ETH | 0.00026962 | ||||
Withdraw Donatio... | 20170336 | 181 days ago | IN | 0 ETH | 0.00039194 | ||||
Withdraw Donatio... | 20170333 | 181 days ago | IN | 0 ETH | 0.00039756 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21013236 | 63 days ago | 0.00490703 ETH | ||||
21012593 | 63 days ago | 0.00863444 ETH | ||||
21007864 | 64 days ago | 0.00243659 ETH | ||||
21005564 | 64 days ago | 0.00247885 ETH | ||||
21004347 | 64 days ago | 0.00213349 ETH | ||||
21003774 | 65 days ago | 0.00875717 ETH | ||||
21002852 | 65 days ago | 0.00266513 ETH | ||||
21002515 | 65 days ago | 0.00272884 ETH | ||||
21001950 | 65 days ago | 0.00821285 ETH | ||||
20995250 | 66 days ago | 0.00308828 ETH | ||||
20993236 | 66 days ago | 0.0028 ETH | ||||
20984426 | 67 days ago | 0.0016 ETH | ||||
20984375 | 67 days ago | 0.01192505 ETH | ||||
20982677 | 67 days ago | 0.00281451 ETH | ||||
20973624 | 69 days ago | 0.02409006 ETH | ||||
20973584 | 69 days ago | 0.00387235 ETH | ||||
20973172 | 69 days ago | 0.00693462 ETH | ||||
20969551 | 69 days ago | 0.006 ETH | ||||
20969539 | 69 days ago | 0.011 ETH | ||||
20969534 | 69 days ago | 0.019 ETH | ||||
20969514 | 69 days ago | 0.0052 ETH | ||||
20969460 | 69 days ago | 0.009 ETH | ||||
20951240 | 72 days ago | 0.00795507 ETH | ||||
20948143 | 72 days ago | 0.00166232 ETH | ||||
20945006 | 73 days ago | 0.01199902 ETH |
Loading...
Loading
Contract Name:
DonateLocal
Compiler Version
v0.8.22+commit.4fc1097e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.22; import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { DonateCore, Currency } from "./DonateCore.sol"; /** * @title DonateLocal * @dev To be deployed on Ethereum */ contract DonateLocal is DonateCore { using SafeERC20 for IERC20; constructor( address _donationReceiver, address _stargateUsdc, address _stargateUsdt, address _stargateNative ) DonateCore(_donationReceiver, _stargateUsdc, _stargateUsdt, _stargateNative) {} // Permissionless function that allows anyone to move donations to the donation receiver // minAmount is unused because this is only necessary for remote contracts that use stargate to migrate funds function withdrawDonation(Currency _currency, uint256 /*_minAmount*/) external payable { if (msg.value != 0) revert UnexpectedMsgValue(); uint256 donationAmount; // Only allowed to move the donations to the donation receiver // can only be done to move all funds, no partial sends if (_currency == Currency.USDC && stargateUsdc != address(0)) { donationAmount = tokenUsdc.balanceOf(address(this)); tokenUsdc.safeTransfer(donationReceiver, donationAmount); } else if (_currency == Currency.USDT && stargateUsdt != address(0)) { donationAmount = tokenUsdt.balanceOf(address(this)); tokenUsdt.safeTransfer(donationReceiver, donationAmount); } else if (_currency == Currency.Native && stargateNative != address(0)) { donationAmount = address(this).balance; (bool sent, ) = payable(donationReceiver).call{ value: donationAmount }(""); if (!sent) revert WithdrawDonationFailed(); } else { // sanity just in case somehow a different currency is somehow passed revert UnsupportedCurrency(_currency); } emit DonationWithdrawn(_currency, donationReceiver, donationAmount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { IOAppCore, ILayerZeroEndpointV2 } from "./interfaces/IOAppCore.sol"; /** * @title OAppCore * @dev Abstract contract implementing the IOAppCore interface with basic OApp configurations. */ abstract contract OAppCore is IOAppCore, Ownable { // The LayerZero endpoint associated with the given OApp ILayerZeroEndpointV2 public immutable endpoint; // Mapping to store peers associated with corresponding endpoints mapping(uint32 eid => bytes32 peer) public peers; /** * @dev Constructor to initialize the OAppCore with the provided endpoint and delegate. * @param _endpoint The address of the LOCAL Layer Zero endpoint. * @param _delegate The delegate capable of making OApp configurations inside of the endpoint. * * @dev The delegate typically should be set as the owner of the contract. */ constructor(address _endpoint, address _delegate) { endpoint = ILayerZeroEndpointV2(_endpoint); if (_delegate == address(0)) revert InvalidDelegate(); endpoint.setDelegate(_delegate); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Only the owner/admin of the OApp can call this function. * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function setPeer(uint32 _eid, bytes32 _peer) public virtual onlyOwner { _setPeer(_eid, _peer); } /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. * * @dev Indicates that the peer is trusted to send LayerZero messages to this OApp. * @dev Set this to bytes32(0) to remove the peer address. * @dev Peer is a bytes32 to accommodate non-evm chains. */ function _setPeer(uint32 _eid, bytes32 _peer) internal virtual { peers[_eid] = _peer; emit PeerSet(_eid, _peer); } /** * @notice Internal function to get the peer address associated with a specific endpoint; reverts if NOT set. * ie. the peer is set to bytes32(0). * @param _eid The endpoint ID. * @return peer The address of the peer associated with the specified endpoint. */ function _getPeerOrRevert(uint32 _eid) internal view virtual returns (bytes32) { bytes32 peer = peers[_eid]; if (peer == bytes32(0)) revert NoPeer(_eid); return peer; } /** * @notice Sets the delegate address for the OApp. * @param _delegate The address of the delegate to be set. * * @dev Only the owner/admin of the OApp can call this function. * @dev Provides the ability for a delegate to set configs, on behalf of the OApp, directly on the Endpoint contract. */ function setDelegate(address _delegate) public onlyOwner { endpoint.setDelegate(_delegate); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { MessagingParams, MessagingFee, MessagingReceipt } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol"; import { OAppCore } from "./OAppCore.sol"; /** * @title OAppSender * @dev Abstract contract implementing the OAppSender functionality for sending messages to a LayerZero endpoint. */ abstract contract OAppSender is OAppCore { using SafeERC20 for IERC20; // Custom error messages error NotEnoughNative(uint256 msgValue); error LzTokenUnavailable(); // @dev The version of the OAppSender implementation. // @dev Version is bumped when changes are made to this contract. uint64 internal constant SENDER_VERSION = 1; /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. * * @dev Providing 0 as the default for OAppReceiver version. Indicates that the OAppReceiver is not implemented. * ie. this is a SEND only OApp. * @dev If the OApp uses both OAppSender and OAppReceiver, then this needs to be override returning the correct versions */ function oAppVersion() public view virtual returns (uint64 senderVersion, uint64 receiverVersion) { return (SENDER_VERSION, 0); } /** * @dev Internal function to interact with the LayerZero EndpointV2.quote() for fee calculation. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _payInLzToken Flag indicating whether to pay the fee in LZ tokens. * @return fee The calculated MessagingFee for the message. * - nativeFee: The native fee for the message. * - lzTokenFee: The LZ token fee for the message. */ function _quote( uint32 _dstEid, bytes memory _message, bytes memory _options, bool _payInLzToken ) internal view virtual returns (MessagingFee memory fee) { return endpoint.quote( MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _payInLzToken), address(this) ); } /** * @dev Internal function to interact with the LayerZero EndpointV2.send() for sending a message. * @param _dstEid The destination endpoint ID. * @param _message The message payload. * @param _options Additional options for the message. * @param _fee The calculated LayerZero fee for the message. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess fee values sent to the endpoint. * @return receipt The receipt for the sent message. * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function _lzSend( uint32 _dstEid, bytes memory _message, bytes memory _options, MessagingFee memory _fee, address _refundAddress ) internal virtual returns (MessagingReceipt memory receipt) { // @dev Push corresponding fees to the endpoint, any excess is sent back to the _refundAddress from the endpoint. uint256 messageValue = _payNative(_fee.nativeFee); if (_fee.lzTokenFee > 0) _payLzToken(_fee.lzTokenFee); return // solhint-disable-next-line check-send-result endpoint.send{ value: messageValue }( MessagingParams(_dstEid, _getPeerOrRevert(_dstEid), _message, _options, _fee.lzTokenFee > 0), _refundAddress ); } /** * @dev Internal function to pay the native fee associated with the message. * @param _nativeFee The native fee to be paid. * @return nativeFee The amount of native currency paid. * * @dev If the OApp needs to initiate MULTIPLE LayerZero messages in a single transaction, * this will need to be overridden because msg.value would contain multiple lzFees. * @dev Should be overridden in the event the LayerZero endpoint requires a different native currency. * @dev Some EVMs use an ERC20 as a method for paying transactions/gasFees. * @dev The endpoint is EITHER/OR, ie. it will NOT support both types of native payment at a time. */ function _payNative(uint256 _nativeFee) internal virtual returns (uint256 nativeFee) { if (msg.value != _nativeFee) revert NotEnoughNative(msg.value); return _nativeFee; } /** * @dev Internal function to pay the LZ token fee associated with the message. * @param _lzTokenFee The LZ token fee to be paid. * * @dev If the caller is trying to pay in the specified lzToken, then the lzTokenFee is passed to the endpoint. * @dev Any excess sent, is passed back to the specified _refundAddress in the _lzSend(). */ function _payLzToken(uint256 _lzTokenFee) internal virtual { // @dev Cannot cache the token because it is not immutable in the endpoint. address lzToken = endpoint.lzToken(); if (lzToken == address(0)) revert LzTokenUnavailable(); // Pay LZ token fee by sending tokens to the endpoint. IERC20(lzToken).safeTransferFrom(msg.sender, address(endpoint), _lzTokenFee); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { ILayerZeroEndpointV2 } from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/ILayerZeroEndpointV2.sol"; /** * @title IOAppCore */ interface IOAppCore { // Custom error messages error OnlyPeer(uint32 eid, bytes32 sender); error NoPeer(uint32 eid); error InvalidEndpointCall(); error InvalidDelegate(); // Event emitted when a peer (OApp) is set for a corresponding endpoint event PeerSet(uint32 eid, bytes32 peer); /** * @notice Retrieves the OApp version information. * @return senderVersion The version of the OAppSender.sol contract. * @return receiverVersion The version of the OAppReceiver.sol contract. */ function oAppVersion() external view returns (uint64 senderVersion, uint64 receiverVersion); /** * @notice Retrieves the LayerZero endpoint associated with the OApp. * @return iEndpoint The LayerZero endpoint as an interface. */ function endpoint() external view returns (ILayerZeroEndpointV2 iEndpoint); /** * @notice Retrieves the peer (OApp) associated with a corresponding endpoint. * @param _eid The endpoint ID. * @return peer The peer address (OApp instance) associated with the corresponding endpoint. */ function peers(uint32 _eid) external view returns (bytes32 peer); /** * @notice Sets the peer address (OApp instance) for a corresponding endpoint. * @param _eid The endpoint ID. * @param _peer The address of the peer to be associated with the corresponding endpoint. */ function setPeer(uint32 _eid, bytes32 _peer) external; /** * @notice Sets the delegate address for the OApp Core. * @param _delegate The address of the delegate to be set. */ function setDelegate(address _delegate) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { MessagingReceipt, MessagingFee } from "../../oapp/OAppSender.sol"; /** * @dev Struct representing token parameters for the OFT send() operation. */ struct SendParam { uint32 dstEid; // Destination endpoint ID. bytes32 to; // Recipient address. uint256 amountLD; // Amount to send in local decimals. uint256 minAmountLD; // Minimum amount to send in local decimals. bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message. bytes composeMsg; // The composed message for the send() operation. bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations. } /** * @dev Struct representing OFT limit information. * @dev These amounts can change dynamically and are up the the specific oft implementation. */ struct OFTLimit { uint256 minAmountLD; // Minimum amount in local decimals that can be sent to the recipient. uint256 maxAmountLD; // Maximum amount in local decimals that can be sent to the recipient. } /** * @dev Struct representing OFT receipt information. */ struct OFTReceipt { uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals. // @dev In non-default implementations, the amountReceivedLD COULD differ from this value. uint256 amountReceivedLD; // Amount of tokens to be received on the remote side. } /** * @dev Struct representing OFT fee details. * @dev Future proof mechanism to provide a standardized way to communicate fees to things like a UI. */ struct OFTFeeDetail { int256 feeAmountLD; // Amount of the fee in local decimals. string description; // Description of the fee. } /** * @title IOFT * @dev Interface for the OftChain (OFT) token. * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well. * @dev This specific interface ID is '0x02e49c2c'. */ interface IOFT { // Custom error messages error InvalidLocalDecimals(); error SlippageExceeded(uint256 amountLD, uint256 minAmountLD); // Events event OFTSent( bytes32 indexed guid, // GUID of the OFT message. uint32 dstEid, // Destination Endpoint ID. address indexed fromAddress, // Address of the sender on the src chain. uint256 amountSentLD, // Amount of tokens sent in local decimals. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); event OFTReceived( bytes32 indexed guid, // GUID of the OFT message. uint32 srcEid, // Source Endpoint ID. address indexed toAddress, // Address of the recipient on the dst chain. uint256 amountReceivedLD // Amount of tokens received in local decimals. ); /** * @notice Retrieves interfaceID and the version of the OFT. * @return interfaceId The interface ID. * @return version The version. * * @dev interfaceId: This specific interface ID is '0x02e49c2c'. * @dev version: Indicates a cross-chain compatible msg encoding with other OFTs. * @dev If a new feature is added to the OFT cross-chain msg encoding, the version will be incremented. * ie. localOFT version(x,1) CAN send messages to remoteOFT version(x,1) */ function oftVersion() external view returns (bytes4 interfaceId, uint64 version); /** * @notice Retrieves the address of the token associated with the OFT. * @return token The address of the ERC20 token implementation. */ function token() external view returns (address); /** * @notice Indicates whether the OFT contract requires approval of the 'token()' to send. * @return requiresApproval Needs approval of the underlying token implementation. * * @dev Allows things like wallet implementers to determine integration requirements, * without understanding the underlying token implementation. */ function approvalRequired() external view returns (bool); /** * @notice Retrieves the shared decimals of the OFT. * @return sharedDecimals The shared decimals of the OFT. */ function sharedDecimals() external view returns (uint8); /** * @notice Provides a quote for OFT-related operations. * @param _sendParam The parameters for the send operation. * @return limit The OFT limit information. * @return oftFeeDetails The details of OFT fees. * @return receipt The OFT receipt information. */ function quoteOFT( SendParam calldata _sendParam ) external view returns (OFTLimit memory, OFTFeeDetail[] memory oftFeeDetails, OFTReceipt memory); /** * @notice Provides a quote for the send() operation. * @param _sendParam The parameters for the send() operation. * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token. * @return fee The calculated LayerZero messaging fee from the send() operation. * * @dev MessagingFee: LayerZero msg fee * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. */ function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory); /** * @notice Executes the send() operation. * @param _sendParam The parameters for the send operation. * @param _fee The fee information supplied by the caller. * - nativeFee: The native fee. * - lzTokenFee: The lzToken fee. * @param _refundAddress The address to receive any excess funds from fees etc. on the src. * @return receipt The LayerZero messaging receipt from the send() operation. * @return oftReceipt The OFT receipt information. * * @dev MessagingReceipt: LayerZero msg receipt * - guid: The unique identifier for the sent message. * - nonce: The nonce of the sent message. * - fee: The LayerZero fee incurred for the message. */ function send( SendParam calldata _sendParam, MessagingFee calldata _fee, address _refundAddress ) external payable returns (MessagingReceipt memory, OFTReceipt memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import { IMessageLibManager } from "./IMessageLibManager.sol"; import { IMessagingComposer } from "./IMessagingComposer.sol"; import { IMessagingChannel } from "./IMessagingChannel.sol"; import { IMessagingContext } from "./IMessagingContext.sol"; struct MessagingParams { uint32 dstEid; bytes32 receiver; bytes message; bytes options; bool payInLzToken; } struct MessagingReceipt { bytes32 guid; uint64 nonce; MessagingFee fee; } struct MessagingFee { uint256 nativeFee; uint256 lzTokenFee; } struct Origin { uint32 srcEid; bytes32 sender; uint64 nonce; } interface ILayerZeroEndpointV2 is IMessageLibManager, IMessagingComposer, IMessagingChannel, IMessagingContext { event PacketSent(bytes encodedPayload, bytes options, address sendLibrary); event PacketVerified(Origin origin, address receiver, bytes32 payloadHash); event PacketDelivered(Origin origin, address receiver); event LzReceiveAlert( address indexed receiver, address indexed executor, Origin origin, bytes32 guid, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); event LzTokenSet(address token); event DelegateSet(address sender, address delegate); function quote(MessagingParams calldata _params, address _sender) external view returns (MessagingFee memory); function send( MessagingParams calldata _params, address _refundAddress ) external payable returns (MessagingReceipt memory); function verify(Origin calldata _origin, address _receiver, bytes32 _payloadHash) external; function verifiable(Origin calldata _origin, address _receiver) external view returns (bool); function initializable(Origin calldata _origin, address _receiver) external view returns (bool); function lzReceive( Origin calldata _origin, address _receiver, bytes32 _guid, bytes calldata _message, bytes calldata _extraData ) external payable; // oapp can burn messages partially by calling this function with its own business logic if messages are verified in order function clear(address _oapp, Origin calldata _origin, bytes32 _guid, bytes calldata _message) external; function setLzToken(address _lzToken) external; function lzToken() external view returns (address); function nativeToken() external view returns (address); function setDelegate(address _delegate) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; struct SetConfigParam { uint32 eid; uint32 configType; bytes config; } interface IMessageLibManager { struct Timeout { address lib; uint256 expiry; } event LibraryRegistered(address newLib); event DefaultSendLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibrarySet(uint32 eid, address newLib); event DefaultReceiveLibraryTimeoutSet(uint32 eid, address oldLib, uint256 expiry); event SendLibrarySet(address sender, uint32 eid, address newLib); event ReceiveLibrarySet(address receiver, uint32 eid, address newLib); event ReceiveLibraryTimeoutSet(address receiver, uint32 eid, address oldLib, uint256 timeout); function registerLibrary(address _lib) external; function isRegisteredLibrary(address _lib) external view returns (bool); function getRegisteredLibraries() external view returns (address[] memory); function setDefaultSendLibrary(uint32 _eid, address _newLib) external; function defaultSendLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibrary(uint32 _eid, address _newLib, uint256 _gracePeriod) external; function defaultReceiveLibrary(uint32 _eid) external view returns (address); function setDefaultReceiveLibraryTimeout(uint32 _eid, address _lib, uint256 _expiry) external; function defaultReceiveLibraryTimeout(uint32 _eid) external view returns (address lib, uint256 expiry); function isSupportedEid(uint32 _eid) external view returns (bool); function isValidReceiveLibrary(address _receiver, uint32 _eid, address _lib) external view returns (bool); /// ------------------- OApp interfaces ------------------- function setSendLibrary(address _oapp, uint32 _eid, address _newLib) external; function getSendLibrary(address _sender, uint32 _eid) external view returns (address lib); function isDefaultSendLibrary(address _sender, uint32 _eid) external view returns (bool); function setReceiveLibrary(address _oapp, uint32 _eid, address _newLib, uint256 _gracePeriod) external; function getReceiveLibrary(address _receiver, uint32 _eid) external view returns (address lib, bool isDefault); function setReceiveLibraryTimeout(address _oapp, uint32 _eid, address _lib, uint256 _expiry) external; function receiveLibraryTimeout(address _receiver, uint32 _eid) external view returns (address lib, uint256 expiry); function setConfig(address _oapp, address _lib, SetConfigParam[] calldata _params) external; function getConfig( address _oapp, address _lib, uint32 _eid, uint32 _configType ) external view returns (bytes memory config); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingChannel { event InboundNonceSkipped(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce); event PacketNilified(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); event PacketBurnt(uint32 srcEid, bytes32 sender, address receiver, uint64 nonce, bytes32 payloadHash); function eid() external view returns (uint32); // this is an emergency function if a message cannot be verified for some reasons // required to provide _nextNonce to avoid race condition function skip(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce) external; function nilify(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function burn(address _oapp, uint32 _srcEid, bytes32 _sender, uint64 _nonce, bytes32 _payloadHash) external; function nextGuid(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (bytes32); function inboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); function outboundNonce(address _sender, uint32 _dstEid, bytes32 _receiver) external view returns (uint64); function inboundPayloadHash( address _receiver, uint32 _srcEid, bytes32 _sender, uint64 _nonce ) external view returns (bytes32); function lazyInboundNonce(address _receiver, uint32 _srcEid, bytes32 _sender) external view returns (uint64); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingComposer { event ComposeSent(address from, address to, bytes32 guid, uint16 index, bytes message); event ComposeDelivered(address from, address to, bytes32 guid, uint16 index); event LzComposeAlert( address indexed from, address indexed to, address indexed executor, bytes32 guid, uint16 index, uint256 gas, uint256 value, bytes message, bytes extraData, bytes reason ); function composeQueue( address _from, address _to, bytes32 _guid, uint16 _index ) external view returns (bytes32 messageHash); function sendCompose(address _to, bytes32 _guid, uint16 _index, bytes calldata _message) external; function lzCompose( address _from, address _to, bytes32 _guid, uint16 _index, bytes calldata _message, bytes calldata _extraData ) external payable; }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; interface IMessagingContext { function isSendingMessage() external view returns (bool); function getSendContext() external view returns (uint32 dstEid, address sender); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.22; import { SafeERC20, IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; // solhint-disable-next-line no-unused-import import { IOFT, SendParam } from "@layerzerolabs/lz-evm-oapp-v2/contracts/oft/interfaces/IOFT.sol"; import { IDonate, Donation, Currency } from "./IDonate.sol"; /** * @title DonateCore */ abstract contract DonateCore is IDonate { using SafeERC20 for IERC20; address public immutable donationReceiver; // stargate instances that will be used to move donations in the event this is inherited by the DonateRemote.sol address public immutable stargateUsdc; address public immutable stargateUsdt; address public immutable stargateNative; IERC20 public immutable tokenUsdc; IERC20 public immutable tokenUsdt; // Keep track of user donations mapping(address stargate => mapping(address user => uint256 amountDonated)) public donations; // We pass stargate to ensure there is no config mismatch with regards to stargate and corresponding token address constructor(address _donationReceiver, address _stargateUsdc, address _stargateUsdt, address _stargateNative) { // The end address whom receives the donations collected in this contract if (_donationReceiver == address(0)) revert InvalidDonationReceiver(); donationReceiver = _donationReceiver; if (_stargateUsdc != address(0)) { stargateUsdc = _stargateUsdc; tokenUsdc = IERC20(IOFT(stargateUsdc).token()); } if (_stargateUsdt != address(0)) { stargateUsdt = _stargateUsdt; tokenUsdt = IERC20(IOFT(stargateUsdt).token()); } // There is no token for native because donations are only accepted in native, eg. NOT 'WETH' if (_stargateNative != address(0)) { stargateNative = _stargateNative; if (IOFT(stargateNative).token() != address(0)) { revert InvalidNativeStargate(); } } } // returns the donation amounts for a given user function getDonation(address _user) external view returns (Donation memory) { return Donation(donations[stargateUsdc][_user], donations[stargateUsdt][_user], donations[stargateNative][_user]); } // Donate either USDC, USDT or Native depending if its supported on the chain // Allowed to specify a beneficiary in the event you want to donate on the behalf of someone else function donate(Currency _currency, uint256 _amount, address _beneficiary) external payable { if (_currency == Currency.USDC && stargateUsdc != address(0)) { if (msg.value != 0) revert UnexpectedMsgValue(); tokenUsdc.safeTransferFrom(msg.sender, address(this), _amount); donations[stargateUsdc][_beneficiary] += _amount; } else if (_currency == Currency.USDT && stargateUsdt != address(0)) { if (msg.value != 0) revert UnexpectedMsgValue(); tokenUsdt.safeTransferFrom(msg.sender, address(this), _amount); donations[stargateUsdt][_beneficiary] += _amount; } else if (_currency == Currency.Native && stargateNative != address(0)) { if (msg.value != _amount) revert InsufficientMsgValue(); donations[stargateNative][_beneficiary] += _amount; } else { // sanity just in case somehow a different currency is somehow passed revert UnsupportedCurrency(_currency); } emit Donated(_currency, msg.sender, _beneficiary, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.22; enum Currency { USDC, USDT, Native } struct Donation { uint256 usdc; uint256 usdt; uint256 native; } interface IDonate { // Custom Errors error InsufficientMsgValue(); error InsufficientBalance(); error UnsupportedCurrency(Currency currency); error WithdrawDonationFailed(); error InvalidNativeStargate(); error InvalidDonationReceiver(); error UnexpectedMsgValue(); // Events event Donated(Currency currency, address from, address beneficiary, uint256 amount); event DonationWithdrawn(Currency currency, address to, uint256 amount); // Functions function getDonation(address user) external view returns (Donation memory donation); function withdrawDonation(Currency currency, uint256 minAmount) external payable; function donate(Currency currency, uint256 amount, address beneficiary) external payable; }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_donationReceiver","type":"address"},{"internalType":"address","name":"_stargateUsdc","type":"address"},{"internalType":"address","name":"_stargateUsdt","type":"address"},{"internalType":"address","name":"_stargateNative","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InsufficientMsgValue","type":"error"},{"inputs":[],"name":"InvalidDonationReceiver","type":"error"},{"inputs":[],"name":"InvalidNativeStargate","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UnexpectedMsgValue","type":"error"},{"inputs":[{"internalType":"enum Currency","name":"currency","type":"uint8"}],"name":"UnsupportedCurrency","type":"error"},{"inputs":[],"name":"WithdrawDonationFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum Currency","name":"currency","type":"uint8"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Donated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum Currency","name":"currency","type":"uint8"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DonationWithdrawn","type":"event"},{"inputs":[{"internalType":"enum Currency","name":"_currency","type":"uint8"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"donationReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stargate","type":"address"},{"internalType":"address","name":"user","type":"address"}],"name":"donations","outputs":[{"internalType":"uint256","name":"amountDonated","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getDonation","outputs":[{"components":[{"internalType":"uint256","name":"usdc","type":"uint256"},{"internalType":"uint256","name":"usdt","type":"uint256"},{"internalType":"uint256","name":"native","type":"uint256"}],"internalType":"struct Donation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateNative","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateUsdc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateUsdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenUsdc","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenUsdt","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Currency","name":"_currency","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawDonation","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b50604051620012ab380380620012ab83398101604081905262000035916200025c565b838383836001600160a01b0384166200006157604051638bf7cd9560e01b815260040160405180910390fd5b6001600160a01b03808516608052831615620000f6576001600160a01b03831660a081905260408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa158015620000c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000e89190620002b9565b6001600160a01b0316610100525b6001600160a01b0382161562000185576001600160a01b03821660c081905260408051637e062a3560e11b8152905163fc0c546a916004808201926020929091908290030181865afa15801562000151573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001779190620002b9565b6001600160a01b0316610120525b6001600160a01b0381161562000231576001600160a01b03811660e081905260408051637e062a3560e11b815290516000929163fc0c546a9160048083019260209291908290030181865afa158015620001e3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002099190620002b9565b6001600160a01b0316146200023157604051630692f76560e01b815260040160405180910390fd5b5050505050505050620002de565b80516001600160a01b03811681146200025757600080fd5b919050565b600080600080608085870312156200027357600080fd5b6200027e856200023f565b93506200028e602086016200023f565b92506200029e604086016200023f565b9150620002ae606086016200023f565b905092959194509250565b600060208284031215620002cc57600080fd5b620002d7826200023f565b9392505050565b60805160a05160c05160e0516101005161012051610ee5620003c66000396000818161017001528181610538015281816105ba01526108ec01526000818161022f015281816104070152818161048901526107ea0152600081816101fb015281816103480152818161061f0152818161098701526109e101526000818161027601528181610310015281816104f301528181610890015261091e01526000818160a8015281816102d1015281816103c20152818161078e015261081c01526000818160f9015281816104ab015281816105dc0152818161065601526107340152610ee56000f3fe6080604052600436106100915760003560e01c806346d7ce371161005957806346d7ce37146101d45780639104ab83146101e957806395e5922c1461021d578063cd13974214610251578063fd3072721461026457600080fd5b806317134a5814610096578063213ea6bb146100e757806336a0abcb1461011b5780633b7acec61461015e578063410a1d3214610192575b600080fd5b3480156100a257600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100f357600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b34801561012757600080fd5b50610150610136366004610cbe565b600060208181529281526040808220909352908152205481565b6040519081526020016100de565b34801561016a57600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b34801561019e57600080fd5b506101b26101ad366004610cf1565b610298565b60408051825181526020808401519082015291810151908201526060016100de565b6101e76101e2366004610d1b565b610384565b005b3480156101f557600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b34801561022957600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b6101e761025f366004610d45565b610770565b34801561027057600080fd5b506100ca7f000000000000000000000000000000000000000000000000000000000000000081565b6102bc60405180606001604052806000815260200160008152602001600081525090565b50604080516060810182526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600090815260208181528482209583168083529581528482205484527f000000000000000000000000000000000000000000000000000000000000000083168252818152848220868352815284822054818501527f0000000000000000000000000000000000000000000000000000000000000000909216815280825283812094815293905291819020549082015290565b34156103a35760405163bd28e88960e01b815260040160405180910390fd5b6000808360028111156103b8576103b8610d81565b1480156103ed57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156104d5576040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047a9190610d97565b90506104d06001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083610a61565b610710565b60018360028111156104e9576104e9610d81565b14801561051e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b15610601576040516370a0823160e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab9190610d97565b90506104d06001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083610a61565b600283600281111561061557610615610d81565b14801561064a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156106ec5747905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168260405160006040518083038185875af1925050503d80600081146106bf576040519150601f19603f3d011682016040523d82523d6000602084013e6106c4565b606091505b50509050806106e65760405163f2fde46160e01b815260040160405180910390fd5b50610710565b8260405163de0a0bd160e01b81526004016107079190610dd2565b60405180910390fd5b7f1b49ef1f9ba04901621f39b8fe69af48e9bd581c094e785f268297f667dbf229837f00000000000000000000000000000000000000000000000000000000000000008360405161076393929190610de0565b60405180910390a1505050565b600083600281111561078457610784610d81565b1480156107b957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156108725734156107dd5760405163bd28e88960e01b815260040160405180910390fd5b6108126001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085610ac5565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b90915550610a2c9050565b600183600281111561088657610886610d81565b1480156108bb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156109695734156108df5760405163bd28e88960e01b815260040160405180910390fd5b6109146001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085610ac5565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b600283600281111561097d5761097d610d81565b1480156109b257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615155b156106ec578134146109d757604051633c79c7bb60e11b815260040160405180910390fd5b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b7fa7c13646a84823baec5e7033cc38cf2fb367229e7ae4af5306f9c922a95ccbd6833383856040516107639493929190610e29565b6040516001600160a01b03838116602483015260448201839052610ac091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610b04565b505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610afe9186918216906323b872dd90608401610a8e565b50505050565b6000610b196001600160a01b03841683610b67565b90508051600014158015610b3e575080806020019051810190610b3c9190610e5e565b155b15610ac057604051635274afe760e01b81526001600160a01b0384166004820152602401610707565b6060610b7583836000610b7e565b90505b92915050565b606081471015610ba35760405163cd78605960e01b8152306004820152602401610707565b600080856001600160a01b03168486604051610bbf9190610e80565b60006040518083038185875af1925050503d8060008114610bfc576040519150601f19603f3d011682016040523d82523d6000602084013e610c01565b606091505b5091509150610c11868383610c1d565b925050505b9392505050565b606082610c3257610c2d82610c79565b610c16565b8151158015610c4957506001600160a01b0384163b155b15610c7257604051639996b31560e01b81526001600160a01b0385166004820152602401610707565b5080610c16565b805115610c895780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610cb957600080fd5b919050565b60008060408385031215610cd157600080fd5b610cda83610ca2565b9150610ce860208401610ca2565b90509250929050565b600060208284031215610d0357600080fd5b610b7582610ca2565b803560038110610cb957600080fd5b60008060408385031215610d2e57600080fd5b610d3783610d0c565b946020939093013593505050565b600080600060608486031215610d5a57600080fd5b610d6384610d0c565b925060208401359150610d7860408501610ca2565b90509250925092565b634e487b7160e01b600052602160045260246000fd5b600060208284031215610da957600080fd5b5051919050565b60038110610dce57634e487b7160e01b600052602160045260246000fd5b9052565b60208101610b788284610db0565b60608101610dee8286610db0565b6001600160a01b0393909316602082015260400152919050565b80820180821115610b7857634e487b7160e01b600052601160045260246000fd5b60808101610e378287610db0565b6001600160a01b039485166020830152929093166040840152606090920191909152919050565b600060208284031215610e7057600080fd5b81518015158114610c1657600080fd5b6000825160005b81811015610ea15760208186018101518583015201610e87565b50600092019182525091905056fea2646970667358221220d45c150b65013eb6ef7f23013d89360a37c68b03cda98a85918faea80315cdc664736f6c6343000816003300000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e9000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c7000000000000000000000000933597a323eb81cae705c5bc29985172fd5a397300000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce57931
Deployed Bytecode
0x6080604052600436106100915760003560e01c806346d7ce371161005957806346d7ce37146101d45780639104ab83146101e957806395e5922c1461021d578063cd13974214610251578063fd3072721461026457600080fd5b806317134a5814610096578063213ea6bb146100e757806336a0abcb1461011b5780633b7acec61461015e578063410a1d3214610192575b600080fd5b3480156100a257600080fd5b506100ca7f000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c781565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156100f357600080fd5b506100ca7f00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e981565b34801561012757600080fd5b50610150610136366004610cbe565b600060208181529281526040808220909352908152205481565b6040519081526020016100de565b34801561016a57600080fd5b506100ca7f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec781565b34801561019e57600080fd5b506101b26101ad366004610cf1565b610298565b60408051825181526020808401519082015291810151908201526060016100de565b6101e76101e2366004610d1b565b610384565b005b3480156101f557600080fd5b506100ca7f00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce5793181565b34801561022957600080fd5b506100ca7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b6101e761025f366004610d45565b610770565b34801561027057600080fd5b506100ca7f000000000000000000000000933597a323eb81cae705c5bc29985172fd5a397381565b6102bc60405180606001604052806000815260200160008152602001600081525090565b50604080516060810182526001600160a01b037f000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c78116600090815260208181528482209583168083529581528482205484527f000000000000000000000000933597a323eb81cae705c5bc29985172fd5a397383168252818152848220868352815284822054818501527f00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce57931909216815280825283812094815293905291819020549082015290565b34156103a35760405163bd28e88960e01b815260040160405180910390fd5b6000808360028111156103b8576103b8610d81565b1480156103ed57507f000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c76001600160a01b031615155b156104d5576040516370a0823160e01b81523060048201527f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b0316906370a0823190602401602060405180830381865afa158015610456573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047a9190610d97565b90506104d06001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48167f00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e983610a61565b610710565b60018360028111156104e9576104e9610d81565b14801561051e57507f000000000000000000000000933597a323eb81cae705c5bc29985172fd5a39736001600160a01b031615155b15610601576040516370a0823160e01b81523060048201527f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec76001600160a01b0316906370a0823190602401602060405180830381865afa158015610587573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ab9190610d97565b90506104d06001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7167f00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e983610a61565b600283600281111561061557610615610d81565b14801561064a57507f00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce579316001600160a01b031615155b156106ec5747905060007f00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e96001600160a01b03168260405160006040518083038185875af1925050503d80600081146106bf576040519150601f19603f3d011682016040523d82523d6000602084013e6106c4565b606091505b50509050806106e65760405163f2fde46160e01b815260040160405180910390fd5b50610710565b8260405163de0a0bd160e01b81526004016107079190610dd2565b60405180910390fd5b7f1b49ef1f9ba04901621f39b8fe69af48e9bd581c094e785f268297f667dbf229837f00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e98360405161076393929190610de0565b60405180910390a1505050565b600083600281111561078457610784610d81565b1480156107b957507f000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c76001600160a01b031615155b156108725734156107dd5760405163bd28e88960e01b815260040160405180910390fd5b6108126001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816333085610ac5565b6001600160a01b037f000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c7811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b90915550610a2c9050565b600183600281111561088657610886610d81565b1480156108bb57507f000000000000000000000000933597a323eb81cae705c5bc29985172fd5a39736001600160a01b031615155b156109695734156108df5760405163bd28e88960e01b815260040160405180910390fd5b6109146001600160a01b037f000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec716333085610ac5565b6001600160a01b037f000000000000000000000000933597a323eb81cae705c5bc29985172fd5a3973811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b600283600281111561097d5761097d610d81565b1480156109b257507f00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce579316001600160a01b031615155b156106ec578134146109d757604051633c79c7bb60e11b815260040160405180910390fd5b6001600160a01b037f00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce57931811660009081526020818152604080832093851683529290529081208054849290610867908490610e08565b7fa7c13646a84823baec5e7033cc38cf2fb367229e7ae4af5306f9c922a95ccbd6833383856040516107639493929190610e29565b6040516001600160a01b03838116602483015260448201839052610ac091859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610b04565b505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610afe9186918216906323b872dd90608401610a8e565b50505050565b6000610b196001600160a01b03841683610b67565b90508051600014158015610b3e575080806020019051810190610b3c9190610e5e565b155b15610ac057604051635274afe760e01b81526001600160a01b0384166004820152602401610707565b6060610b7583836000610b7e565b90505b92915050565b606081471015610ba35760405163cd78605960e01b8152306004820152602401610707565b600080856001600160a01b03168486604051610bbf9190610e80565b60006040518083038185875af1925050503d8060008114610bfc576040519150601f19603f3d011682016040523d82523d6000602084013e610c01565b606091505b5091509150610c11868383610c1d565b925050505b9392505050565b606082610c3257610c2d82610c79565b610c16565b8151158015610c4957506001600160a01b0384163b155b15610c7257604051639996b31560e01b81526001600160a01b0385166004820152602401610707565b5080610c16565b805115610c895780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114610cb957600080fd5b919050565b60008060408385031215610cd157600080fd5b610cda83610ca2565b9150610ce860208401610ca2565b90509250929050565b600060208284031215610d0357600080fd5b610b7582610ca2565b803560038110610cb957600080fd5b60008060408385031215610d2e57600080fd5b610d3783610d0c565b946020939093013593505050565b600080600060608486031215610d5a57600080fd5b610d6384610d0c565b925060208401359150610d7860408501610ca2565b90509250925092565b634e487b7160e01b600052602160045260246000fd5b600060208284031215610da957600080fd5b5051919050565b60038110610dce57634e487b7160e01b600052602160045260246000fd5b9052565b60208101610b788284610db0565b60608101610dee8286610db0565b6001600160a01b0393909316602082015260400152919050565b80820180821115610b7857634e487b7160e01b600052601160045260246000fd5b60808101610e378287610db0565b6001600160a01b039485166020830152929093166040840152606090920191909152919050565b600060208284031215610e7057600080fd5b81518015158114610c1657600080fd5b6000825160005b81811015610ea15760208186018101518583015201610e87565b50600092019182525091905056fea2646970667358221220d45c150b65013eb6ef7f23013d89360a37c68b03cda98a85918faea80315cdc664736f6c63430008160033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e9000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c7000000000000000000000000933597a323eb81cae705c5bc29985172fd5a397300000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce57931
-----Decoded View---------------
Arg [0] : _donationReceiver (address): 0x25941dC771bB64514Fc8abBce970307Fb9d477e9
Arg [1] : _stargateUsdc (address): 0xc026395860Db2d07ee33e05fE50ed7bD583189C7
Arg [2] : _stargateUsdt (address): 0x933597a323Eb81cAe705C5bC29985172fd5A3973
Arg [3] : _stargateNative (address): 0x77b2043768d28E9C9aB44E1aBfC95944bcE57931
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000025941dc771bb64514fc8abbce970307fb9d477e9
Arg [1] : 000000000000000000000000c026395860db2d07ee33e05fe50ed7bd583189c7
Arg [2] : 000000000000000000000000933597a323eb81cae705c5bc29985172fd5a3973
Arg [3] : 00000000000000000000000077b2043768d28e9c9ab44e1abfc95944bce57931
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.