This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_format": "hh-sol-artifact-1", | |
"contractName": "WithConst", | |
"sourceName": "contracts/WithConst.sol", | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "initialValue", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_format": "hh-sol-artifact-1", | |
"contractName": "WithImmAddr", | |
"sourceName": "contracts/WithImmAddr.sol", | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "initialValue", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "691396ad53d045b6e57dad2961f33377", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithImmAddr.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract WithImmAddr {\n uint256 public immutable value;\n address public immutable deployer;\n\n constructor(uint256 initialValue, address initialDeployer) {\n value = initialValue;\n deployer = initialDeployer;\n }\n\n function greet() public returns(uint256) {\n return value;\n }\n}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "6e528676131d75bd50ad7a6ea7219590", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithLib.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nlibrary Greeter {\n function greet() public pure returns(string memory) {\n return \"Salutations!\";\n }\n}\n\ncontract WithLib {\n uint256 public value;\n constructor(uint256 initialValue) {\n value = initialValue;\n }\n\n function greet() public pure returns(string memory) {\n return Greeter.greet();\n }\n}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "c0a5b134cb541060e191d89568ee7726", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithImm.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract WithImm {\n uint256 public immutable value;\n constructor(uint256 initialValue) {\n value = initialValue;\n }\n\n function greet() public returns(uint256) {\n return value;\n }\n}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "f46b40d4bd8359107c27982f890faa9b", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithRevert.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract WithRevert {\n uint256 public value;\n constructor(uint256 initialValue) {\n require(initialValue > 0, \"initial value must be positive\");\n value = initialValue;\n }\n\n function greet() public returns(uint256) {\n return value;\n }\n}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "e512b6d18e1b98f6f130bcc3710b3a41", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithVarArgs.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract WithVarArgs {\n string __firstName;\n string __lastName;\n constructor(string memory _firstName, string memory _lastName) {\n __firstName = _firstName;\n __lastName = _lastName;\n }\n\n function firstName() public returns(string memory) {\n return __firstName;\n }\n\n function lastName() public returns(string memory) {\n return __lastName;\n }\n}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "92cee3a25070d1793d4697a3252d7dc4", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/WithConst.sol": { | |
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract WithConst {\n uint256 public value;\n constructor(uint256 initialValue) {\n value = initialValue;\n }\n\n function greet() public returns(uint256) {\n return value;\n }\n}\n" |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "d152393456c388db1a14d8a833bc35a9", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/VaultUUPS.sol": { |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "1c0394f32c0868f623d0d7a071078ffb", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.2", | |
"solcLongVersion": "0.8.2+commit.661d1103", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/Proxiable.sol": { |
NewerOlder