Contract Diff Checker

Please enter a contract address above to load the contract details and source code.

Contract Name:
Test

Contract Source Code:

// SPDX-License-Identifier: UNKNOWN
pragma solidity 0.8.18;

contract Test {
	mapping(address => string) pfps;

	function image(string calldata data) external {
		pfps[msg.sender] = data;
	}

}

Context size (optional):