@electrum-cash/servers 3.0.2-development.6621054760 → 3.0.3-development.8574933085
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/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10,7 +10,7 @@ const $c047c2d2e8e5c125$export$f504d3db6a0a89d2 = [
|
|
|
10
10
|
// Imaginary Usernames servers:
|
|
11
11
|
{
|
|
12
12
|
host: "bch.imaginary.cash",
|
|
13
|
-
version: "1.5.
|
|
13
|
+
version: "1.5.3",
|
|
14
14
|
transports: {
|
|
15
15
|
tcp: 50001,
|
|
16
16
|
tcp_tls: 50002,
|
|
@@ -20,7 +20,7 @@ const $c047c2d2e8e5c125$export$f504d3db6a0a89d2 = [
|
|
|
20
20
|
},
|
|
21
21
|
{
|
|
22
22
|
host: "electrum.imaginary.cash",
|
|
23
|
-
version: "1.5.
|
|
23
|
+
version: "1.5.3",
|
|
24
24
|
transports: {
|
|
25
25
|
tcp: 50001,
|
|
26
26
|
tcp_tls: 50002,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";;;;;;;ACAA,8BAA8B;AAIvB,MAAM,4CACb;IACC,+BAA+B;IAC/B;QACC,MAAM;QACN,SAAS;QACT,YACA;YACC,KAAK;YACL,SAAS;YACT,IAAK;YACL,KAAK;QACN;IACD;IACA;QACC,MAAM;QACN,SAAS;QACT,YACA;YACC,KAAK;YACL,SAAS;YACT,IAAK;YACL,KAAK;QACN;IACD;CACA;;;;AC7BD,8EAA8E;;","sources":["source/index.ts","source/servers.ts","source/interfaces.ts"],"sourcesContent":["export * from './servers';\nexport * from './interfaces';\n","// Import required interfaces.\nimport type { ElectrumServers } from './interfaces';\n\n// Define the list of available Electrum Cash servers.\nexport const electrumServers: ElectrumServers =\n[\n\t// Imaginary Usernames servers:\n\t{\n\t\thost: 'bch.imaginary.cash',\n\t\tversion: '1.5.
|
|
1
|
+
{"mappings":";;;;;;;ACAA,8BAA8B;AAIvB,MAAM,4CACb;IACC,+BAA+B;IAC/B;QACC,MAAM;QACN,SAAS;QACT,YACA;YACC,KAAK;YACL,SAAS;YACT,IAAK;YACL,KAAK;QACN;IACD;IACA;QACC,MAAM;QACN,SAAS;QACT,YACA;YACC,KAAK;YACL,SAAS;YACT,IAAK;YACL,KAAK;QACN;IACD;CACA;;;;AC7BD,8EAA8E;;","sources":["source/index.ts","source/servers.ts","source/interfaces.ts"],"sourcesContent":["export * from './servers';\nexport * from './interfaces';\n","// Import required interfaces.\nimport type { ElectrumServers } from './interfaces';\n\n// Define the list of available Electrum Cash servers.\nexport const electrumServers: ElectrumServers =\n[\n\t// Imaginary Usernames servers:\n\t{\n\t\thost: 'bch.imaginary.cash',\n\t\tversion: '1.5.3',\n\t\ttransports:\n\t\t{\n\t\t\ttcp: 50001,\n\t\t\ttcp_tls: 50002,\n\t\t\tws: 50003,\n\t\t\twss: 50004,\n\t\t},\n\t},\n\t{\n\t\thost: 'electrum.imaginary.cash',\n\t\tversion: '1.5.3',\n\t\ttransports:\n\t\t{\n\t\t\ttcp: 50001,\n\t\t\ttcp_tls: 50002,\n\t\t\tws: 50003,\n\t\t\twss: 50004,\n\t\t},\n\t},\n];\n","// Define the structure used to provide port numbers for supported transports.\nexport interface ElectrumTransports\n{\n\ttcp?: number;\n\ttcp_tls?: number;\n\tws?: number;\n\twss?: number;\n}\n\n// Define the structure used to represent an electrum server.\nexport interface ElectrumServer\n{\n\thost: string;\n\tversion: string;\n\ttransports: ElectrumTransports;\n}\n\n// Define the structure of the default electrum server list.\nexport type ElectrumServers = ElectrumServer[];\n"],"names":[],"version":3,"file":"index.mjs.map"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@electrum-cash/servers",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3-development.8574933085",
|
|
4
4
|
"description": "a list of default servers to use with the @electrum-cash/library package.",
|
|
5
5
|
"homepage": "https://gitlab.com/electrum-cash/servers#readme",
|
|
6
6
|
"bugs": {
|