Leo Wallet Docs
Home
  • Wallet Adapter for Aleo Apps
  • packages
    • ui
      • docs
        • functions
          • useWalletModal
        • interfaces
          • WalletIconProps
          • WalletModalContextState
          • WalletModalProps
          • WalletModalProviderProps
        • variables
          • WalletConnectButton
          • WalletDisconnectButton
          • WalletIcon
          • WalletModal
          • WalletModalButton
          • WalletModalContext
          • WalletModalProvider
          • WalletMultiButton
    • core
      • base
        • docs
          • classes
            • BaseMessageSignerWalletAdapter
            • BaseSignerWalletAdapter
            • BaseWalletAdapter
            • Deployment
            • EventEmitter
            • Transaction
            • Transition
            • WalletAccountError
            • WalletConfigError
            • WalletConnectionError
            • WalletDecryptionError
            • WalletDecryptionNotAllowedError
            • WalletDisconnectedError
            • WalletDisconnectionError
            • WalletError
            • WalletKeypairError
            • WalletLoadError
            • WalletNotConnectedError
            • WalletNotReadyError
            • WalletNotSelectedError
            • WalletPublicKeyError
            • WalletRecordsError
            • WalletSendTransactionError
            • WalletSignMessageError
            • WalletSignTransactionError
            • WalletTimeoutError
            • WalletTransactionError
            • WalletWindowBlockedError
            • WalletWindowClosedError
          • enumerations
            • DecryptPermission
            • WalletAdapterNetwork
            • WalletReadyState
          • functions
            • scopePollingDetectionStrategy
          • interfaces
            • AleoDeployment
            • AleoTransaction
            • AleoTransition
            • MessageSignerWalletAdapterProps
            • SignerWalletAdapterProps
            • WalletAdapterEvents
            • WalletAdapterProps
          • type-aliases
            • Adapter
            • MessageSignerWalletAdapter
            • SignerWalletAdapter
            • SupportedTransactionVersions
            • TransactionOrVersionedTransaction
            • WalletAdapter
            • WalletName
          • @demox-labs
            • namespaces
              • EventEmitter
                • interfaces
                  • EventEmitterStatic
                  • ListenerFn
                • type-aliases
                  • ArgumentMap
                  • EventArgs
                  • EventListener
                  • EventNames
                  • ValidEventTypes
                • variables
                  • EventEmitter
      • react
        • docs
          • functions
            • useLocalStorage
            • useWallet
          • interfaces
            • Wallet
            • WalletContextState
            • WalletProviderProps
          • variables
            • WalletContext
            • WalletProvider
    • wallets
      • leo
        • docs
          • classes
            • LeoWalletAdapter
          • interfaces
            • LeoWallet
            • LeoWalletAdapterConfig
            • LeoWalletEvents
            • LeoWindow
          • variables
            • LeoWalletName
Powered by GitBook
On this page
  • Class: Transaction
  • Implements
  • Constructors
  • Properties
  • Methods

Was this helpful?

  1. packages
  2. core
  3. base
  4. docs
  5. classes

Transaction

@demox-labs/aleo-wallet-adapter-base


@demox-labs/aleo-wallet-adapter-base / Transaction

Class: Transaction

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:28

Implements

  • AleoTransaction

Constructors

Constructor

new Transaction(address, chainId, transitions, fee, feePrivate): Transaction

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:35

Parameters

address

string

chainId

string

transitions

AleoTransition[]

fee

number

feePrivate

boolean = true

Returns

Transaction

Properties

address

address: string

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:29

Implementation of

AleoTransaction.address


chainId

chainId: string

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:30

Implementation of

AleoTransaction.chainId


fee

fee: number

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:32

Implementation of

AleoTransaction.fee


feePrivate

feePrivate: boolean

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:33

Implementation of

AleoTransaction.feePrivate


transitions

transitions: AleoTransition[]

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:31

Implementation of

AleoTransaction.transitions

Methods

createTransaction()

static createTransaction(address, chainId, program, functionName, inputs, fee, feePrivate): Transaction

Defined in: aleo-wallet-adapter/packages/core/base/transaction.ts:43

Parameters

address

string

chainId

string

program

string

functionName

string

inputs

any[]

fee

number

feePrivate

boolean = true

Returns

Transaction

PreviousEventEmitterNextTransition

Last updated 1 month ago

Was this helpful?