-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from ipelaez-simtlix/master
BGA-363 WBTC smart contract deployment on Tron
- Loading branch information
Showing
66 changed files
with
5,159 additions
and
548 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 |
---|---|---|
@@ -1,22 +1,7 @@ | ||
This repository has the contracts that implement the wrapped btc token. | ||
This repository has the contracts that implement the wrapped tokens. | ||
|
||
# Installation | ||
|
||
npm install | ||
|
||
# Compilation | ||
|
||
npm run compile | ||
|
||
# Testing | ||
|
||
npm test | ||
|
||
# Testing Coverage | ||
|
||
npm run coverage | ||
|
||
# Deployment | ||
|
||
node scripts/deployer.js --input-file [file] --gas-price-gwei [gwei] --rpc-url [url] | ||
# Ethereum network | ||
[ethereumV2/README.md](ethereumV2/README.md) | ||
|
||
# Tron network | ||
[tron/README.md](tron/README.md) |
File renamed without changes.
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,21 @@ | ||
This repository has the contracts that implement the wrapped btc token on Ethereum network. | ||
|
||
# Installation | ||
|
||
npm install | ||
|
||
# Compilation | ||
|
||
npm run compile | ||
|
||
# Testing | ||
|
||
npm test | ||
|
||
# Testing Coverage | ||
|
||
npm run coverage | ||
|
||
# Deployment | ||
|
||
node deployer.js --input-file [file] --gas-price-gwei [gwei] --rpc-url [url] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,12 @@ | ||
pragma solidity 0.4.24; | ||
|
||
import "openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol"; | ||
import "openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol"; | ||
import "openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol"; | ||
import "openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol"; | ||
import "openzeppelin-solidity/contracts/token/ERC20/PausableToken.sol"; | ||
import "../token/WrappedToken.sol"; | ||
|
||
|
||
contract WETH is WrappedToken, DetailedERC20("Wrapped ETH", "WETH", 18) {} | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.