@pipedream/overledger 1.0.0 → 1.0.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.
- package/actions/execute-signed-transaction/execute-signed-transaction.mjs +7 -1
- package/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs +6 -1
- package/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs +6 -1
- package/actions/sign-a-transaction/sign-a-transaction.mjs +6 -1
- package/package.json +2 -2
|
@@ -4,8 +4,14 @@ export default {
|
|
|
4
4
|
key: "overledger-execute-signed-transaction",
|
|
5
5
|
name: "Execute Signed Transaction",
|
|
6
6
|
description: "Executes a signed transaction by sending it to a blockchain node via Overledger. [See the documentation](https://developers.quant.network/reference/executesignedrequest)",
|
|
7
|
-
version: "0.0.
|
|
7
|
+
version: "0.0.5",
|
|
8
|
+
annotations: {
|
|
9
|
+
destructiveHint: false,
|
|
10
|
+
openWorldHint: true,
|
|
11
|
+
readOnlyHint: false,
|
|
12
|
+
},
|
|
8
13
|
type: "action",
|
|
14
|
+
ai: "optimized",
|
|
9
15
|
props: {
|
|
10
16
|
overledger,
|
|
11
17
|
environment: {
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "overledger-prepare-smart-contract-transaction",
|
|
9
9
|
name: "Prepare Smart Contract Transaction",
|
|
10
10
|
description: "Prepares a smart contract transaction for signing on the Overledger platform. [See the documentation](https://developers.quant.network/reference/preparesmartcontractwrite)",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.4",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: false,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
overledger,
|
|
@@ -8,7 +8,12 @@ export default {
|
|
|
8
8
|
key: "overledger-read-from-a-smart-contract",
|
|
9
9
|
name: "Read from a smart contract",
|
|
10
10
|
description: "Reads data from a specified smart contract on the Overledger network.",
|
|
11
|
-
version: "0.0.
|
|
11
|
+
version: "0.0.3",
|
|
12
|
+
annotations: {
|
|
13
|
+
destructiveHint: false,
|
|
14
|
+
openWorldHint: true,
|
|
15
|
+
readOnlyHint: true,
|
|
16
|
+
},
|
|
12
17
|
type: "action",
|
|
13
18
|
props: {
|
|
14
19
|
overledger,
|
|
@@ -7,7 +7,12 @@ export default {
|
|
|
7
7
|
key: "overledger-sign-a-transaction",
|
|
8
8
|
name: "Sign a transaction",
|
|
9
9
|
description: "Sign a transaction using Overledger - Part 2 of [Overledger Pattern](https://developers.quant.network/reference/overledger-pattern). [See documentation](https://developers.quant.network/reference/sandboxsigning)",
|
|
10
|
-
version: "0.0.
|
|
10
|
+
version: "0.0.4",
|
|
11
|
+
annotations: {
|
|
12
|
+
destructiveHint: false,
|
|
13
|
+
openWorldHint: true,
|
|
14
|
+
readOnlyHint: false,
|
|
15
|
+
},
|
|
11
16
|
type: "action",
|
|
12
17
|
props: {
|
|
13
18
|
overledger,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pipedream/overledger",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Pipedream Overledger Components",
|
|
5
5
|
"main": "overledger.app.mjs",
|
|
6
6
|
"keywords": [
|
|
@@ -13,6 +13,6 @@
|
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@pipedream/platform": "^1.
|
|
16
|
+
"@pipedream/platform": "^1.6.8"
|
|
17
17
|
}
|
|
18
18
|
}
|