-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo guide on running Uniswap V3 on PArSEC
See: docs/uniswap_demo/uniswap_demo.md Signed-off-by: Alexander Jung <[email protected]>
- Loading branch information
1 parent
2b5fd84
commit 4931bcd
Showing
2 changed files
with
444 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |
Oops, something went wrong.