mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-11 11:05:09 -04:00
UpdateFX with maven build (tested only on mac)
This commit is contained in:
parent
491e15c3de
commit
6b4f528f47
706 changed files with 6520 additions and 737 deletions
83
gui/src/main/java/io/bitsquare/btc/FeePolicy.java
Normal file
83
gui/src/main/java/io/bitsquare/btc/FeePolicy.java
Normal file
|
@ -0,0 +1,83 @@
|
|||
/*
|
||||
* 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.BitsquareException;
|
||||
|
||||
import org.bitcoinj.core.Address;
|
||||
import org.bitcoinj.core.AddressFormatException;
|
||||
import org.bitcoinj.core.Coin;
|
||||
import org.bitcoinj.core.Transaction;
|
||||
|
||||
import javax.inject.Inject;
|
||||
|
||||
public class FeePolicy {
|
||||
|
||||
public static final Coin TX_FEE = Transaction.REFERENCE_DEFAULT_MIN_TX_FEE; // dropped down to 0.00001 BTC
|
||||
|
||||
|
||||
// TODO: Change REGISTRATION_FEE to 0.00001 (See https://github.com/bitsquare/bitsquare/issues/228)
|
||||
public static final Coin REGISTRATION_FEE = TX_FEE.add(TX_FEE);
|
||||
public static final Coin CREATE_OFFER_FEE = Coin.valueOf(20000); // 0.0002 BTC
|
||||
public static final Coin TAKE_OFFER_FEE = CREATE_OFFER_FEE;
|
||||
|
||||
private final BitcoinNetwork bitcoinNetwork;
|
||||
private final String createOfferFeeAddress;
|
||||
private final String takeOfferFeeAddress;
|
||||
|
||||
@Inject
|
||||
public FeePolicy(BitcoinNetwork bitcoinNetwork) {
|
||||
this.bitcoinNetwork = bitcoinNetwork;
|
||||
|
||||
switch (bitcoinNetwork) {
|
||||
case TESTNET:
|
||||
createOfferFeeAddress = "mopJDiHncoveyy7S7FZTUNVbrCxazxvGrE";
|
||||
takeOfferFeeAddress = "mopJDiHncoveyy7S7FZTUNVbrCxazxvGrE";
|
||||
break;
|
||||
case MAINNET:
|
||||
// bitsquare donation address used for the moment...
|
||||
createOfferFeeAddress = "1BVxNn3T12veSK6DgqwU4Hdn7QHcDDRag7";
|
||||
takeOfferFeeAddress = "1BVxNn3T12veSK6DgqwU4Hdn7QHcDDRag7";
|
||||
break;
|
||||
case REGTEST:
|
||||
createOfferFeeAddress = "n2upbsaKAe4PD3cc4JfS7UCqPC5oNd7Ckg";
|
||||
takeOfferFeeAddress = "n2upbsaKAe4PD3cc4JfS7UCqPC5oNd7Ckg";
|
||||
break;
|
||||
default:
|
||||
throw new BitsquareException("Unknown bitcoin network: %s", bitcoinNetwork);
|
||||
}
|
||||
}
|
||||
|
||||
//TODO get address form arbitrator list
|
||||
public Address getAddressForCreateOfferFee() {
|
||||
try {
|
||||
return new Address(bitcoinNetwork.getParameters(), createOfferFeeAddress);
|
||||
} catch (AddressFormatException ex) {
|
||||
throw new BitsquareException(ex);
|
||||
}
|
||||
}
|
||||
|
||||
//TODO get address form the intersection of both traders arbitrator lists
|
||||
public Address getAddressForTakeOfferFee() {
|
||||
try {
|
||||
return new Address(bitcoinNetwork.getParameters(), takeOfferFeeAddress);
|
||||
} catch (AddressFormatException ex) {
|
||||
throw new BitsquareException(ex);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue