Module: Privy::Models::Wallets::TransactionGetParams::Chain

Extended by:
Internal::Type::Enum
Defined in:
lib/privy/models/wallets/transaction_get_params.rb

Constant Summary collapse

ETHEREUM =
:ethereum
ARBITRUM =
:arbitrum
BASE =
:base
TEMPO =
:tempo
LINEA =
:linea
OPTIMISM =
:optimism
POLYGON =
:polygon
SOLANA =
:solana
SEPOLIA =
:sepolia

Instance Method Summary collapse

Methods included from Internal::Type::Enum

==, ===, coerce, dump, hash, inspect, to_sorbet_type, values

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Instance Method Details

#initialize(wallet_id:, chain:, token: nil, asset: nil, cursor: nil, limit: nil, tx_hash: nil, request_options: {}) ⇒ Object

Some parameter documentations has been truncated, see Privy::Models::Wallets::TransactionGetParams for more details.

Parameters:



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/privy/models/wallets/transaction_get_params.rb', line 71

module Chain
  extend Privy::Internal::Type::Enum

  ETHEREUM = :ethereum
  ARBITRUM = :arbitrum
  BASE = :base
  TEMPO = :tempo
  LINEA = :linea
  OPTIMISM = :optimism
  POLYGON = :polygon
  SOLANA = :solana
  SEPOLIA = :sepolia

  # @!method self.values
  #   @return [Array<Symbol>]
end