Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solidity-verifier/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ forge build
forge test
```

Herodotus Dev - 2023
Herodotus Dev Ltd - 2023
2 changes: 1 addition & 1 deletion solidity-verifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "herodotus-solidity-sharp-verifier",
"version": "1.0.0",
"description": "Solidity SHARP verifier",
"author": "Herodotus Dev",
"author": "Herodotus Dev Ltd",
"files": [
"src/**/*.sol"
],
Expand Down
2 changes: 1 addition & 1 deletion solidity-verifier/script/AggregatorsFactory.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "forge-std/Script.sol";
Expand Down
4 changes: 2 additions & 2 deletions solidity-verifier/src/AggregatorsFactory.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import {Clones} from "openzeppelin-contracts/contracts/proxy/Clones.sol";
Expand All @@ -7,7 +7,7 @@ import {AccessControl} from "openzeppelin-contracts/contracts/access/AccessContr
import {SharpFactsAggregator} from "../src/SharpFactsAggregator.sol";

/// @title AggregatorsFactory
/// @author Herodotus Dev
/// @author Herodotus Dev Ltd
/// @notice A factory contract for creating new SharpFactsAggregator contracts
/// and upgrading new one's starter template
contract AggregatorsFactory is AccessControl {
Expand Down
4 changes: 2 additions & 2 deletions solidity-verifier/src/SharpFactsAggregator.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import {Initializable} from "openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol";
Expand All @@ -9,7 +9,7 @@ import {Uint256Splitter} from "./lib/Uint256Splitter.sol";

/// @title SharpFactsAggregator
/// @dev Aggregator contract to handle SHARP job outputs and update the global aggregator state.
/// @author Herodotus Dev
/// @author Herodotus Dev Ltd
/// ------------------
/// Example:
/// Blocks inside brackets are the ones processed during their SHARP job execution
Expand Down
2 changes: 1 addition & 1 deletion solidity-verifier/src/interfaces/IFactsRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

interface IFactsRegistry {
Expand Down
2 changes: 1 addition & 1 deletion solidity-verifier/src/lib/Uint256Splitter.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

library Uint256Splitter {
Expand Down
2 changes: 1 addition & 1 deletion solidity-verifier/test/AggregatorsFactory.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion solidity-verifier/test/SharpFactsAggregator.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

import "forge-std/Test.sol";
Expand Down