feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
<?php
return [
'region_id' => env('ALIYUN_SMS_REGION_ID', 'cn-hangzhou'), // regionid
'access_key' => env('ALIYUN_SMS_AK'), // accessKey
'access_secret' => env('ALIYUN_SMS_AS'), // accessSecret
'sign_name' => env('ALIYUN_SMS_SIGN_NAME'), // 签名
];
+290
View File
@@ -0,0 +1,290 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Wallet API Address
|--------------------------------------------------------------------------
|
| This value is the Wallet API Address.
| Please change this value before deploying the application!
|
*/
//'wallet_api' => env('WALLET_API','http://47.92.171.137:3000/word/getaddressmll?password=swl910101&user_id='),
'kline_url'=> env('KLINE_URL',''),
'udun_apikey'=> env('NEW_KEY_HERE',''),
'memberid' => env('MEMBERID',''),
'gateway' => env('GATEWAY',''),
'callback' => env('CALLBACK',''),
'udun_enable' => env('UDUN_ENABLE',''),
'wallet_api' => env('WALLET_API', ''),
'images_url' => env('IMAGS_URL', './upload/'),
'socket_io_port' => env('SOCKET_IO_PORT'),
'http_worker_port' => env('HTTP_WORKER_PORT', ''),
'text_worker_port' => env('TEXT_WORKER_PORT', ''),
'web_server_port' => env('WEB_SERVER_PORT', ''),
'worker_push_url' => env('WORKER_PUSH_URL', ''),
'demo_mode' => env('DEMO_MODE', '1'),
'btc' => env('WALLET_ADDRESS_BTC',''),
'bch' => env('WALLET_ADDRESS_BCH',''),
'eth' => env('WALLET_ADDRESS_ETH',''),
'trx' => env('WALLET_ADDRESS_TRX',''),
'usdt_omni' => env('WALLET_ADDRESS_USDT_OMNI',''),
'usdt_erc20' => env('WALLET_ADDRESS_USDT_ERC20',''),
'usdt_trc20' => env('WALLET_ADDRESS_USDT_TRC20',''),
'ltc' => env('WALLET_ADDRESS_LTC',''),
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to place the application's name in a notification or
| any other location as required by the application or its packages.
|
*/
'name' => env('APP_NAME', 'Laravel'),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services your application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|America/New_York
*/
'timezone' => 'Asia/Tokyo',
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => 'zh','en','hk',
/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
*/
'fallback_locale' => 'en',
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is used by the Illuminate encrypter service and should be set
| to a random, 32 character string, otherwise these encrypted strings
| will not be safe. Please do this before deploying an application!
|
*/
'key' => env('APP_KEY'),
'cipher' => 'AES-256-CBC',
/*
|--------------------------------------------------------------------------
| Logging Configuration
|--------------------------------------------------------------------------
|
| Here you may configure the log settings for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Settings: "single", "daily", "syslog", "errorlog"
|
*/
'log' => env('APP_LOG', 'daily'),
'log_level' => env('APP_LOG_LEVEL', 'error'),
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Auth\AuthServiceProvider::class,
Illuminate\Broadcasting\BroadcastServiceProvider::class,
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Cache\CacheServiceProvider::class,
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
Illuminate\Cookie\CookieServiceProvider::class,
Illuminate\Database\DatabaseServiceProvider::class,
Illuminate\Encryption\EncryptionServiceProvider::class,
Illuminate\Filesystem\FilesystemServiceProvider::class,
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
Illuminate\Hashing\HashServiceProvider::class,
Illuminate\Mail\MailServiceProvider::class,
Illuminate\Notifications\NotificationServiceProvider::class,
Illuminate\Pagination\PaginationServiceProvider::class,
Illuminate\Pipeline\PipelineServiceProvider::class,
Illuminate\Queue\QueueServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
Illuminate\Session\SessionServiceProvider::class,
Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
// Maatwebsite\Excel\ExcelServiceProvider::class,//导出文件插件
/*
* Package Service Providers...
*/
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
/**
* Ali_sms
*/
// Curder\LaravelAliyunSms\ServiceProvider::class,
],
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
|
| This array of class aliases will be registered when this application
| is started. However, feel free to register as many as you wish as
| the aliases are "lazy" loaded so they don't hinder performance.
|
*/
'aliases' => [
'App' => Illuminate\Support\Facades\App::class,
'Artisan' => Illuminate\Support\Facades\Artisan::class,
'Auth' => Illuminate\Support\Facades\Auth::class,
'Blade' => Illuminate\Support\Facades\Blade::class,
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
'Bus' => Illuminate\Support\Facades\Bus::class,
'Cache' => Illuminate\Support\Facades\Cache::class,
'Config' => Illuminate\Support\Facades\Config::class,
'Cookie' => Illuminate\Support\Facades\Cookie::class,
'Crypt' => Illuminate\Support\Facades\Crypt::class,
'DB' => Illuminate\Support\Facades\DB::class,
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
'Event' => Illuminate\Support\Facades\Event::class,
'File' => Illuminate\Support\Facades\File::class,
'Gate' => Illuminate\Support\Facades\Gate::class,
'Hash' => Illuminate\Support\Facades\Hash::class,
'Lang' => Illuminate\Support\Facades\Lang::class,
'Log' => Illuminate\Support\Facades\Log::class,
'Mail' => Illuminate\Support\Facades\Mail::class,
'Notification' => Illuminate\Support\Facades\Notification::class,
'Password' => Illuminate\Support\Facades\Password::class,
'Queue' => Illuminate\Support\Facades\Queue::class,
'Redirect' => Illuminate\Support\Facades\Redirect::class,
'Redis' => Illuminate\Support\Facades\Redis::class,
'Request' => Illuminate\Support\Facades\Request::class,
'Response' => Illuminate\Support\Facades\Response::class,
'Route' => Illuminate\Support\Facades\Route::class,
'Schema' => Illuminate\Support\Facades\Schema::class,
'Session' => Illuminate\Support\Facades\Session::class,
'Storage' => Illuminate\Support\Facades\Storage::class,
'URL' => Illuminate\Support\Facades\URL::class,
'Validator' => Illuminate\Support\Facades\Validator::class,
'View' => Illuminate\Support\Facades\View::class,
// 'Excel' => Maatwebsite\Excel\Facades\Excel::class,
],
];
+102
View File
@@ -0,0 +1,102 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
|
*/
'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| Supported: "session", "token"
|
*/
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
'api' => [
'driver' => 'token',
'provider' => 'users',
],
],
/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\User::class,
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
| The expire time is the number of minutes that the reset token should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
],
],
];
+58
View File
@@ -0,0 +1,58 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the "connections" array below.
|
| Supported: "pusher", "redis", "log", "null"
|
*/
'default' => env('BROADCAST_DRIVER', 'null'),
/*
|--------------------------------------------------------------------------
| Broadcast Connections
|--------------------------------------------------------------------------
|
| Here you may define all of the broadcast connections that will be used
| to broadcast events to other systems or over websockets. Samples of
| each available type of connection are provided inside this array.
|
*/
'connections' => [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
//
],
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
'log' => [
'driver' => 'log',
],
'null' => [
'driver' => 'null',
],
],
];
+91
View File
@@ -0,0 +1,91 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
*/
'default' => env('CACHE_DRIVER', 'redis'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
*/
'stores' => [
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array',
],
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing a RAM based store such as APC or Memcached, there might
| be other applications utilizing the same cache. So, we'll specify a
| value to get prefixed to all our keys so we can avoid collisions.
|
*/
'prefix' => 'laravel',
];
+120
View File
@@ -0,0 +1,120 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
| you may use many connections at once using the Database library.
|
*/
'default' => env('DB_CONNECTION', 'mysql'),
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
],
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', ''),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', ''),
'username' => env('DB_USERNAME', ''),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'strict' => false,
'engine' => null,
],
'pgsql' => [
'driver' => 'pgsql',
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'schema' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run in the database.
|
*/
'migrations' => 'migrations',
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer set of commands than a typical key-value systems
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
*/
'redis' => [
'client' => 'predis',
'default' => [
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD', null),
'port' => env('REDIS_PORT', 6379),
'database' => env('REDIS_DB', 0),
],
],
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>"-0.26",
"close"=>0.03491994,
"currency_id"=>54,
"currency_name"=>"PPG",
"high"=>0.03618500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.03475000,
"match_id"=>56,
"now_price"=>0.03491994,
"open"=>0.03501000,
"period"=>"1min",
"symbol"=>"PPG/USDT",
"time"=>1679162400000,
"type"=>"daymarket",
"volume"=>33058
]
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>"+21",
"close"=>0.038,
"currency_id"=>49,
"currency_name"=>"PYPLC",
"high"=>0.039,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.038,
"match_id"=>46,
"now_price"=>0.0388,
"open"=>0.0380,
"period"=>"1min",
"symbol"=>"PYPLC/USDT",
"time"=>1712234700,
"type"=>"daymarket",
"volume"=>34307
]
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>"+0.57",
"close"=>0.03503569,
"currency_id"=>51,
"currency_name"=>"BYD",
"high"=>0.03644000,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.03447600,
"match_id"=>50,
"now_price"=>0.03503569,
"open"=>0.03483600,
"period"=>"1min",
"symbol"=>"BYD/USDT",
"time"=>1679076000000,
"type"=>"daymarket",
"volume"=>33437
]
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>"+18.82",
"close"=>32.61509196,
"currency_id"=>50,
"currency_name"=>"VTC",
"high"=>37.14941100,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>24.24941100,
"match_id"=>49,
"now_price"=>32.61509196,
"open"=>27.44941100,
"period"=>"1min",
"symbol"=>"VTC/USDT",
"time"=>1679124600000,
"type"=>"daymarket",
"volume"=>70451
]
];
+23
View File
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>"-0.30",
"close"=>0.03455602,
"currency_id"=>52,
"currency_name"=>"WP",
"high"=>0.03632500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.03411000,
"match_id"=>53,
"now_price"=>0.03455602,
"open"=>0.03466000,
"period"=>"1min",
"symbol"=>"WP/USDT",
"time"=>1679169600000,
"type"=>"daymarket",
"volume"=>38740
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>CHANGE,
"close"=>CLOSE,
"currency_id"=>CURRENCY_ID,
"currency_name"=>"PYPLC",
"high"=>HIGH,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>LOW,
"match_id"=>MATCH_ID,
"now_price"=>NOW_PRICE,
"open"=>OPEN,
"period"=>"1min",
"symbol"=>"PYPLC/USDT",
"time"=>TIME,
"type"=>"daymarket",
"volume"=>VOLUME
]
];
+5
View File
@@ -0,0 +1,5 @@
<?php
return [
'hosts' => explode(',', env('ELASTICSEARCH_HOST', '')),
];
+68
View File
@@ -0,0 +1,68 @@
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your application. Just store away!
|
*/
'default' => env('FILESYSTEM_DRIVER', 'local'),
/*
|--------------------------------------------------------------------------
| Default Cloud Filesystem Disk
|--------------------------------------------------------------------------
|
| Many applications store files both locally and in the cloud. For this
| reason, you may specify a default "cloud" driver here. This driver
| will be bound as the Cloud disk implementation in the container.
|
*/
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Here you may configure as many filesystem "disks" as you wish, and you
| may even configure multiple disks of the same driver. Defaults have
| been setup for each driver as an example of the required options.
|
| Supported Drivers: "local", "ftp", "s3", "rackspace"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => env('AWS_KEY'),
'secret' => env('AWS_SECRET'),
'region' => env('AWS_REGION'),
'bucket' => env('AWS_BUCKET'),
],
],
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>0.000000,
"close"=>0.010000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.009990,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010010,
"match_id"=>3,
"now_price"=>0.010000,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744400",
"type"=>"daymarket",
"volume"=>74573
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>0.000000,
"close"=>0.010000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.009990,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010010,
"match_id"=>3,
"now_price"=>0.010000,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744400",
"type"=>"kline",
"volume"=>74573
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+2.000000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010000,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744460",
"type"=>"daymarket",
"volume"=>98162
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+2.000000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010000,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744460",
"type"=>"kline",
"volume"=>98162
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010310,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744520",
"type"=>"daymarket",
"volume"=>82581
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010310,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744520",
"type"=>"kline",
"volume"=>82581
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010290,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744580",
"type"=>"daymarket",
"volume"=>73769
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010290,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744580",
"type"=>"kline",
"volume"=>73769
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744640",
"type"=>"daymarket",
"volume"=>96324
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744640",
"type"=>"kline",
"volume"=>96324
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.940000,
"close"=>0.010100,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010110,
"match_id"=>3,
"now_price"=>0.010100,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744700",
"type"=>"daymarket",
"volume"=>20038
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.940000,
"close"=>0.010100,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010110,
"match_id"=>3,
"now_price"=>0.010100,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744700",
"type"=>"kline",
"volume"=>20038
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.990000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010090,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010100,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744760",
"type"=>"daymarket",
"volume"=>53982
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.990000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010090,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010100,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744760",
"type"=>"kline",
"volume"=>53982
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.960000,
"close"=>0.010000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010190,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009990,
"match_id"=>3,
"now_price"=>0.010000,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744820",
"type"=>"daymarket",
"volume"=>55286
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.960000,
"close"=>0.010000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010190,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009990,
"match_id"=>3,
"now_price"=>0.010000,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744820",
"type"=>"kline",
"volume"=>55286
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+2.000000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010190,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009990,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744880",
"type"=>"daymarket",
"volume"=>24023
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+2.000000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010190,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009990,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744880",
"type"=>"kline",
"volume"=>24023
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.960000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010410,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744940",
"type"=>"daymarket",
"volume"=>46818
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.960000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010410,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763744940",
"type"=>"kline",
"volume"=>46818
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745000",
"type"=>"daymarket",
"volume"=>76732
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745000",
"type"=>"kline",
"volume"=>76732
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745060",
"type"=>"daymarket",
"volume"=>25632
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745060",
"type"=>"kline",
"volume"=>25632
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.920000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745120",
"type"=>"daymarket",
"volume"=>19975
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.920000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745120",
"type"=>"kline",
"volume"=>19975
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.880000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010800,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745180",
"type"=>"daymarket",
"volume"=>83091
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.880000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010800,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745180",
"type"=>"kline",
"volume"=>83091
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.920000,
"close"=>0.010900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010900,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010810,
"match_id"=>3,
"now_price"=>0.010900,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745240",
"type"=>"daymarket",
"volume"=>59908
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.920000,
"close"=>0.010900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010900,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010810,
"match_id"=>3,
"now_price"=>0.010900,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745240",
"type"=>"kline",
"volume"=>59908
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.910000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010900,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010790,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.010900,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745300",
"type"=>"daymarket",
"volume"=>2872
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.910000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010900,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010790,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.010900,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745300",
"type"=>"kline",
"volume"=>2872
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.850000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010790,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745360",
"type"=>"daymarket",
"volume"=>3304
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.850000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010790,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745360",
"type"=>"kline",
"volume"=>3304
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.940000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010500,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745420",
"type"=>"daymarket",
"volume"=>38712
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.940000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010500,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745420",
"type"=>"kline",
"volume"=>38712
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010490,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745480",
"type"=>"daymarket",
"volume"=>30604
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010490,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745480",
"type"=>"kline",
"volume"=>30604
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.960000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010400,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010300,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745540",
"type"=>"daymarket",
"volume"=>45594
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.960000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010400,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010300,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745540",
"type"=>"kline",
"volume"=>45594
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.940000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010310,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745600",
"type"=>"daymarket",
"volume"=>36179
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.940000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010310,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745600",
"type"=>"kline",
"volume"=>36179
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745660",
"type"=>"daymarket",
"volume"=>52646
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745660",
"type"=>"kline",
"volume"=>52646
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.920000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010610,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745720",
"type"=>"daymarket",
"volume"=>66680
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.920000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010610,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745720",
"type"=>"kline",
"volume"=>66680
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.940000,
"close"=>0.010700,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010690,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010610,
"match_id"=>3,
"now_price"=>0.010700,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745780",
"type"=>"daymarket",
"volume"=>25580
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.940000,
"close"=>0.010700,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010690,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010610,
"match_id"=>3,
"now_price"=>0.010700,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745780",
"type"=>"kline",
"volume"=>25580
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.930000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010700,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010700,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745840",
"type"=>"daymarket",
"volume"=>3490
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.930000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010700,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010600,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010700,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745840",
"type"=>"kline",
"volume"=>3490
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.880000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745900",
"type"=>"daymarket",
"volume"=>75682
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.880000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010600,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745900",
"type"=>"kline",
"volume"=>75682
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745960",
"type"=>"daymarket",
"volume"=>90624
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010400,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763745960",
"type"=>"kline",
"volume"=>90624
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.900000,
"close"=>0.010700,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010710,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010500,
"match_id"=>3,
"now_price"=>0.010700,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746020",
"type"=>"daymarket",
"volume"=>1028
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.900000,
"close"=>0.010700,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010710,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010500,
"match_id"=>3,
"now_price"=>0.010700,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746020",
"type"=>"kline",
"volume"=>1028
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.860000,
"close"=>0.010900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010910,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010700,
"match_id"=>3,
"now_price"=>0.010900,
"open"=>0.010700,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746080",
"type"=>"daymarket",
"volume"=>21813
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+1.860000,
"close"=>0.010900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010910,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010700,
"match_id"=>3,
"now_price"=>0.010900,
"open"=>0.010700,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746080",
"type"=>"kline",
"volume"=>21813
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.910000,
"close"=>0.011000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010990,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010900,
"match_id"=>3,
"now_price"=>0.011000,
"open"=>0.010900,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746140",
"type"=>"daymarket",
"volume"=>47698
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.910000,
"close"=>0.011000,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010990,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010900,
"match_id"=>3,
"now_price"=>0.011000,
"open"=>0.010900,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746140",
"type"=>"kline",
"volume"=>47698
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.810000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.011000,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010790,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.011000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746200",
"type"=>"daymarket",
"volume"=>38504
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.810000,
"close"=>0.010800,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.011000,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010790,
"match_id"=>3,
"now_price"=>0.010800,
"open"=>0.011000,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746200",
"type"=>"kline",
"volume"=>38504
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.850000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010790,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010610,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746260",
"type"=>"daymarket",
"volume"=>4240
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.850000,
"close"=>0.010600,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010790,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010610,
"match_id"=>3,
"now_price"=>0.010600,
"open"=>0.010800,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746260",
"type"=>"kline",
"volume"=>4240
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.880000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010590,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746320",
"type"=>"daymarket",
"volume"=>6782
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.880000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010590,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010410,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010600,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746320",
"type"=>"kline",
"volume"=>6782
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746380",
"type"=>"daymarket",
"volume"=>88360
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.960000,
"close"=>0.010500,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010500,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010500,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746380",
"type"=>"kline",
"volume"=>88360
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746440",
"type"=>"daymarket",
"volume"=>31028
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.950000,
"close"=>0.010400,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010510,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010390,
"match_id"=>3,
"now_price"=>0.010400,
"open"=>0.010500,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746440",
"type"=>"kline",
"volume"=>31028
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.960000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010410,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010310,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746500",
"type"=>"daymarket",
"volume"=>22458
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.960000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010410,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010310,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010400,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746500",
"type"=>"kline",
"volume"=>22458
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746560",
"type"=>"daymarket",
"volume"=>47401
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010200,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746560",
"type"=>"kline",
"volume"=>47401
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010290,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746620",
"type"=>"daymarket",
"volume"=>23985
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010290,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746620",
"type"=>"kline",
"volume"=>23985
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746680",
"type"=>"daymarket",
"volume"=>39740
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746680",
"type"=>"kline",
"volume"=>39740
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746740",
"type"=>"daymarket",
"volume"=>53746
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>+0.980000,
"close"=>0.010300,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010300,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010190,
"match_id"=>3,
"now_price"=>0.010300,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746740",
"type"=>"kline",
"volume"=>53746
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010310,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746800",
"type"=>"daymarket",
"volume"=>73799
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.970000,
"close"=>0.010200,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010310,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010210,
"match_id"=>3,
"now_price"=>0.010200,
"open"=>0.010300,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746800",
"type"=>"kline",
"volume"=>73799
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.980000,
"close"=>0.010100,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010090,
"match_id"=>3,
"now_price"=>0.010100,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746860",
"type"=>"daymarket",
"volume"=>12956
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-0.980000,
"close"=>0.010100,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010210,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.010090,
"match_id"=>3,
"now_price"=>0.010100,
"open"=>0.010200,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746860",
"type"=>"kline",
"volume"=>12956
]
];
+25
View File
@@ -0,0 +1,25 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.980000,
"close"=>0.009900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010090,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009900,
"match_id"=>3,
"now_price"=>0.009900,
"open"=>0.010100,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746920",
"type"=>"daymarket",
"volume"=>69536
]
];
@@ -0,0 +1,23 @@
<?php
return [
"libra_data"=>[
"api_form"=>"diy",
"change"=>-1.980000,
"close"=>0.009900,
"currency_id"=>2,
"currency_name"=>"ETH",
"high"=>0.010090,
"legal_id"=>3,
"legal_name"=>"USDT",
"low"=>0.009900,
"match_id"=>3,
"now_price"=>0.009900,
"open"=>0.010100,
"period"=>"1min",
"symbol"=>"ETH/USDT",
"time"=>"1763746920",
"type"=>"kline",
"volume"=>69536
]
];

Some files were not shown because too many files have changed in this diff Show More