n8n-nodes-blockfrost 0.0.4 → 0.1.2

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 (2) hide show
  1. package/README.md +0 -33
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -1,16 +1,3 @@
1
- ## Screenshots
2
-
3
- ### Example 1
4
- ![Screenshot 1](assets/001.jpg)
5
-
6
- ### Example 2
7
- ![Screenshot 2](assets/002.jpg)
8
-
9
- ### Example 3
10
- ![Screenshot 3](assets/003.jpg)
11
-
12
- ### Example 4
13
- ![Screenshot 4](assets/004.jpg)
14
1
  # n8n-nodes-blockfrost
15
2
 
16
3
  This is a custom n8n node for interacting with the [Cardano blockchain](https://cardano.org) via the [Blockfrost API](https://blockfrost.io).
@@ -39,26 +26,6 @@ This is a custom n8n node for interacting with the [Cardano blockchain](https://
39
26
  4. Build the project: `npm run build`
40
27
  5. Restart n8n
41
28
 
42
- ### Option 3: Fail-Safe Installation (if npm install does not work as expected)
43
-
44
- If running `npm install n8n-nodes-blockfrost` in your `~/.n8n/custom/` directory does not install the package correctly, try the following steps:
45
-
46
- 1. Open a terminal and navigate to your n8n custom directory:
47
- ```
48
- cd ~/.n8n/custom
49
- ```
50
- 2. Initialize a package.json if it does not exist:
51
- ```
52
- npm init -y
53
- ```
54
- 3. Install the package:
55
- ```
56
- npm install n8n-nodes-blockfrost
57
- ```
58
- 4. Restart n8n completely (stop and start the process).
59
-
60
- This ensures the package and its dependencies are installed correctly and n8n can load the custom node.
61
-
62
29
  ## Prerequisites
63
30
 
64
31
  - [n8n](https://n8n.io/) (version 0.209.0 or newer)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-blockfrost",
3
- "version": "0.0.4",
3
+ "version": "0.1.2",
4
4
  "description": "n8n node for Blockfrost API - Interact with Cardano blockchain via no-code workflows",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -50,7 +50,6 @@
50
50
  "typescript": "^5.0.0"
51
51
  },
52
52
  "dependencies": {
53
- "@blockfrost/blockfrost-js": "^5.4.1",
54
- "n8n": "^1.112.5"
53
+ "@blockfrost/blockfrost-js": "^5.4.1"
55
54
  }
56
55
  }