Skip to content

Commit

Permalink
Update contracts folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
evercoinx committed Nov 25, 2024
1 parent de70455 commit 4eff394
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.7;

import { RLPReader } from "../libraries/RLPReader.sol";
import { MerklePatriciaProof } from "../libraries/MerklePatriciaProof.sol";
import { Merkle } from "../libraries/Merkle.sol";
import { ExitPayloadReader } from "../libraries/ExitPayloadReader.sol";
import { RLPReader } from "./libraries/RLPReader.sol";
import { MerklePatriciaProof } from "./libraries/MerklePatriciaProof.sol";
import { Merkle } from "./libraries/Merkle.sol";
import { ExitPayloadReader } from "./libraries/ExitPayloadReader.sol";

interface IFxStateSender {
function sendMessageToChild(
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pragma solidity 0.8.7;

import { AccessControl } from "@openzeppelin/contracts/access/AccessControl.sol";
import { IRateProvider } from "../interfaces/IRateProvider.sol";
import { IFxStateChildTunnel } from "../interfaces/IFxStateChildTunnel.sol";
import { IRateProvider } from "./interfaces/IRateProvider.sol";
import { IFxStateChildTunnel } from "./interfaces/IFxStateChildTunnel.sol";

/**
* @title RateProvider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.8;
pragma solidity 0.8.7;

import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import { AccessControlUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import { ERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import { ERC20PermitUpgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20PermitUpgradeable.sol";
import { IChildToken } from "../interfaces/IChildToken.sol";
import { IChildToken } from "./interfaces/IChildToken.sol";

contract UChildERC20 is
ContextUpgradeable,
Expand Down
4 changes: 2 additions & 2 deletions docs/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
- [Ethereum Mainnet (Prod)](<https://github.com/stader-labs/maticX/wiki/Ethereum-Mainnet-(Prod)>)
- [Ethereum Mainnet (Staging)](<https://github.com/stader-labs/maticX/wiki/Ethereum-Mainnet-(Staging)>)
- [Polygon Mainnet (Prod)](<https://github.com/stader-labs/maticX/wiki/Polygon-Mainnet-(Prod)>)
- [Sepolia Testnet](<https://github.com/stader-labs/maticX/wiki/Sepolia-Testnet>)
- [Amoy Testnet](<https://github.com/stader-labs/maticX/wiki/Amoy-Testnet>)
- [Sepolia Testnet](https://github.com/stader-labs/maticX/wiki/Sepolia-Testnet)
- [Amoy Testnet](https://github.com/stader-labs/maticX/wiki/Amoy-Testnet)
2 changes: 1 addition & 1 deletion docs/Sepolia-Testnet.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Deployment Information

### ProxyAdmin

- Address: [0xFD837d45dd6Af18D039122301C3331D4A4307351](https://sepolia.etherscan.io/address/0xFD837d45dd6Af18D039122301C3331D4A4307351)
Expand Down

0 comments on commit 4eff394

Please sign in to comment.