Overview
ETH Balance
ETH Value
$0.00Latest 14 from a total of 14 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Initiate Bridge | 20970461 | 2 days ago | IN | 0 ETH | 0.00000373 | ||||
| Initiate Bridge | 20969337 | 2 days ago | IN | 0 ETH | 0.00000144 | ||||
| Initiate Bridge | 20965545 | 2 days ago | IN | 0 ETH | 0.00000163 | ||||
| Initiate Bridge | 20906469 | 2 days ago | IN | 0 ETH | 0.00000148 | ||||
| Initiate Bridge | 20906159 | 2 days ago | IN | 0 ETH | 0.00000146 | ||||
| Initiate Bridge | 20906133 | 2 days ago | IN | 0 ETH | 0.00000146 | ||||
| Initiate Bridge | 20904170 | 2 days ago | IN | 0 ETH | 0.00000146 | ||||
| Initiate Bridge | 20887381 | 2 days ago | IN | 0 ETH | 0.00000165 | ||||
| Initiate Bridge | 20463821 | 7 days ago | IN | 0 ETH | 0.00000143 | ||||
| Initiate Bridge | 20401651 | 8 days ago | IN | 0 ETH | 0.00000135 | ||||
| Initiate Bridge | 20381764 | 8 days ago | IN | 0 ETH | 0.00000135 | ||||
| Initiate Bridge | 20377749 | 8 days ago | IN | 0 ETH | 0.00000144 | ||||
| Initiate Bridge | 20375590 | 8 days ago | IN | 0 ETH | 0.00000539 | ||||
| 0x8d3ef7ca | 20363015 | 9 days ago | IN | 0 ETH | 0.00000137 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Contract Source Code (Solidity)
/**
*Submitted for verification at KatanaScan.com on 2026-01-05
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-20 standard as defined in the ERC.
*/
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);
}
// File: @openzeppelin/contracts/interfaces/IERC20.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC20.sol)
pragma solidity >=0.4.16;
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts (last updated v5.4.0) (utils/introspection/IERC165.sol)
pragma solidity >=0.4.16;
/**
* @dev Interface of the ERC-165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[ERC].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/interfaces/IERC165.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC165.sol)
pragma solidity >=0.4.16;
// File: @openzeppelin/contracts/interfaces/IERC1363.sol
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1363.sol)
pragma solidity >=0.6.2;
/**
* @title IERC1363
* @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
*
* Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
* after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
*/
interface IERC1363 is IERC20, IERC165 {
/*
* Note: the ERC-165 identifier for this interface is 0xb0202a11.
* 0xb0202a11 ===
* bytes4(keccak256('transferAndCall(address,uint256)')) ^
* bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
* bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
* bytes4(keccak256('approveAndCall(address,uint256)')) ^
* bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
*/
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
* and then calls {IERC1363Receiver-onTransferReceived} on `to`.
* @param from The address which you want to send tokens from.
* @param to The address which you want to transfer to.
* @param value The amount of tokens to be transferred.
* @param data Additional data with no specified format, sent in call to `to`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value) external returns (bool);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
* @param data Additional data with no specified format, sent in call to `spender`.
* @return A boolean value indicating whether the operation succeeded unless throwing.
*/
function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
/**
* @title SafeERC20
* @dev Wrappers around ERC-20 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 {
/**
* @dev An operation with an ERC-20 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 Variant of {safeTransfer} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransfer(IERC20 token, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Variant of {safeTransferFrom} that returns a bool instead of reverting if the operation is not successful.
*/
function trySafeTransferFrom(IERC20 token, address from, address to, uint256 value) internal returns (bool) {
return _callOptionalReturnBool(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.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
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.
*
* IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
* smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
* this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
* that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
*/
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.
*
* NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
* only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
* set here.
*/
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 Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
safeTransfer(token, to, value);
} else if (!token.transferAndCall(to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
* has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* Reverts if the returned value is other than `true`.
*/
function transferFromAndCallRelaxed(
IERC1363 token,
address from,
address to,
uint256 value,
bytes memory data
) internal {
if (to.code.length == 0) {
safeTransferFrom(token, from, to, value);
} else if (!token.transferFromAndCall(from, to, value, data)) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
* code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
* targeting contracts.
*
* NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
* Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
* once without retrying, and relies on the returned value to be true.
*
* Reverts if the returned value is other than `true`.
*/
function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
if (to.code.length == 0) {
forceApprove(token, to, value);
} else if (!token.approveAndCall(to, value, data)) {
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 {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
// bubble errors
if iszero(success) {
let ptr := mload(0x40)
returndatacopy(ptr, 0, returndatasize())
revert(ptr, returndatasize())
}
returnSize := returndatasize()
returnValue := mload(0)
}
if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
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 silently catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
bool success;
uint256 returnSize;
uint256 returnValue;
assembly ("memory-safe") {
success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
returnSize := returndatasize()
returnValue := mload(0)
}
return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
}
// File: @openzeppelin/contracts/utils/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,
* consider using {ReentrancyGuardTransient} instead.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Pausable.sol
// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// File: BridgeRouter1.sol
pragma solidity ^0.8.20;
/**
* @title BridgeRouter
* @notice Router contract for USDC bridges via Relay Protocol
* @dev All transactions pass through this contract for on-chain tracking
*/
contract BridgeRouter is Ownable, ReentrancyGuard, Pausable {
using SafeERC20 for IERC20;
IERC20 public immutable usdc;
uint256 public totalVolume;
uint256 public totalTransactions;
mapping(address => uint256) public userVolume;
mapping(address => uint256) public userTransactions;
event BridgeInitiated(
address indexed user,
uint256 indexed destinationChainId,
uint256 amount,
uint256 timestamp
);
event VolumeRecorded(
address indexed user,
uint256 amount,
uint256 totalUserVolume,
uint256 totalProtocolVolume
);
error InvalidAmount();
error InvalidAddress();
constructor(address _usdc) Ownable(msg.sender) {
if (_usdc == address(0)) revert InvalidAddress();
usdc = IERC20(_usdc);
}
function initiateBridge(
uint256 destinationChainId,
uint256 amount
) external nonReentrant whenNotPaused {
if (amount == 0) revert InvalidAmount();
usdc.safeTransferFrom(msg.sender, address(this), amount);
usdc.safeTransfer(msg.sender, amount);
totalVolume += amount;
totalTransactions += 1;
userVolume[msg.sender] += amount;
userTransactions[msg.sender] += 1;
emit BridgeInitiated(msg.sender, destinationChainId, amount, block.timestamp);
emit VolumeRecorded(msg.sender, amount, userVolume[msg.sender], totalVolume);
}
function getUserStats(address user) external view returns (uint256 volume, uint256 transactions) {
return (userVolume[user], userTransactions[user]);
}
function getProtocolStats() external view returns (uint256 volume, uint256 transactions) {
return (totalVolume, totalTransactions);
}
function pause() external onlyOwner {
_pause();
}
function unpause() external onlyOwner {
_unpause();
}
function emergencyWithdraw(address token) external onlyOwner {
if (token == address(0)) {
payable(owner()).transfer(address(this).balance);
} else {
uint256 balance = IERC20(token).balanceOf(address(this));
IERC20(token).safeTransfer(owner(), balance);
}
}
receive() external payable {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_usdc","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"BridgeInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalUserVolume","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalProtocolVolume","type":"uint256"}],"name":"VolumeRecorded","type":"event"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getProtocolStats","outputs":[{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"transactions","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserStats","outputs":[{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"transactions","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"destinationChainId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"initiateBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalTransactions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalVolume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdc","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userTransactions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userVolume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a060405234801561000f575f80fd5b50604051610a95380380610a9583398101604081905261002e916100e8565b338061005357604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b61005c81610099565b50600180556001600160a01b0381166100885760405163e6c4247b60e01b815260040160405180910390fd5b6001600160a01b0316608052610115565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100f8575f80fd5b81516001600160a01b038116811461010e575f80fd5b9392505050565b60805161095a61013b5f395f818161010301528181610469015261049e015261095a5ff3fe6080604052600436106100e7575f3560e01c8063715018a611610087578063a6769ef811610057578063a6769ef814610298578063b9a60038146102c3578063db315774146102d8578063f2fde38b146102f7575f80fd5b8063715018a61461023d578063771aceef146102515780638456cb59146102685780638da5cb5b1461027c575f80fd5b806359d71914116100c257806359d71914146101ae5780635c975abb146101e75780635f81a57c146102095780636ff1c9bc1461021e575f80fd5b80633e413bee146100f25780633f4ba83a146101425780634e43603a14610158575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b506101257f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014d575f80fd5b50610156610316565b005b348015610163575f80fd5b5061019961017236600461089b565b6001600160a01b03165f908152600560209081526040808320546006909252909120549091565b60408051928352602083019190915201610139565b3480156101b9575f80fd5b506101d96101c836600461089b565b60066020525f908152604090205481565b604051908152602001610139565b3480156101f2575f80fd5b5060025460ff166040519015158152602001610139565b348015610214575f80fd5b506101d960035481565b348015610229575f80fd5b5061015661023836600461089b565b610328565b348015610248575f80fd5b5061015661040b565b34801561025c575f80fd5b50600354600454610199565b348015610273575f80fd5b5061015661041c565b348015610287575f80fd5b505f546001600160a01b0316610125565b3480156102a3575f80fd5b506101d96102b236600461089b565b60056020525f908152604090205481565b3480156102ce575f80fd5b506101d960045481565b3480156102e3575f80fd5b506101566102f23660046108c8565b61042c565b348015610302575f80fd5b5061015661031136600461089b565b6105d2565b61031e610611565b61032661063d565b565b610330610611565b6001600160a01b038116610379575f80546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610375573d5f803e3d5ffd5b5050565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103e191906108e8565b90506103756103f75f546001600160a01b031690565b6001600160a01b038416908361068f565b50565b610413610611565b6103265f6106f3565b610424610611565b610326610742565b61043461077f565b61043c6107a9565b805f0361045c5760405163162908e360e11b815260040160405180910390fd5b6104916001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330846107cd565b6104c56001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016338361068f565b8060035f8282546104d691906108ff565b92505081905550600160045f8282546104ef91906108ff565b9091555050335f90815260056020526040812080548392906105129084906108ff565b9091555050335f9081526006602052604081208054600192906105369084906108ff565b909155505060408051828152426020820152839133917f76543904528179ee2444e3a1dca9aab81404195d13ac1855ecd3a3c2fc7fe686910160405180910390a3335f81815260056020908152604091829020546003548351868152928301919091528183015290517fbe136f55822a8400613c511fe3a4ab8aeaa1df9c6d834afd7d8531039e327b099181900360600190a261037560018055565b6105da610611565b6001600160a01b03811661060857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610408816106f3565b5f546001600160a01b031633146103265760405163118cdaa760e01b81523360048201526024016105ff565b61064561080c565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b038381166024830152604482018390526106ee91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061082f565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61074a6107a9565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586106723390565b6002600154036107a257604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff16156103265760405163d93c066560e01b815260040160405180910390fd5b6040516001600160a01b0384811660248301528381166044830152606482018390526108069186918216906323b872dd906084016106bc565b50505050565b60025460ff1661032657604051638dfc202b60e01b815260040160405180910390fd5b5f8060205f8451602086015f885af18061084e576040513d5f823e3d81fd5b50505f513d91508115610865578060011415610872565b6001600160a01b0384163b155b1561080657604051635274afe760e01b81526001600160a01b03851660048201526024016105ff565b5f602082840312156108ab575f80fd5b81356001600160a01b03811681146108c1575f80fd5b9392505050565b5f80604083850312156108d9575f80fd5b50508035926020909101359150565b5f602082840312156108f8575f80fd5b5051919050565b8082018082111561091e57634e487b7160e01b5f52601160045260245ffd5b9291505056fea264697066735822122089494739909e110b65f756e1ebaf018ebe12d4cd288d2166ad5ff31ecba59b5464736f6c63430008140033000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd36
Deployed Bytecode
0x6080604052600436106100e7575f3560e01c8063715018a611610087578063a6769ef811610057578063a6769ef814610298578063b9a60038146102c3578063db315774146102d8578063f2fde38b146102f7575f80fd5b8063715018a61461023d578063771aceef146102515780638456cb59146102685780638da5cb5b1461027c575f80fd5b806359d71914116100c257806359d71914146101ae5780635c975abb146101e75780635f81a57c146102095780636ff1c9bc1461021e575f80fd5b80633e413bee146100f25780633f4ba83a146101425780634e43603a14610158575f80fd5b366100ee57005b5f80fd5b3480156100fd575f80fd5b506101257f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014d575f80fd5b50610156610316565b005b348015610163575f80fd5b5061019961017236600461089b565b6001600160a01b03165f908152600560209081526040808320546006909252909120549091565b60408051928352602083019190915201610139565b3480156101b9575f80fd5b506101d96101c836600461089b565b60066020525f908152604090205481565b604051908152602001610139565b3480156101f2575f80fd5b5060025460ff166040519015158152602001610139565b348015610214575f80fd5b506101d960035481565b348015610229575f80fd5b5061015661023836600461089b565b610328565b348015610248575f80fd5b5061015661040b565b34801561025c575f80fd5b50600354600454610199565b348015610273575f80fd5b5061015661041c565b348015610287575f80fd5b505f546001600160a01b0316610125565b3480156102a3575f80fd5b506101d96102b236600461089b565b60056020525f908152604090205481565b3480156102ce575f80fd5b506101d960045481565b3480156102e3575f80fd5b506101566102f23660046108c8565b61042c565b348015610302575f80fd5b5061015661031136600461089b565b6105d2565b61031e610611565b61032661063d565b565b610330610611565b6001600160a01b038116610379575f80546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610375573d5f803e3d5ffd5b5050565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103e191906108e8565b90506103756103f75f546001600160a01b031690565b6001600160a01b038416908361068f565b50565b610413610611565b6103265f6106f3565b610424610611565b610326610742565b61043461077f565b61043c6107a9565b805f0361045c5760405163162908e360e11b815260040160405180910390fd5b6104916001600160a01b037f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd36163330846107cd565b6104c56001600160a01b037f000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd3616338361068f565b8060035f8282546104d691906108ff565b92505081905550600160045f8282546104ef91906108ff565b9091555050335f90815260056020526040812080548392906105129084906108ff565b9091555050335f9081526006602052604081208054600192906105369084906108ff565b909155505060408051828152426020820152839133917f76543904528179ee2444e3a1dca9aab81404195d13ac1855ecd3a3c2fc7fe686910160405180910390a3335f81815260056020908152604091829020546003548351868152928301919091528183015290517fbe136f55822a8400613c511fe3a4ab8aeaa1df9c6d834afd7d8531039e327b099181900360600190a261037560018055565b6105da610611565b6001600160a01b03811661060857604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b610408816106f3565b5f546001600160a01b031633146103265760405163118cdaa760e01b81523360048201526024016105ff565b61064561080c565b6002805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6040516001600160a01b038381166024830152604482018390526106ee91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b03838183161783525050505061082f565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61074a6107a9565b6002805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586106723390565b6002600154036107a257604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b60025460ff16156103265760405163d93c066560e01b815260040160405180910390fd5b6040516001600160a01b0384811660248301528381166044830152606482018390526108069186918216906323b872dd906084016106bc565b50505050565b60025460ff1661032657604051638dfc202b60e01b815260040160405180910390fd5b5f8060205f8451602086015f885af18061084e576040513d5f823e3d81fd5b50505f513d91508115610865578060011415610872565b6001600160a01b0384163b155b1561080657604051635274afe760e01b81526001600160a01b03851660048201526024016105ff565b5f602082840312156108ab575f80fd5b81356001600160a01b03811681146108c1575f80fd5b9392505050565b5f80604083850312156108d9575f80fd5b50508035926020909101359150565b5f602082840312156108f8575f80fd5b5051919050565b8082018082111561091e57634e487b7160e01b5f52601160045260245ffd5b9291505056fea264697066735822122089494739909e110b65f756e1ebaf018ebe12d4cd288d2166ad5ff31ecba59b5464736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd36
-----Decoded View---------------
Arg [0] : _usdc (address): 0x203A662b0BD271A6ed5a60EdFbd04bFce608FD36
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000203a662b0bd271a6ed5a60edfbd04bfce608fd36
Deployed Bytecode Sourcemap
29624:2391:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29726:28;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;191:32:1;;;173:51;;161:2;146:18;29726:28:0;;;;;;;;31573:67;;;;;;;;;;;;;:::i;:::-;;31174:165;;;;;;;;;;-1:-1:-1;31174:165:0;;;;;:::i;:::-;-1:-1:-1;;;;;31290:16:0;31233:14;31290:16;;;:10;:16;;;;;;;;;31308;:22;;;;;;;31290:16;;31174:165;;;;;700:25:1;;;756:2;741:18;;734:34;;;;673:18;31174:165:0;526:248:1;29897:51:0;;;;;;;;;;-1:-1:-1;29897:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;925:25:1;;;913:2;898:18;29897:51:0;779:177:1;28353:86:0;;;;;;;;;;-1:-1:-1;28424:7:0;;;;28353:86;;1126:14:1;;1119:22;1101:41;;1089:2;1074:18;28353:86:0;961:187:1;29767:26:0;;;;;;;;;;;;;;;;31648:327;;;;;;;;;;-1:-1:-1;31648:327:0;;;;;:::i;:::-;;:::i;22244:103::-;;;;;;;;;;;;;:::i;31347:147::-;;;;;;;;;;-1:-1:-1;31455:11:0;;31468:17;;31347:147;;31502:63;;;;;;;;;;;;;:::i;21569:87::-;;;;;;;;;;-1:-1:-1;21615:7:0;21642:6;-1:-1:-1;;;;;21642:6:0;21569:87;;29845:45;;;;;;;;;;-1:-1:-1;29845:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;29800:32;;;;;;;;;;;;;;;;30507:659;;;;;;;;;;-1:-1:-1;30507:659:0;;;;;:::i;:::-;;:::i;22502:220::-;;;;;;;;;;-1:-1:-1;22502:220:0;;;;;:::i;:::-;;:::i;31573:67::-;21455:13;:11;:13::i;:::-;31622:10:::1;:8;:10::i;:::-;31573:67::o:0;31648:327::-;21455:13;:11;:13::i;:::-;-1:-1:-1;;;;;31724:19:0;::::1;31720:248;;21615:7:::0;21642:6;;31760:48:::1;::::0;-1:-1:-1;;;;;21642:6:0;;;;31786:21:::1;31760:48:::0;::::1;;;::::0;31786:21;;31760:48;21615:7;31760:48;31786:21;21642:6;31760:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;31648:327:::0;:::o;31720:248::-:1;31859:38;::::0;-1:-1:-1;;;31859:38:0;;31891:4:::1;31859:38;::::0;::::1;173:51:1::0;31841:15:0::1;::::0;-1:-1:-1;;;;;31859:23:0;::::1;::::0;::::1;::::0;146:18:1;;31859:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31841:56;;31912:44;31939:7;21615::::0;21642:6;-1:-1:-1;;;;;21642:6:0;;21569:87;31939:7:::1;-1:-1:-1::0;;;;;31912:26:0;::::1;::::0;31948:7;31912:26:::1;:44::i;31720:248::-;31648:327:::0;:::o;22244:103::-;21455:13;:11;:13::i;:::-;22309:30:::1;22336:1;22309:18;:30::i;31502:63::-:0;21455:13;:11;:13::i;:::-;31549:8:::1;:6;:8::i;30507:659::-:0;25669:21;:19;:21::i;:::-;27958:19:::1;:17;:19::i;:::-;30651:6:::2;30661:1;30651:11:::0;30647:39:::2;;30671:15;;-1:-1:-1::0;;;30671:15:0::2;;;;;;;;;;;30647:39;30707:56;-1:-1:-1::0;;;;;30707:4:0::2;:21;30729:10;30749:4;30756:6:::0;30707:21:::2;:56::i;:::-;30774:37;-1:-1:-1::0;;;;;30774:4:0::2;:17;30792:10;30804:6:::0;30774:17:::2;:37::i;:::-;30847:6;30832:11;;:21;;;;;;;:::i;:::-;;;;;;;;30885:1;30864:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;30908:10:0::2;30897:22;::::0;;;:10:::2;:22;::::0;;;;:32;;30923:6;;30897:22;:32:::2;::::0;30923:6;;30897:32:::2;:::i;:::-;::::0;;;-1:-1:-1;;30957:10:0::2;30940:28;::::0;;;:16:::2;:28;::::0;;;;:33;;30972:1:::2;::::0;30940:28;:33:::2;::::0;30972:1;;30940:33:::2;:::i;:::-;::::0;;;-1:-1:-1;;30999:72:0::2;::::0;;700:25:1;;;31055:15:0::2;756:2:1::0;741:18;;734:34;31027:18:0;;31015:10:::2;::::0;30999:72:::2;::::0;673:18:1;30999:72:0::2;;;;;;;31102:10;31122:22;::::0;;;:10:::2;:22;::::0;;;;;;;;;31146:11:::2;::::0;31087:71;;2232:25:1;;;2273:18;;;2266:34;;;;2316:18;;;2309:34;31087:71:0;;::::2;::::0;;;;2220:2:1;31087:71:0;;::::2;25713:20:::0;25004:1;26255:21;;26072:212;22502:220;21455:13;:11;:13::i;:::-;-1:-1:-1;;;;;22587:22:0;::::1;22583:93;;22633:31;::::0;-1:-1:-1;;;22633:31:0;;22661:1:::1;22633:31;::::0;::::1;173:51:1::0;146:18;;22633:31:0::1;;;;;;;;22583:93;22686:28;22705:8;22686:18;:28::i;21734:166::-:0;21615:7;21642:6;-1:-1:-1;;;;;21642:6:0;19658:10;21794:23;21790:103;;21841:40;;-1:-1:-1;;;21841:40:0;;19658:10;21841:40;;;173:51:1;146:18;;21841:40:0;14:216:1;29254:120:0;28217:16;:14;:16::i;:::-;29313:7:::1;:15:::0;;-1:-1:-1;;29313:15:0::1;::::0;;29344:22:::1;19658:10:::0;29353:12:::1;29344:22;::::0;-1:-1:-1;;;;;191:32:1;;;173:51;;161:2;146:18;29344:22:0::1;;;;;;;29254:120::o:0;9845:162::-;9955:43;;-1:-1:-1;;;;;2546:32:1;;;9955:43:0;;;2528:51:1;2595:18;;;2588:34;;;9928:71:0;;9948:5;;9970:14;;;;;2501:18:1;;9955:43:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9955:43:0;;;;;;;;;;;9928:19;:71::i;:::-;9845:162;;;:::o;22882:191::-;22956:16;22975:6;;-1:-1:-1;;;;;22992:17:0;;;-1:-1:-1;;;;;;22992:17:0;;;;;;23025:40;;22975:6;;;;;;;23025:40;;22956:16;23025:40;22945:128;22882:191;:::o;28995:118::-;27958:19;:17;:19::i;:::-;29055:7:::1;:14:::0;;-1:-1:-1;;29055:14:0::1;29065:4;29055:14;::::0;;29085:20:::1;29092:12;19658:10:::0;;19578:98;25749:315;25047:1;25878:7;;:18;25874:88;;25920:30;;-1:-1:-1;;;25920:30:0;;;;;;;;;;;25874:88;25047:1;26039:7;:17;25749:315::o;28512:132::-;28424:7;;;;28574:63;;;28610:15;;-1:-1:-1;;;28610:15:0;;;;;;;;;;;10252:190;10380:53;;-1:-1:-1;;;;;2891:15:1;;;10380:53:0;;;2873:34:1;2943:15;;;2923:18;;;2916:43;2975:18;;;2968:34;;;10353:81:0;;10373:5;;10395:18;;;;;2808::1;;10380:53:0;2633:375:1;10353:81:0;10252:190;;;;:::o;28721:130::-;28424:7;;;;28780:64;;28817:15;;-1:-1:-1;;;28817:15:0;;;;;;;;;;;17136:738;17217:18;17246:19;17386:4;17383:1;17376:4;17370:11;17363:4;17357;17353:15;17350:1;17343:5;17336;17331:60;17445:7;17435:180;;17490:4;17484:11;17536:16;17533:1;17528:3;17513:40;17583:16;17578:3;17571:29;17435:180;-1:-1:-1;;17694:1:0;17688:8;17643:16;;-1:-1:-1;17723:15:0;;:68;;17775:11;17790:1;17775:16;;17723:68;;;-1:-1:-1;;;;;17741:26:0;;;:31;17723:68;17719:148;;;17815:40;;-1:-1:-1;;;17815:40:0;;-1:-1:-1;;;;;191:32:1;;17815:40:0;;;173:51:1;146:18;;17815:40:0;14:216:1;235:286;294:6;347:2;335:9;326:7;322:23;318:32;315:52;;;363:1;360;353:12;315:52;389:23;;-1:-1:-1;;;;;441:31:1;;431:42;;421:70;;487:1;484;477:12;421:70;510:5;235:286;-1:-1:-1;;;235:286:1:o;1361:248::-;1429:6;1437;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;-1:-1:-1;;1529:23:1;;;1599:2;1584:18;;;1571:32;;-1:-1:-1;1361:248:1:o;1614:184::-;1684:6;1737:2;1725:9;1716:7;1712:23;1708:32;1705:52;;;1753:1;1750;1743:12;1705:52;-1:-1:-1;1776:16:1;;1614:184;-1:-1:-1;1614:184:1:o;1803:222::-;1868:9;;;1889:10;;;1886:133;;;1941:10;1936:3;1932:20;1929:1;1922:31;1976:4;1973:1;1966:15;2004:4;2001:1;1994:15;1886:133;1803:222;;;;:::o
Swarm Source
ipfs://89494739909e110b65f756e1ebaf018ebe12d4cd288d2166ad5ff31ecba59b54
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.