forked from CoboGlobal/cobo-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.php
More file actions
32 lines (27 loc) · 1.09 KB
/
Config.php
File metadata and controls
32 lines (27 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
namespace Cobo\Custody;
class Config
{
const PROD = [
"host" => "https://api.custody.cobo.com",
"coboPub" => "02c3e5bacf436fbf4da78597e791579f022a2e85073ae36c54a361ff97f2811376"
];
const DEV = [
"host" => "https://api.dev.cobo.com",
"coboPub" => "03596da539963fb1dd29d5859e25903eb76b9f7ed2d58516e29c9f80c201ff2c1b"
];
const PROD_DATA = [
"cobo_id" => "20220311154108000184408000002833",
"tx_id" => "4041A888C9966BE8916FE65F2FEE7AE9A9DC3F49D0F1643A768C842CA95FA736",
"pending_id" => "20200604171238000354106000006405",
"withdraw_id" => "sdk_request_id_fe80cc5f_1647068483396",
"deposit_address" => "36xYx7vf7DUKpJDixpY3EoV2jchFwYSNCb",
];
const DEV_DATA = [
"cobo_id" => "20230628151437000131969000003448",
"tx_id" => "0xf0ffcd5f6420b2d31beedcaac7fe1e1b8e8b375afddd016924c4a9f64b7f67c4",
"pending_id" => "20230613161855000121785000007181",
"withdraw_id" => "web_send_by_user_1_1686644253387",
"deposit_address" => "0xc73af2ae6a973787ee2d92c0158200be181b0c4e",
];
}