@zebec-network/exchange-card-sdk 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,8 +28,8 @@ class XDBService {
|
|
|
28
28
|
*
|
|
29
29
|
* @returns {Promise<Quote>} A promise that resolves to a Quote object.
|
|
30
30
|
*/
|
|
31
|
-
async fetchQuote() {
|
|
32
|
-
const res = await this.apiService.fetchQuote(
|
|
31
|
+
async fetchQuote(symbol = "XDB") {
|
|
32
|
+
const res = await this.apiService.fetchQuote(symbol);
|
|
33
33
|
return res;
|
|
34
34
|
}
|
|
35
35
|
/**
|