Module: Privy::Models::Wallets::TransactionGetParams::Chain
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/privy/models/wallets/transaction_get_params.rb,
sig/privy/models/wallets/transaction_get_params.rbs
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
-
#initialize(wallet_id:, chain:, token: nil, asset: nil, cursor: nil, include_archived: nil, limit: nil, tx_hash: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Privy::Models::Wallets::TransactionGetParams for more details.
- #self?.values ⇒ ::Array[Privy::Models::Wallets::TransactionGetParams::chain]
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values, 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, include_archived: nil, limit: nil, tx_hash: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Privy::Models::Wallets::TransactionGetParams for more details.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/privy/models/wallets/transaction_get_params.rb', line 79 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 |
#self?.values ⇒ ::Array[Privy::Models::Wallets::TransactionGetParams::chain]
99 |
# File 'sig/privy/models/wallets/transaction_get_params.rbs', line 99
def self?.values: -> ::Array[Privy::Models::Wallets::TransactionGetParams::chain]
|