EVM Side Setup
Here we're going to use http://remix.ethereum.org/ to compile and deploy our smart contracts
atomictokenpeg1155.sol
ERC1155Tradable.sol
First let's upload all of the files in ./contracts/eth
atomictokenpeg1155.sol
ERC1155Tradable.sol
link.sol
bitManipulation.sol
IOwned.sol
IERC1155Tradable.sol
ContentMixin.sol
NativeMetaTransaction.sol
EIP712Base.sol
Initializable.sol
MockProxyRegistry.sol

change import of link lib in
atomictokenpeg1155.sol
import "../link/link.sol";
to
import "./link.sol";
// and
import { bitManipulation } from "../bitManipulation/bitManipulation.sol";
to
import { bitManipulation } from "./bitManipulation.sol";
atomictokenpeg1155.sol
and atomicnft.sol
should both compile when you click on them.
Last updated
Was this helpful?