Uses of Class
org.ldk.enums.Network
-
Packages that use Network Package Description org.ldk.batteries org.ldk.enums org.ldk.impl org.ldk.structs -
-
Uses of Network in org.ldk.batteries
Constructors in org.ldk.batteries with parameters of type Network Constructor Description ChannelManagerConstructor(Network network, UserConfig config, byte[] current_blockchain_tip_hash, int current_blockchain_tip_height, KeysInterface keys_interface, FeeEstimator fee_estimator, ChainMonitor chain_monitor, NetGraphMsgHandler router, BroadcasterInterface tx_broadcaster, Logger logger)
Constructs a channel manager from the given interface implementations -
Uses of Network in org.ldk.enums
Methods in org.ldk.enums that return Network Modifier and Type Method Description static Network
Network. valueOf(String name)
Returns the enum constant of this type with the specified name.static Network[]
Network. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Network in org.ldk.impl
Methods in org.ldk.impl that return Network Modifier and Type Method Description static Network
bindings. ChainParameters_get_network(long this_ptr)
Methods in org.ldk.impl with parameters of type Network Modifier and Type Method Description static long
bindings. BestBlock_from_genesis(Network network)
static long
bindings. ChainParameters_new(Network network_arg, long best_block_arg)
static void
bindings. ChainParameters_set_network(long this_ptr, Network val)
-
Uses of Network in org.ldk.structs
Methods in org.ldk.structs that return Network Modifier and Type Method Description Network
ChainParameters. get_network()
The network for determining the `chain_hash` in Lightning messages.Methods in org.ldk.structs with parameters of type Network Modifier and Type Method Description static BestBlock
BestBlock. from_genesis(Network network)
Constructs a `BestBlock` that represents the genesis block at height 0 of the given network.static ChainParameters
ChainParameters. of(Network network_arg, BestBlock best_block_arg)
Constructs a new ChainParameters given each fieldvoid
ChainParameters. set_network(Network val)
The network for determining the `chain_hash` in Lightning messages.
-