From 7d24e5ea6f308b9fe0eb91b18d99dcf31c85940d Mon Sep 17 00:00:00 2001 From: siftal Date: Wed, 15 Dec 2021 15:21:07 -0500 Subject: [PATCH] update imports --- BrightID.sol | 6 +++--- Distribution.sol | 6 +++--- StoppableBrightID.sol | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/BrightID.sol b/BrightID.sol index 6eaee3c..7c719cd 100644 --- a/BrightID.sol +++ b/BrightID.sol @@ -1,8 +1,8 @@ pragma solidity ^0.6.3; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol"; -import "https://github.com/BrightID/BrightID-SmartContract/blob/master/IBrightID.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/access/Ownable.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/token/ERC20/ERC20.sol"; +import "./IBrightID.sol"; contract BrightID is Ownable, IBrightID { IERC20 public verifierToken; diff --git a/Distribution.sol b/Distribution.sol index 8b01ba1..885296e 100644 --- a/Distribution.sol +++ b/Distribution.sol @@ -1,8 +1,8 @@ pragma solidity ^0.6.3; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol"; -import "https://github.com/BrightID/BrightID-SmartContract/blob/master/IBrightID.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/access/Ownable.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/token/ERC20/ERC20.sol"; +import "./IBrightID.sol"; contract Distribution is Ownable { using SafeMath for uint256; diff --git a/StoppableBrightID.sol b/StoppableBrightID.sol index e5d21d3..136c73c 100644 --- a/StoppableBrightID.sol +++ b/StoppableBrightID.sol @@ -1,8 +1,8 @@ pragma solidity ^0.6.3; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; -import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol"; -import "https://github.com/BrightID/BrightID-SmartContract/blob/master/IBrightID.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/access/Ownable.sol"; +import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/token/ERC20/ERC20.sol"; +import "./IBrightID.sol"; contract StoppableBrightID is Ownable, IBrightID { IERC20 public supervisorToken;