LogoLogo
Block ExplorerDiscordTwitterMirror
  • What Is Canto?
  • Free Public Infrastructure
    • NOTE
    • Canto Lending Market
    • Canto DEX
  • Canto Neofinance
    • Overview
    • Application Specific Dollar
  • User Guides
    • Connecting to Canto
    • Bridging Assets
      • Bridging to Canto
      • Bridging from Canto
      • Synapse Bridge
      • Celer cBridge
    • Providing Liquidity
    • Lending & Borrowing
    • Staking
    • Governance
  • EVM Development
    • Overview
    • Quickstart Guide
    • NOTE, DEX, and Lending Market
    • Contract Secured Revenue (CSR)
    • Verifying Contracts
    • Contract Addresses
    • Testnet
  • Running a Node
    • Validators
      • Quickstart Guide
      • Useful Commands
      • Snapshots
      • FAQ
      • Troubleshooting
      • Uptime
      • Slashing
    • Archive Node
    • Graph Node (Subgraphs)
  • Technical Reference
    • Application Specific Dollar
      • asdOFT
      • asdRouter
      • asdUSDC
    • Liquidity Coordinator
      • VotingEscrow
      • GaugeController
      • LendingLedger
      • LiquidityGauge
    • Architecture & Design
      • Onboarding Module
      • Gravity Bridge
      • NOTE Design
      • Canto Lending Protocol
      • IBC Token Recovery
    • Governance
      • Governance Module
      • GovShuttle Module
      • Lending Market Governance
    • Tokenomics
    • Audits
Powered by GitBook
On this page
  • Methods
  • deposit
  • withdraw
  • recover
  1. Technical Reference
  2. Application Specific Dollar

asdUSDC

PreviousasdRouterNextLiquidity Coordinator

Last updated 1 year ago

is a wrapper contract for whitelisted representations of USDC. This enables compatibility with various representations of USDC, such as USDC.e.

Users do not need to interact with the asdUDC contract directly when depositing USDC into an asD token from another chain, as wrapping is performed by the asdRouter.

Methods

deposit

The deposit(address _usdcVersion, uint256 _amount) method allows users to wrap whitelisted USDC tokens, minting asdUSDC to their address.

Before calling this method, a user must approve the contract to spend their USDC.

withdraw

The withdraw(address _usdcVersion, uint256 _amount) method enables users to unwrap asdUSDC, burning tokens to receive the specified USDC token.

recover

The recover(address _usdcVersion) method is used to recover USDC that was sent to the contract by mistake, minting asdUSDC to the user. Optionally, this asdUSDC can then be withdrawn.

asdUSDC