Skip to content

Commit 1ed6233

Browse files
committed
chore: reverting license change to reduce diff
1 parent 27bc0cc commit 1ed6233

File tree

95 files changed

+95
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+95
-95
lines changed

contracts/src/bridge/Bridge.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/bridge/IBridge.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/IDelayedMessageProvider.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/IInbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/IOutbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/IOwnable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/ISequencerInbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/bridge/Inbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/bridge/Messages.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/bridge/Outbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/bridge/SequencerInbox.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/challenge/ChallengeLib.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/challenge/ChallengeManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/challenge/IChallengeManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/challenge/IChallengeResultReceiver.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/AddressAliasHelper.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/AdminFallbackProxy.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/Constants.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/libraries/CryptographyPrimitives.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/DelegateCallAware.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/libraries/Error.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/libraries/IGasRefunder.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
// solhint-disable-next-line compiler-version

contracts/src/libraries/MerkleLib.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/libraries/MessageTypes.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.4;

contracts/src/mocks/BridgeStub.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/BridgeUnproxied.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/InboxStub.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/MockResultReceiver.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/ProxyAdminForBinding.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/SequencerInboxStub.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/Simple.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/SimpleProxy.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/SingleExecutionChallenge.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/mocks/TimedOutChallengeManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/node-interface/NodeInterface.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/node-interface/NodeInterfaceDebug.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/osp/HashProofHelper.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/IOneStepProofEntry.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/IOneStepProver.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/OneStepProofEntry.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/OneStepProver0.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/OneStepProverHostIo.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/OneStepProverMath.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/osp/OneStepProverMemory.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity ^0.8.0;

contracts/src/precompiles/ArbAddressTable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbAggregator.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbBLS.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbDebug.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2023, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbFunctionTable.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbGasInfo.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbInfo.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbOwner.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbOwnerPublic.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbRetryableTx.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbStatistics.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

contracts/src/precompiles/ArbSys.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright 2021-2022, Offchain Labs, Inc.
2-
// For license information, see https://github.com/OffchainLabs/nitro-contracts/blob/main/LICENSE
2+
// For license information, see https://github.com/nitro/blob/master/LICENSE
33
// SPDX-License-Identifier: BUSL-1.1
44

55
pragma solidity >=0.4.21 <0.9.0;

0 commit comments

Comments
 (0)