Skip to content

Commit 76134e6

Browse files
committed
versioning update for overledger api changes
1 parent 42acc29 commit 76134e6

File tree

8 files changed

+339
-30
lines changed

8 files changed

+339
-30
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.2",
7+
version: "0.0.3",
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.2",
11+
version: "0.0.3",
1212
type: "action",
1313
props: {
1414
overledger,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default {
88
key: "overledger-read-from-a-smart-contract",
99
name: "Read from a smart contract",
1010
description: "Reads data from a specified smart contract on the Overledger network.",
11-
version: "0.0.1",
11+
version: "0.0.2",
1212
type: "action",
1313
props: {
1414
overledger,

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import overledger from "../../overledger.app.mjs";
2-
import { TECHNOLOGY_OPTIONS, UNIT_OPTIONS } from "../../common/constants.mjs";
2+
import {
3+
TECHNOLOGY_OPTIONS, UNIT_OPTIONS,
4+
} from "../../common/constants.mjs";
35

46
export default {
57
key: "overledger-sign-a-transaction",
68
name: "Sign a transaction",
79
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)",
8-
version: "0.0.1",
10+
version: "0.0.2",
911
type: "action",
1012
props: {
1113
overledger,
@@ -51,7 +53,7 @@ export default {
5153
};
5254
// Define DLT Fee and dynamically set the 'unit/symbol' from UNIT_OPTIONS
5355
const dltFee = {
54-
amount: "0.000019897764079968",
56+
amount: "0.0.0.29897764079968",
5557
unit: UNIT_OPTIONS[this.locationTechnology] || "ETH", // Use default if not found
5658
};
5759
// Sign the transaction

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.3.0",
3+
"version": "1.0.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.2",
9+
version: "0.0.3",
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.2",
9+
version: "0.0.3",
1010
type: "source",
1111
dedupe: "unique",
1212
props: {

0 commit comments

Comments
 (0)