D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
config
/
Filename :
laravel-bitpay.php
back
Copy
<?php return [ /* * This is the full path and name for the private key. * The default value is /tmp/laravel-bitpay.pri */ 'private_key' => env('BITPAY_PRIVATE_KEY_PATH', base_path('laravel-bitpay.pri')), /* * This is the full path and name for the public key. * The default value isbase_path('laravel-bitpay.pub ) */ 'public_key' => env('BITPAY_PUBLIC_KEY_PATH', base_path('laravel-bitpay.pub')), /* * Specifies using the Live Bitcoin network or * Test Bitcoin network: livenet or testnet. * * The default is livenet */ 'network' => get_option('bitpay_mode', 'testnet'), /* * The key_storage option allows you to specify a class for persisting and retrieving keys. * * By default this uses the Bitpay\Storage\EncryptedFilesystemStorage class. */ 'key_storage' => \BitPayKeyUtils\Storage\EncryptedFilesystemStorage::class, /* * This is the password used to encrypt and decrypt keys on the filesystem. */ 'key_storage_password' => env('BITPAY_KEY_STORAGE_PASSWORD', 'RandomPasswordForEncryption'), /* * BitPay Token */ 'merchant_token' => get_option('bitpay_key', null), ];