Skip to content

Commit

Permalink
versioning update for overledger api changes
Browse files Browse the repository at this point in the history
  • Loading branch information
philbuuza committed Jan 2, 2025
1 parent 42acc29 commit 76134e6
Show file tree
Hide file tree
Showing 8 changed files with 339 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default {
key: "overledger-execute-signed-transaction",
name: "Execute Signed Transaction",
description: "Executes a signed transaction by sending it to a blockchain node via Overledger. [See the documentation](https://developers.quant.network/reference/executesignedrequest)",
version: "0.0.2",
version: "0.0.3",
type: "action",
props: {
overledger,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "overledger-prepare-smart-contract-transaction",
name: "Prepare Smart Contract Transaction",
description: "Prepares a smart contract transaction for signing on the Overledger platform. [See the documentation](https://developers.quant.network/reference/preparesmartcontractwrite)",
version: "0.0.2",
version: "0.0.3",
type: "action",
props: {
overledger,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {
key: "overledger-read-from-a-smart-contract",
name: "Read from a smart contract",
description: "Reads data from a specified smart contract on the Overledger network.",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
overledger,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import overledger from "../../overledger.app.mjs";
import { TECHNOLOGY_OPTIONS, UNIT_OPTIONS } from "../../common/constants.mjs";
import {
TECHNOLOGY_OPTIONS, UNIT_OPTIONS,
} from "../../common/constants.mjs";

export default {
key: "overledger-sign-a-transaction",
name: "Sign a transaction",
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)",
version: "0.0.1",
version: "0.0.2",
type: "action",
props: {
overledger,
Expand Down Expand Up @@ -51,7 +53,7 @@ export default {
};
// Define DLT Fee and dynamically set the 'unit/symbol' from UNIT_OPTIONS
const dltFee = {
amount: "0.000019897764079968",
amount: "0.0.0.29897764079968",
unit: UNIT_OPTIONS[this.locationTechnology] || "ETH", // Use default if not found
};
// Sign the transaction
Expand Down
2 changes: 1 addition & 1 deletion components/overledger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/overledger",
"version": "0.3.0",
"version": "1.0.0",
"description": "Pipedream Overledger Components",
"main": "overledger.app.mjs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "overledger-new-contract-event-instant",
name: "New Smart Contract Event (Instant)",
description: "Emit new event when a smart contract releases a new event.",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
key: "overledger-watch-new-account-event-instant",
name: "New Account Event (Instant)",
description: "Emit new event for transactions to/from a specific account.",
version: "0.0.2",
version: "0.0.3",
type: "source",
dedupe: "unique",
props: {
Expand Down
Loading

0 comments on commit 76134e6

Please sign in to comment.