Union Protocol (v2)
  • Introduction
  • Important Links
  • 🌐Protocol Overview
    • How Union Works
    • Plain English (Detailed)
    • Use Cases
    • v1->v2 changelog
    • FAQ
  • ⚖️Governance
    • UNION DAO
      • Community Delegates
      • Gaurdians & Multisigs
    • UNION Token
    • Governance Process
      • Technical Implementations
    • Glossary of Terms
  • 🔨Developers
    • Union Contracts Overview
    • Contract ABIs & Addresses
    • Core Components
      • UserManager
        • UserManagerERC20
        • UserManagerDAI
      • uToken
        • UDai
        • UErc20
      • AssetManager
      • Comptroller
      • MarketRegistry
      • InterestRateModel
      • PureTokenAdapter
      • AaveV3Adapter
    • Governance
      • UnionToken
        • ArbUnionWrapper
        • ArbUnion
        • OpUnion
      • Governor
      • Timelock
    • Union SDK
    • Union Data
      • Documentation
    • Peripheral & Fun Contracts
    • GraphQL Endpoints
  • 🚴User Guides
    • Becoming a Member
    • How Bridging Tokens Works
      • Bridge UNION token from Arbitrum to Ethereum
    • Voting & Delegation
      • Delegation from Gnosis
    • Vouching & Lending
  • 👩‍💻Developer Guides
    • In Progress
  • ⚠️Risk
    • Types of Risk
Powered by GitBook
On this page
  • Functions:
  • repayBorrowWithERC20Permit( address borrower, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s )

Was this helpful?

Edit on GitHub
  1. Developers
  2. Core Components
  3. uToken

UErc20

Inherited from UToken; accept ERC20 token of the standard Permit interface

Functions:

  • [`repayBorrowWithERC20Permit( address borrower, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s )`](uerc20.md#repayborrowwitherc20permit-address-borrower-uint256-amount-uint256-deadline-uint8-v-bytes32-r-bytes3)

repayBorrowWithERC20Permit( address borrower, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s )

Repay erc20 token with permit

PreviousUDaiNextAssetManager

Last updated 2 years ago

Was this helpful?

🔨