Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 2,130 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Batch Redeem Tra... | 21632621 | 413 days ago | IN | 0 ETH | 0.01478123 | ||||
| Batch Redeem Tra... | 21475834 | 435 days ago | IN | 0 ETH | 0.00046842 | ||||
| Batch Redeem Tra... | 21468279 | 436 days ago | IN | 0 ETH | 0.00102028 | ||||
| Batch Redeem Tra... | 21468202 | 436 days ago | IN | 0 ETH | 0.00126671 | ||||
| Batch Redeem Tra... | 20255775 | 605 days ago | IN | 0 ETH | 0.00057405 | ||||
| Batch Redeem Tra... | 19817711 | 666 days ago | IN | 0 ETH | 0.00122952 | ||||
| Batch Redeem Tra... | 19813240 | 667 days ago | IN | 0 ETH | 0.00065416 | ||||
| Batch Redeem Tra... | 19561720 | 702 days ago | IN | 0 ETH | 0.00496181 | ||||
| Batch Redeem Tra... | 19327087 | 735 days ago | IN | 0 ETH | 0.00844092 | ||||
| Batch Redeem Tra... | 19323325 | 735 days ago | IN | 0 ETH | 0.00476777 | ||||
| Batch Redeem Tra... | 19294151 | 739 days ago | IN | 0 ETH | 0.00351458 | ||||
| Batch Redeem Tra... | 19103248 | 766 days ago | IN | 0 ETH | 0.00134055 | ||||
| Batch Redeem Tra... | 19051231 | 774 days ago | IN | 0 ETH | 0.00281369 | ||||
| Batch Redeem Tra... | 19037084 | 776 days ago | IN | 0 ETH | 0.00515654 | ||||
| Batch Redeem Tra... | 19022890 | 778 days ago | IN | 0 ETH | 0.00352151 | ||||
| Batch Redeem Tra... | 18866637 | 799 days ago | IN | 0 ETH | 0.0022113 | ||||
| Batch Redeem Tra... | 18828822 | 805 days ago | IN | 0 ETH | 0.00796345 | ||||
| Batch Redeem Tra... | 18762154 | 814 days ago | IN | 0 ETH | 0.007437 | ||||
| Batch Redeem Tra... | 18670900 | 827 days ago | IN | 0 ETH | 0.01093053 | ||||
| Batch Redeem Tra... | 18670896 | 827 days ago | IN | 0 ETH | 0.00743502 | ||||
| Batch Redeem Tra... | 18649979 | 830 days ago | IN | 0 ETH | 0.00336495 | ||||
| Batch Redeem Tra... | 18514400 | 849 days ago | IN | 0 ETH | 0.00730734 | ||||
| Batch Redeem Tra... | 18411458 | 863 days ago | IN | 0 ETH | 0.00147005 | ||||
| Batch Redeem Tra... | 17916542 | 933 days ago | IN | 0 ETH | 0.0023837 | ||||
| Batch Redeem Tra... | 17419415 | 1002 days ago | IN | 0 ETH | 0.00265526 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TransportMinter
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ContextMixin} from "../common/ContextMixin.sol";
import {IMintableERC721} from "../common/IMintableERC721.sol";
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract TransportMinter is Ownable, ContextMixin {
using MerkleProof for bytes32[];
mapping(uint256 => bool) public isMinted;
IMintableERC721 public netvrkTransport;
bytes32 merkleRoot;
event TransportMinted(address indexed minter, uint256 tokenId);
constructor(address transportAddress) {
netvrkTransport = IMintableERC721(transportAddress);
}
function setMerkleRoot(bytes32 root) external onlyOwner {
merkleRoot = root;
}
function redeemTransport(uint256 tokenId, bytes32[] memory proof) public {
require(merkleRoot != 0, "TransportMinter: no MerkleRoot yet");
require(isMinted[tokenId] == false, "TransportMinter: Already Minted");
require(proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender, tokenId))), "TransportMinter: Not Allocated");
address minter = msg.sender;
isMinted[tokenId] = true;
netvrkTransport.mint(minter, tokenId);
emit TransportMinted(minter, tokenId);
}
function batchRedeemTransports(uint256[] calldata tokenIds, bytes32[][] memory proofs) public
{
require(merkleRoot != 0, "TransportMinter: no MerkleRoot yet");
uint256 tokenId;
address minter = msg.sender;
for (uint256 i = 0; i < tokenIds.length; i++) {
tokenId = tokenIds[i];
require(proofs[i].verify(merkleRoot,keccak256(abi.encodePacked(minter,tokenId))),"TransportMinter: Not Allocated");
require(isMinted[tokenId] == false, "TransportMinter: Already Minted");
isMinted[tokenId] = true;
netvrkTransport.mint(minter, tokenId);
emit TransportMinted(minter, tokenId);
}
}
function _updateAddresses(address transportAddress) external onlyOwner {
netvrkTransport = IMintableERC721(transportAddress);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../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.
*
* By default, the owner account will be the one that deploys the contract. 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;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
abstract contract ContextMixin {
function msgSender() internal view returns (address payable sender) {
if (msg.sender == address(this)) {
bytes memory array = msg.data;
uint256 index = msg.data.length;
assembly {
// Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
sender := and(
mload(add(array, index)),
0xffffffffffffffffffffffffffffffffffffffff
)
}
} else {
sender = payable(msg.sender);
}
return sender;
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
interface IMintableERC721 is IERC721 {
/**
* @notice called by predicate contract to mint tokens while withdrawing
* @dev Should be callable only by MintableERC721Predicate
* Make sure minting is done only by this function
* @param user user address for whom token is being minted
* @param tokenId tokenId being minted
*/
function mint(address user, uint256 tokenId) external;
/**
* @notice called by predicate contract to mint tokens while withdrawing with metadata from L2
* @dev Should be callable only by MintableERC721Predicate
* Make sure minting is only done either by this function/ �
* @param user user address for whom token is being minted
* @param tokenId tokenId being minted
* @param metaData Associated token metadata, to be decoded & set using `setTokenMetadata`
*
* Note : If you're interested in taking token metadata from L2 to L1 during exit, you must
* implement this method
*/
function mint(
address user,
uint256 tokenId,
bytes calldata metaData
) external;
/**
* @notice check if token already exists, return true if it does exist
* @dev this check will be used by the predicate to determine if the token needs to be minted or transfered
* @param tokenId tokenId being checked
*/
function exists(uint256 tokenId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
// Check if the computed hash (root) is equal to the provided root
return computedHash == root;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* 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[EIP 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);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"transportAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TransportMinted","type":"event"},{"inputs":[{"internalType":"address","name":"transportAddress","type":"address"}],"name":"_updateAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes32[][]","name":"proofs","type":"bytes32[][]"}],"name":"batchRedeemTransports","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"netvrkTransport","outputs":[{"internalType":"contract IMintableERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"redeemTransport","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051610c70380380610c7083398101604081905261002f916100b8565b61003f61003a610064565b610068565b600280546001600160a01b0319166001600160a01b03929092169190911790556100e6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100c9578081fd5b81516001600160a01b03811681146100df578182fd5b9392505050565b610b7b806100f56000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c806380f485fa1161006657806380f485fa146100f35780638da5cb5b14610106578063d92c30c41461010e578063f160538814610121578063f2fde38b1461013457610093565b806333c41a901461009857806360ebc571146100c1578063715018a6146100d65780637cb64759146100e0575b600080fd5b6100ab6100a63660046108c1565b610147565b6040516100b8919061097b565b60405180910390f35b6100c961015c565b6040516100b8919061094e565b6100de61016b565b005b6100de6100ee3660046108c1565b6101bf565b6100de6101013660046108d9565b610203565b6100c9610372565b6100de61011c3660046107af565b610381565b6100de61012f3660046107dd565b6103e2565b6100de6101423660046107af565b6105c3565b60016020526000908152604090205460ff1681565b6002546001600160a01b031681565b610173610634565b6001600160a01b0316610184610372565b6001600160a01b0316146101b35760405162461bcd60e51b81526004016101aa90610a45565b60405180910390fd5b6101bd6000610638565b565b6101c7610634565b6001600160a01b03166101d8610372565b6001600160a01b0316146101fe5760405162461bcd60e51b81526004016101aa90610a45565b600355565b6003546102225760405162461bcd60e51b81526004016101aa90610a03565b60008281526001602052604090205460ff16156102515760405162461bcd60e51b81526004016101aa90610986565b610290600354338460405160200161026a92919061091e565b60405160208183030381529060405280519060200120836106889092919063ffffffff16565b6102ac5760405162461bcd60e51b81526004016101aa90610a7a565b600082815260016020819052604091829020805460ff1916909117905560025490516340c10f1960e01b815233916001600160a01b0316906340c10f19906102fa9084908790600401610962565b600060405180830381600087803b15801561031457600080fd5b505af1158015610328573d6000803e3d6000fd5b50505050806001600160a01b03167fea6544addff3d4d87f798f6a3e6182377b1e8df13f40d45df5cf79bdcd432f5f846040516103659190610ab1565b60405180910390a2505050565b6000546001600160a01b031690565b610389610634565b6001600160a01b031661039a610372565b6001600160a01b0316146103c05760405162461bcd60e51b81526004016101aa90610a45565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6003546104015760405162461bcd60e51b81526004016101aa90610a03565b600033815b848110156105bb5785858281811061042e57634e487b7160e01b600052603260045260246000fd5b90506020020135925061049d600354838560405160200161045092919061091e565b6040516020818303038152906040528051906020012086848151811061048657634e487b7160e01b600052603260045260246000fd5b60200260200101516106889092919063ffffffff16565b6104b95760405162461bcd60e51b81526004016101aa90610a7a565b60008381526001602052604090205460ff16156104e85760405162461bcd60e51b81526004016101aa90610986565b600083815260016020819052604091829020805460ff1916909117905560025490516340c10f1960e01b81526001600160a01b03909116906340c10f19906105369085908790600401610962565b600060405180830381600087803b15801561055057600080fd5b505af1158015610564573d6000803e3d6000fd5b50505050816001600160a01b03167fea6544addff3d4d87f798f6a3e6182377b1e8df13f40d45df5cf79bdcd432f5f846040516105a19190610ab1565b60405180910390a2806105b381610b08565b915050610406565b505050505050565b6105cb610634565b6001600160a01b03166105dc610372565b6001600160a01b0316146106025760405162461bcd60e51b81526004016101aa90610a45565b6001600160a01b0381166106285760405162461bcd60e51b81526004016101aa906109bd565b61063181610638565b50565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b85518110156107385760008682815181106106b857634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116106f95782816040516020016106dc929190610940565b604051602081830303815290604052805190602001209250610725565b808360405160200161070c929190610940565b6040516020818303038152906040528051906020012092505b508061073081610b08565b91505061068d565b509092149392505050565b600082601f830112610753578081fd5b8135602061076861076383610ae4565b610aba565b8281528181019085830183850287018401881015610784578586fd5b855b858110156107a257813584529284019290840190600101610786565b5090979650505050505050565b6000602082840312156107c0578081fd5b81356001600160a01b03811681146107d6578182fd5b9392505050565b6000806000604084860312156107f1578182fd5b833567ffffffffffffffff80821115610808578384fd5b818601915086601f83011261081b578384fd5b813581811115610829578485fd5b60208881828402860101111561083d578586fd5b808401965081955080880135935082841115610857578485fd5b838801935088601f85011261086a578485fd5b8335925061087a61076384610ae4565b8381528181019250848201865b858110156108b05761089e8c8584358a0101610743565b85529383019390830190600101610887565b505080955050505050509250925092565b6000602082840312156108d2578081fd5b5035919050565b600080604083850312156108eb578182fd5b82359150602083013567ffffffffffffffff811115610908578182fd5b61091485828601610743565b9150509250929050565b60609290921b6bffffffffffffffffffffffff19168252601482015260340190565b918252602082015260400190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6020808252601f908201527f5472616e73706f72744d696e7465723a20416c7265616479204d696e74656400604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f5472616e73706f72744d696e7465723a206e6f204d65726b6c65526f6f742079604082015261195d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5472616e73706f72744d696e7465723a204e6f7420416c6c6f63617465640000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715610adc57610adc610b2f565b604052919050565b600067ffffffffffffffff821115610afe57610afe610b2f565b5060209081020190565b6000600019821415610b2857634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fdfea26469706673582212202ac693c854065b473f516edf57f436334503c53c9ef648f0ef27403c9e3d7c9c64736f6c63430008000033000000000000000000000000b95abd5fa9e71f1981505c3d9a7800c369b0718c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c806380f485fa1161006657806380f485fa146100f35780638da5cb5b14610106578063d92c30c41461010e578063f160538814610121578063f2fde38b1461013457610093565b806333c41a901461009857806360ebc571146100c1578063715018a6146100d65780637cb64759146100e0575b600080fd5b6100ab6100a63660046108c1565b610147565b6040516100b8919061097b565b60405180910390f35b6100c961015c565b6040516100b8919061094e565b6100de61016b565b005b6100de6100ee3660046108c1565b6101bf565b6100de6101013660046108d9565b610203565b6100c9610372565b6100de61011c3660046107af565b610381565b6100de61012f3660046107dd565b6103e2565b6100de6101423660046107af565b6105c3565b60016020526000908152604090205460ff1681565b6002546001600160a01b031681565b610173610634565b6001600160a01b0316610184610372565b6001600160a01b0316146101b35760405162461bcd60e51b81526004016101aa90610a45565b60405180910390fd5b6101bd6000610638565b565b6101c7610634565b6001600160a01b03166101d8610372565b6001600160a01b0316146101fe5760405162461bcd60e51b81526004016101aa90610a45565b600355565b6003546102225760405162461bcd60e51b81526004016101aa90610a03565b60008281526001602052604090205460ff16156102515760405162461bcd60e51b81526004016101aa90610986565b610290600354338460405160200161026a92919061091e565b60405160208183030381529060405280519060200120836106889092919063ffffffff16565b6102ac5760405162461bcd60e51b81526004016101aa90610a7a565b600082815260016020819052604091829020805460ff1916909117905560025490516340c10f1960e01b815233916001600160a01b0316906340c10f19906102fa9084908790600401610962565b600060405180830381600087803b15801561031457600080fd5b505af1158015610328573d6000803e3d6000fd5b50505050806001600160a01b03167fea6544addff3d4d87f798f6a3e6182377b1e8df13f40d45df5cf79bdcd432f5f846040516103659190610ab1565b60405180910390a2505050565b6000546001600160a01b031690565b610389610634565b6001600160a01b031661039a610372565b6001600160a01b0316146103c05760405162461bcd60e51b81526004016101aa90610a45565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6003546104015760405162461bcd60e51b81526004016101aa90610a03565b600033815b848110156105bb5785858281811061042e57634e487b7160e01b600052603260045260246000fd5b90506020020135925061049d600354838560405160200161045092919061091e565b6040516020818303038152906040528051906020012086848151811061048657634e487b7160e01b600052603260045260246000fd5b60200260200101516106889092919063ffffffff16565b6104b95760405162461bcd60e51b81526004016101aa90610a7a565b60008381526001602052604090205460ff16156104e85760405162461bcd60e51b81526004016101aa90610986565b600083815260016020819052604091829020805460ff1916909117905560025490516340c10f1960e01b81526001600160a01b03909116906340c10f19906105369085908790600401610962565b600060405180830381600087803b15801561055057600080fd5b505af1158015610564573d6000803e3d6000fd5b50505050816001600160a01b03167fea6544addff3d4d87f798f6a3e6182377b1e8df13f40d45df5cf79bdcd432f5f846040516105a19190610ab1565b60405180910390a2806105b381610b08565b915050610406565b505050505050565b6105cb610634565b6001600160a01b03166105dc610372565b6001600160a01b0316146106025760405162461bcd60e51b81526004016101aa90610a45565b6001600160a01b0381166106285760405162461bcd60e51b81526004016101aa906109bd565b61063181610638565b50565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081815b85518110156107385760008682815181106106b857634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116106f95782816040516020016106dc929190610940565b604051602081830303815290604052805190602001209250610725565b808360405160200161070c929190610940565b6040516020818303038152906040528051906020012092505b508061073081610b08565b91505061068d565b509092149392505050565b600082601f830112610753578081fd5b8135602061076861076383610ae4565b610aba565b8281528181019085830183850287018401881015610784578586fd5b855b858110156107a257813584529284019290840190600101610786565b5090979650505050505050565b6000602082840312156107c0578081fd5b81356001600160a01b03811681146107d6578182fd5b9392505050565b6000806000604084860312156107f1578182fd5b833567ffffffffffffffff80821115610808578384fd5b818601915086601f83011261081b578384fd5b813581811115610829578485fd5b60208881828402860101111561083d578586fd5b808401965081955080880135935082841115610857578485fd5b838801935088601f85011261086a578485fd5b8335925061087a61076384610ae4565b8381528181019250848201865b858110156108b05761089e8c8584358a0101610743565b85529383019390830190600101610887565b505080955050505050509250925092565b6000602082840312156108d2578081fd5b5035919050565b600080604083850312156108eb578182fd5b82359150602083013567ffffffffffffffff811115610908578182fd5b61091485828601610743565b9150509250929050565b60609290921b6bffffffffffffffffffffffff19168252601482015260340190565b918252602082015260400190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6020808252601f908201527f5472616e73706f72744d696e7465723a20416c7265616479204d696e74656400604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f5472616e73706f72744d696e7465723a206e6f204d65726b6c65526f6f742079604082015261195d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5472616e73706f72744d696e7465723a204e6f7420416c6c6f63617465640000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715610adc57610adc610b2f565b604052919050565b600067ffffffffffffffff821115610afe57610afe610b2f565b5060209081020190565b6000600019821415610b2857634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fdfea26469706673582212202ac693c854065b473f516edf57f436334503c53c9ef648f0ef27403c9e3d7c9c64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b95abd5fa9e71f1981505c3d9a7800c369b0718c
-----Decoded View---------------
Arg [0] : transportAddress (address): 0xB95aBD5fa9E71f1981505c3D9A7800c369b0718c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b95abd5fa9e71f1981505c3d9a7800c369b0718c
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.