All Projects β†’ yearn β†’ itoken

yearn / itoken

Licence: MIT License
yToken wrappers for automated investment strategy tokenization

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to itoken

Setheum
Setheum Network - Islamic Finance DeFi, Multi-Stablecoins, Payments, EVM, DeFi on Rockets to Heaven => πŸš€ready for hackingπŸš€
Stars: ✭ 15 (-78.87%)
Mutual labels:  erc20, defi
defi-dapps-solidity-smart-contracts
This is a Web 3 Smart Contract learning and teaching repo which will be used to teach students all across Pakistan.
Stars: ✭ 241 (+239.44%)
Mutual labels:  erc20, defi
augmented-finance-protocol
High-yield lending and low-rate borrowing DeFi protocol
Stars: ✭ 28 (-60.56%)
Mutual labels:  erc20, defi
zeneth
🏡️ Let Your ETH Chill β€” Gasless Ethereum account abstraction with Flashbots
Stars: ✭ 112 (+57.75%)
Mutual labels:  erc20, defi
Wallet3
A secure mobile wallet for web3
Stars: ✭ 13 (-81.69%)
Mutual labels:  erc20, defi
setprotocol.js
πŸ₯ž Javascript library for a collateralized basket of ERC20 tokens
Stars: ✭ 57 (-19.72%)
Mutual labels:  erc20, defi
ocean.js
πŸ¦‘ Ocean Protocol JavaScript library to privately & securely publish, exchange, and consume data.
Stars: ✭ 77 (+8.45%)
Mutual labels:  defi
quipuswap-webapp
🌐 πŸ§™β€β™‚οΈ Decentralized application UI for Quipuswap protocol.
Stars: ✭ 21 (-70.42%)
Mutual labels:  defi
DeFi-Developer-Road-Map
DeFi Developer roadmap is a curated Web3.0 Developer handbook which includes a list of the best tools for DApps, development resources and lifehacks.
Stars: ✭ 5,658 (+7869.01%)
Mutual labels:  defi
apr-oracle
On-chain APR aggregator for dYdX, Fulcrum, Compound, and Aave
Stars: ✭ 21 (-70.42%)
Mutual labels:  defi
tokensubscription.com
β°πŸ’°πŸ€  Set-it-and-forget-it token subscriptions on the Ethereum mainnet. #Winner #WyoHackathon
Stars: ✭ 81 (+14.08%)
Mutual labels:  erc20
dala-smart-contracts
Smart contracts for the Dala token sale and ERC20 token
Stars: ✭ 19 (-73.24%)
Mutual labels:  erc20
likecoin-contracts
Token contracts of Like Coin
Stars: ✭ 22 (-69.01%)
Mutual labels:  erc20
ygov-finance
Web repository for yfi staking and voting
Stars: ✭ 54 (-23.94%)
Mutual labels:  defi
arbitrage-bot
An arbitrage bot that detects arbitrage opportunities between pancake and bakery swaps and manages flash swap calls, to the flash swap contract
Stars: ✭ 132 (+85.92%)
Mutual labels:  defi
desktop
CoinApp is a simple to use minimal Cryptocurrency Wallet for Ethereum, ERC20 Tokens, Bitcoin and Litecoin built for Windows, Mac and Linux.
Stars: ✭ 60 (-15.49%)
Mutual labels:  erc20
uniswap-python
πŸ¦„ The unofficial Python client for the Uniswap exchange.
Stars: ✭ 533 (+650.7%)
Mutual labels:  defi
whale
The super index for DeFi Blockchain to simplify DeFi light implementation. 🚧 Consolidating into DeFiCh/jellyfish as a single monorepo project.
Stars: ✭ 17 (-76.06%)
Mutual labels:  defi
bitdegree-token-crowdsale
Token Website
Stars: ✭ 26 (-63.38%)
Mutual labels:  erc20
awesome-waves
Curated list of awesome things for development on Waves blockchain.
Stars: ✭ 60 (-15.49%)
Mutual labels:  defi

Documentation

iearn.finance

Smart Contract Interface

Contract ABI Address
iEther JSON 0x9Dde7cdd09dbed542fC422d18d89A589fA9fD4C0

iToken Interface

{% tabs %} {% tab title="IIEther.sol" %}

// Solidity Interface

interface IIEther {
  // Invest ETH
  function invest() external payable;
  function calcPoolValueInETH() external view returns (uint);
  function getPricePerFullShare() external view returns (uint);
  // Redeem any invested tokens from the pool
  function redeem(uint256 _shares) external;
}

{% endtab %} {% endtabs %}

ERC20 Token Interface

{% tabs %} {% tab title="TokenInterface.sol" %}

// https://theethereum.wiki/w/index.php/ERC20_Token_Standard
contract ERC20Interface {
    function totalSupply() public view returns (uint);
    function balanceOf(address tokenOwner) public view returns (uint balance);
    function allowance(address tokenOwner, address spender) public view returns (uint remaining);
    function transfer(address to, uint tokens) public returns (bool success);
    function approve(address spender, uint tokens) public returns (bool success);
    function transferFrom(address from, address to, uint tokens) public returns (bool success);
    // optional
    function name() external view returns (string);
    function symbol() external view returns (string);
    function decimals() external view returns (string);

    event Transfer(address indexed from, address indexed to, uint tokens);
    event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}

{% endtab %}

{% endtabs %}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].