@le-space/aleph-bootstrap 0.4.4 → 0.4.5

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -1
  2. package/index.js +1 -1
  3. package/package.json +9 -1
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { bootstrap } from '@libp2p/bootstrap';
2
2
 
3
- declare const DEFAULT_ALEPH_API_HOST = "https://api2.aleph.im";
3
+ declare const DEFAULT_ALEPH_API_HOST = "https://api.aleph.im";
4
4
  declare const DEFAULT_ALEPH_BOOTSTRAP_CHANNEL = "simple-todo";
5
5
  declare const DEFAULT_ALEPH_BOOTSTRAP_REF = "simple-todo-bootstrap";
6
6
  declare const DEFAULT_ALEPH_BOOTSTRAP_POST_TYPE = "relay-bootstrap";
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // src/index.ts
2
2
  import { bootstrap } from "@libp2p/bootstrap";
3
3
  import { recoverMessageAddress } from "viem";
4
- var DEFAULT_ALEPH_API_HOST = "https://api2.aleph.im";
4
+ var DEFAULT_ALEPH_API_HOST = "https://api.aleph.im";
5
5
  var DEFAULT_ALEPH_BOOTSTRAP_CHANNEL = "simple-todo";
6
6
  var DEFAULT_ALEPH_BOOTSTRAP_REF = "simple-todo-bootstrap";
7
7
  var DEFAULT_ALEPH_BOOTSTRAP_POST_TYPE = "relay-bootstrap";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@le-space/aleph-bootstrap",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Aleph-backed libp2p bootstrap discovery and relay registration helpers.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,6 +15,14 @@
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/NiKrause/shared-aleph-tooling"
21
+ },
22
+ "homepage": "https://github.com/NiKrause/shared-aleph-tooling",
23
+ "bugs": {
24
+ "url": "https://github.com/NiKrause/shared-aleph-tooling/issues"
25
+ },
18
26
  "dependencies": {
19
27
  "@libp2p/bootstrap": "^11.0.46",
20
28
  "viem": "^2.38.5"