Skip to content

Commit

Permalink
chore: license update across contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
wilhempujar committed Jun 17, 2022
1 parent afe4beb commit d119cca
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion contracts/Details.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import './SLA.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/MessengerRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import './interfaces/IMessenger.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/PeriodRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/SLA.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/SLARegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/SLORegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/StakeRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/Staking.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/dToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IERC20Query.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.9;

interface IERC20Query {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IMessenger.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

import '@openzeppelin/contracts/access/Ownable.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IMessengerRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

interface IMessengerRegistry {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IPeriodRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

interface IPeriodRegistry {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISLARegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

interface ISLARegistry {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISLORegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

interface ISLORegistry {
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IStakeRegistry.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.9;

interface IStakeRegistry {
Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/StringUtils.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.9;

library StringUtils {
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/MockMessenger.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.9;

import '@chainlink/contracts/src/v0.8/ChainlinkClient.sol';
Expand Down

0 comments on commit d119cca

Please sign in to comment.