We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 799467d commit 45cd9e7Copy full SHA for 45cd9e7
.gitignore
@@ -1,2 +1,2 @@
1
vendor/*
2
-index.php
+./index.php
examples/index.php
@@ -0,0 +1,19 @@
+<?php
+
3
+const MEXC_CONFIG = [
4
+ 'MEXC_URL_API' => 'https://api.mexc.com/api/v3',
5
+ 'MEXC_API_ACCESS_KEY' => 'mx0vglDTfAPSDCof1m',
6
+ 'MEXC_API_SECRET' => '7cf68dd323074ba3b21554091290b607'
7
+];
8
9
+require __DIR__ . '/../vendor/autoload.php';
10
11
+use WilianMaique\Mexc\Mexc\Account;
12
+use WilianMaique\Mexc\Mexc\InfoToken;
13
+use WilianMaique\Mexc\Mexc\PriceTicker;
14
15
+dd([
16
+ 'InfoToken' => InfoToken::get('WEMIX'),
17
+ 'Account' => Account::get(),
18
+ 'PriceTicker' => PriceTicker::get(),
19
+]);
0 commit comments