@extends('admin.layouts.master') @section('page.name', __('Transaction Settings')) @section('page.body')

{{__('Transaction Settings')}}

{{__('Settings')}}

{!! Form::open(['url' => route('admin.settings.transaction.update'), 'class' => 'form form-horizontal']) !!}

{{__('Currency')}}

{{__('Fees may not be charged on trades if it is below the minimum transferable amount. For instance if $0.16 is the minimum transferable amount, and 1% is set as service fee, fees will only be charged if the amount involved in trade is above $16.')}} {{__('You should use this settings to enforce both the minimum & maximum amount to be traded, if you want to ensure that your set percentage fees are charged on every trade. Use bitcoin as a reference, where minimum transferable is 0.00003BTC')}}

{!! Form::label('SET_MIN_OFFER_AMOUNT', __('Min. Offer Amount (USD)'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_MIN_OFFER_AMOUNT', $env['SET_MIN_OFFER_AMOUNT']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_MAX_OFFER_AMOUNT', __('Max. Offer Amount (USD)'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_MAX_OFFER_AMOUNT', $env['SET_MAX_OFFER_AMOUNT']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_DEFAULT_CURRENCY', __('Currency'), ['class' => 'col-md-3']) !!}
{!! Form::select('SET_DEFAULT_CURRENCY', get_iso_currencies(), null, ['is' => 'select2', 'html-class' => 'form-control', 'required', 'v-model' => 'default_currency']) !!}

{{__('Transaction')}}

{{__('By setting the required number of blocks, the blockchain network is able to dynamically calculate miners fee for each transaction. Setting a high number of blocks results into lesser fees, however it takes more time to get a confirmation. If the number is too high, it may take weeks to get a confirmation or sometimes may not get confirmed at all by miners.')}}

{!! Form::label('SET_TX_NUM_BLOCKS', __('Num. of Blocks'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_TX_NUM_BLOCKS', $env['SET_TX_NUM_BLOCKS']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_MIN_TX_CONFIRMATIONS', __('Confirmations'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_MIN_TX_CONFIRMATIONS', $env['SET_MIN_TX_CONFIRMATIONS']['value'], ['class' => 'form-control', 'required']) !!}

{{__('Profit Per Wallet Limit')}}

{{__('The platform automatically generates new wallets for storing earnings, while a wallet can contain as much coin as possible, it is advised to set a limit for privacy purpose.')}}

{!! Form::label('SET_BTC_PROFIT_PER_WALLET_LIMIT', __('Bitcoin Limit'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_BTC_PROFIT_PER_WALLET_LIMIT', $env['SET_BTC_PROFIT_PER_WALLET_LIMIT']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_DASH_PROFIT_PER_WALLET_LIMIT', __('Dash Limit'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_DASH_PROFIT_PER_WALLET_LIMIT', $env['SET_DASH_PROFIT_PER_WALLET_LIMIT']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_LTC_PROFIT_PER_WALLET_LIMIT', __('Litecoin Limit'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_LTC_PROFIT_PER_WALLET_LIMIT', $env['SET_LTC_PROFIT_PER_WALLET_LIMIT']['value'], ['class' => 'form-control', 'required']) !!}

{{__('Locked Balance')}}

{{__('This should be set a little bit above the standard miners fee. It is needed to ensure that the transaction succeeds at all times, i.e to avoid error of insufficient balance.')}}

{!! Form::label('SET_BTC_LOCKED_BALANCE', __('Bitcoin Amount'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_BTC_LOCKED_BALANCE', $env['SET_BTC_LOCKED_BALANCE']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_DASH_LOCKED_BALANCE', __('Dash Amount'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_DASH_LOCKED_BALANCE', $env['SET_DASH_LOCKED_BALANCE']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::label('SET_LTC_LOCKED_BALANCE', __('Litecoin Amount'), ['class' => 'col-md-3']) !!}
{!! Form::text('SET_LTC_LOCKED_BALANCE', $env['SET_LTC_LOCKED_BALANCE']['value'], ['class' => 'form-control', 'required']) !!}
{!! Form::close() !!}
@endsection @push('data') @endpush