Skip to content

Commit a2ec749

Browse files
committed
added versioning updates to actions and overledger pckage.json. as well as component key adjustments to alin with pipedream requirements
1 parent a149d10 commit a2ec749

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "overledger-execute-signed-transaction",
55
name: "Execute Signed Transaction",
66
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.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
overledger,

components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "overledger-prepare-smart-contract-transaction",
99
name: "Prepare Smart Contract Transaction",
1010
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.1",
11+
version: "0.0.2",
1212
type: "action",
1313
props: {
1414
overledger,

components/overledger/actions/read-from-a-smart-contract/read-from-smart-contract.mjs renamed to components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { parseObject } from "../../common/utils.mjs";
55
import overledger from "../../overledger.app.mjs";
66

77
export default {
8-
key: "overledger-read-from-smart-contract",
9-
name: "Read from Smart Contract",
8+
key: "overledger-read-from-a-smart-contract",
9+
name: "Read from a smart contract",
1010
description: "Reads data from a specified smart contract on the Overledger network.",
1111
version: "0.0.1",
1212
type: "action",

components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import overledger from "../../overledger.app.mjs";
22
import { UNIT_OPTIONS } from "../../common/constants.mjs";
33

44
export default {
5-
key: "overledger-sign-smart-contract-transaction",
6-
name: "Sign Smart Contract Transaction",
7-
description: "Sign and send a transaction to a smart contract using Overledger",
5+
key: "overledger-sign-a-transaction",
6+
name: "Sign a transaction",
7+
description: "Sign a transaction using Overledger",
88
version: "0.0.1",
99
type: "action",
1010
props: {

components/overledger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/overledger",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Pipedream Overledger Components",
55
"main": "overledger.app.mjs",
66
"keywords": [

components/overledger/sources/new-contract-event-instant/new-contract-event-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "overledger-new-contract-event-instant",
77
name: "New Smart Contract Event (Instant)",
88
description: "Emit new event when a smart contract releases a new event.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

components/overledger/sources/watch-new-account-event-instant/watch-new-account-event-instant.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default {
66
key: "overledger-watch-new-account-event-instant",
77
name: "New Account Event (Instant)",
88
description: "Emit new event for transactions to/from a specific account.",
9-
version: "0.0.1",
9+
version: "0.0.2",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

0 commit comments

Comments
 (0)