Migration to Lit and AA
  • Overview
  • Getting Started
    • Installation
    • Deployment
    • FAQ
  • Reference
    • Onboarding and Wallet SDK
      • Concepts
      • Wagmi config
      • @tria-sdk/core
        • Auth Controller [INTERNAL]
        • User Controller
      • @tria-sdk/web [INTERNAL]
        • Lit Controller
        • Keyring Controller
        • Wallet Controller
        • Gas Abstraction Wallet Controller ⛽️
        • Fee Controller
        • Solana Wallet
        • WalletConnect Controller
        • 🚂Execution Engine Controller
      • @tria-sdk/connect
        • TriaProvider
        • Actions
        • Hooks
          • Internal hooks
        • Constants [Internal]
      • @tria-sdk/authenticate
        • Application
      • @tria-sdk/authenticate-web
    • Supported Networks
    • How to create Debridge Solana Calldata
    • New concepts [Internal]
    • Gas Abstraction Integrations [Internal]
  • EIP1193 - Provider (WIP)
Powered by GitBook
On this page
  1. Getting Started

FAQ

Explore our Frequently Asked Questions (FAQs) for quick answers to common queries

PreviousDeploymentNextOnboarding and Wallet SDK

Last updated 1 year ago

The user is able to login but not perform any transactions?

Please ensure that you are using the correct meta token for your hosted domain Refer :

My auth and wallet UI looks broken

Please ensure that you are following our installation guidelines properly

  1. TriaLogin component should be imported at root level of your app and not under a specific page/component.

  2. Please ensure that you redirect the user to your apps "/login" page once user disconnects

The user is getting logged in but the wallet icon is not visible?

Please make sure that you are correction passing the wallet positions It should be sent in terms of viewport height/width as follows:

buttonPosition={{ x: '0vw', y: '0vh' }} //can change it with your convenience
I cannot see my default chain on wallet

Please ensure that you are sending the default chain properly as follows:

defaultChain='MUMBAI'
supportedChains={[
            'MUMBAI',
            'POLYGON',
            'METIS',
            'METIS-TESTNET',
            'MANTLE',
            'MANTA-TESTNET',
            'MANTA',
            'MANTLE-TESTNET',
            'FUSE',
            'ETH',
            'BINANCE',
            'OPTIMISM',
            'ARBITRUM',
            'AVALANCHE',
            'FANTOM',
]}
Unity login/signup is not working

Please ensure that you are using the correct meta token for your hosted domain Refer :

refer
Installation guide
Installation guide