Skip to content

Commit

Permalink
Demo guide on running Uniswap V3 on PArSEC
Browse files Browse the repository at this point in the history
See: docs/uniswap_demo/uniswap_demo.md

Signed-off-by: Alexander Jung <[email protected]>
  • Loading branch information
AlexRamRam committed Aug 24, 2023
1 parent 2b5fd84 commit 833e338
Show file tree
Hide file tree
Showing 2 changed files with 445 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/uniswap_demo/MyTokens.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract WETHToken is ERC20 {
constructor(uint256 initialSupply) ERC20("Fake Wrapped ETH", "WETH") {
_mint(msg.sender, initialSupply);
}
}

contract WFOOToken is ERC20 {
constructor(uint256 initialSupply) ERC20("Foo Token", "WFOO") {
_mint(msg.sender, initialSupply);
}
}

contract WBARToken is ERC20 {
constructor(uint256 initialSupply) ERC20("Bar Token", "WBAR") {
_mint(msg.sender, initialSupply);
}
}
Loading

0 comments on commit 833e338

Please sign in to comment.