mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-03 12:16:27 -04:00
72 lines
2.3 KiB
Java
72 lines
2.3 KiB
Java
/*
|
|
* This file is part of Bitsquare.
|
|
*
|
|
* Bitsquare is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or (at
|
|
* your option) any later version.
|
|
*
|
|
* Bitsquare is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Bitsquare. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package io.bitsquare.btc;
|
|
|
|
import io.bitsquare.AbstractBitsquareModule;
|
|
|
|
import org.bitcoinj.core.NetworkParameters;
|
|
import org.bitcoinj.params.MainNetParams;
|
|
import org.bitcoinj.params.RegTestParams;
|
|
import org.bitcoinj.params.TestNet3Params;
|
|
|
|
import com.google.inject.Injector;
|
|
|
|
import java.util.Properties;
|
|
|
|
public class BitcoinModule extends AbstractBitsquareModule {
|
|
|
|
private final BitcoinNetwork defaultNetwork;
|
|
|
|
public BitcoinModule(Properties properties) {
|
|
this(properties, BitcoinNetwork.TESTNET);
|
|
}
|
|
|
|
public BitcoinModule(Properties properties, BitcoinNetwork defaultNetwork) {
|
|
super(properties);
|
|
this.defaultNetwork = defaultNetwork;
|
|
}
|
|
|
|
@Override
|
|
protected void configure() {
|
|
bind(WalletFacade.class).asEagerSingleton();
|
|
bind(FeePolicy.class).asEagerSingleton();
|
|
bind(BlockChainFacade.class).asEagerSingleton();
|
|
bind(NetworkParameters.class).toInstance(network());
|
|
}
|
|
|
|
@Override
|
|
public void doClose(Injector injector) {
|
|
injector.getInstance(WalletFacade.class).shutDown();
|
|
}
|
|
|
|
private NetworkParameters network() {
|
|
String networkName = properties.getProperty("networkType", defaultNetwork.name());
|
|
|
|
switch (BitcoinNetwork.valueOf(networkName.toUpperCase())) {
|
|
case MAINNET:
|
|
return MainNetParams.get();
|
|
case TESTNET:
|
|
return TestNet3Params.get();
|
|
case REGTEST:
|
|
return RegTestParams.get();
|
|
default:
|
|
throw new IllegalArgumentException("Unknown bitcoin network name: " + networkName);
|
|
}
|
|
}
|
|
}
|
|
|