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
/** | |
*Submitted for verification at BscScan.com on 2022-07-26 | |
*/ | |
/** | |
*Submitted for verification at BscScan.com on 2022-05-07 | |
*/ | |
// SPDX-License-Identifier: MIT | |
pragma solidity =0.7.6; |
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
import { AddressMap } from '../types' | |
import { ChainId } from '../enums' | |
export const SUSHI_ADDRESS: AddressMap = { | |
[ChainId.ETHEREUM]: '0x6B3595068778DD592e39A122f4f5a5cF09C90fE2', | |
[ChainId.ROPSTEN]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', | |
[ChainId.RINKEBY]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', | |
[ChainId.GÖRLI]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', | |
[ChainId.KOVAN]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', |
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
{ | |
"name": "Set", | |
"logoURI": "https://raw.githubusercontent.com/SetProtocol/uniswap-tokenlist/main/assets/set-logo.svg", | |
"keywords": ["set", "tokensets", "defi"], | |
"timestamp": "2020-10-19T12:32:17.000+00:00", | |
"tokens": [ | |
{ | |
"chainId": 3502, | |
"address": "0x1003b56F9AC197A780037FA54c287144067bB43D", | |
"name": "BUSD Token TEST", |
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
// Dependency file: contracts/interfaces/IChainConfig.sol | |
// SPDX-License-Identifier: GPL-3.0-only | |
// pragma solidity ^0.8.0; | |
interface IChainConfig { | |
function getActiveValidatorsLength() external view returns (uint32); | |
function setActiveValidatorsLength(uint32 newValue) external; |
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
{ | |
"API": { | |
"HTTPHeaders": { | |
"Access-Control-Allow-Methods": [ | |
"PUT", | |
"POST" | |
], | |
"Access-Control-Allow-Origin": [ | |
"http://xx.xx.xx.xx:5001", | |
"http://localhost:3000", |
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
pragma solidity ^0.6.6; | |
import "@chainlink/contracts/src/v0.6/interfaces/AggregatorV3Interface.sol"; | |
contract ChainlinkOracle { | |
AggregatorV3Interface internal priceFeed; | |
/** | |
* Network: Kovan |
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
SRM | |
POLY | |
UNFI | |
MITH | |
XTZ | |
EGLD | |
SOL | |
XVS | |
ARPA | |
LTC |
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
[binance_user_config] | |
api_key= | |
api_secret_key= | |
current_coin= | |
bridge=USDT | |
tld=com | |
hourToKeepScoutHistory=1 | |
scout_multiplier=5 | |
scout_sleep_time=1 | |
strategy=ratio_adjust |
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
ETH | |
NEAR | |
SOL | |
XVS | |
ARPA | |
LTC | |
ZEN | |
BLZ | |
ERN | |
ALPHA |
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
// SPDX-License-Identifier: MIT | |
pragma solidity 0.6.12; | |
import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/contracts/math/SafeMath.sol"; | |
import "./TokenineRewardPoint.sol"; | |