@glyphteck/veyl 0.73.0 → 0.74.0
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.
- package/dist/account.js +524 -182
- package/dist/accountprofiles.js +1 -0
- package/dist/auth.js +3 -1
- package/dist/cli.js +745 -229
- package/dist/index.js +745 -229
- package/examples/bot-fleet/voice.js +4 -1
- package/package.json +1 -1
package/dist/accountprofiles.js
CHANGED
|
@@ -188,6 +188,7 @@ var WALLET_PENDING_TRANSFER_STALE_RETRY_MS = 2 * MINUTE_MS;
|
|
|
188
188
|
var WALLET_PENDING_TRANSFER_STUCK_RETRY_MS = 10 * MINUTE_MS;
|
|
189
189
|
var WALLET_PENDING_TRANSFER_DORMANT_RETRY_MS = HOUR_MS;
|
|
190
190
|
var WALLET_TRANSFER_CACHE_WRITE_DELAY_MS = 3 * MS_PER_SECOND;
|
|
191
|
+
var BITCOIN_FEES_MAX_AGE_MS = 5 * 60000;
|
|
191
192
|
|
|
192
193
|
// ../../core/utils/text.js
|
|
193
194
|
function cleanText(value) {
|
package/dist/auth.js
CHANGED
|
@@ -138,7 +138,8 @@ var domains = Object.freeze({
|
|
|
138
138
|
veyl: `veyl.${ROOT_DOMAIN}`,
|
|
139
139
|
veylDev: `dev.veyl.${ROOT_DOMAIN}`,
|
|
140
140
|
live: `live.veyl.${ROOT_DOMAIN}`,
|
|
141
|
-
liveDev: `live.dev.veyl.${ROOT_DOMAIN}
|
|
141
|
+
liveDev: `live.dev.veyl.${ROOT_DOMAIN}`,
|
|
142
|
+
bitcoin: `bitcoin.veyl.${ROOT_DOMAIN}`
|
|
142
143
|
});
|
|
143
144
|
function getVeylDevWebOrigin(port) {
|
|
144
145
|
const value = Number(port);
|
|
@@ -159,6 +160,7 @@ var liveEndpoints = Object.freeze({
|
|
|
159
160
|
prod: `wss://${domains.live}`,
|
|
160
161
|
dev: `wss://${domains.liveDev}`
|
|
161
162
|
});
|
|
163
|
+
var bitcoinEndpoint = `https://${domains.bitcoin}/current`;
|
|
162
164
|
var appDomains = Object.freeze([
|
|
163
165
|
domains.veyl
|
|
164
166
|
]);
|