Teneo Finance
  • Welcome to the Teneo Project
  • Introduction
    • ⚙️ How it works ⚙️
    • 🙋🏻 Example: Ether and Pether
    • 🙋🏿‍♂️ Example: Adam and the Arbitrage
    • 🙋🏽‍♀️ Example: Paula the Project CEO
  • tenXXX Token Ecosystem
    • 💱 tenXXX Tokens 💱
    • ⛓⚖️ AMM ⚖️⛓
    • ⛓ Underlying Token ⛓
    • ⚖️ Liquidity Pools on DEX ⚖️
    • 🏛👛 DAO Wallet 👛🏛
  • Teneo Token Ecosystem
    • 💎Teneo Tokenomics
    • 🚆ROADMAP
  • Interface Guide
    • 🔛Swap
    • 🥃Add Liquidity
    • 🏦Get DEI
    • 🌉Bridge $TEN
  • MISC
    • 🔛Contracts
    • 🥃Audits
  • FAQ
    • 💎Get tenXXX Token
    • ❓FAQ for Hodler
    • 🐞Known Issues
      • 🐛DEX Swap UI
      • 🐞Wrong decimals at scan sides
  • Testnet
    • 🥸Testnet Guide
    • 📔Testnet Contracts
  • Contract Documentation
    • Contracts on BSC Mainnet
    • AMM ERC
    • AMM ETH
    • TenToken
Powered by GitBook
On this page

Was this helpful?

  1. Contract Documentation

TenToken

This side is not complete yet!

Functions

  • getActualFees() external view returns (uint32, uint32)

getActualFees() external view returns (uint32, uint32)

Returns the actual fees.

Excample - div, mult = getActualFees() - Send 100000 wei of ten-Token, div = 10000, mult = 12 - Receiver will recieve 100000 - (100000 * 12 / 10000) => 99880

function getActualFees() external view returns (uint32, uint32) {
        return (FEE_DIVISOR, _fee + _daoTxnFee);
    }
PreviousAMM ETH

Last updated 3 years ago

Was this helpful?