@pipedream/overledger 0.2.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.
@@ -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.2",
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.2",
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.1",
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,
@@ -1,11 +1,18 @@
1
1
  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";
3
5
 
4
6
  export default {
5
7
  key: "overledger-sign-a-transaction",
6
8
  name: "Sign a transaction",
7
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)",
8
- version: "0.0.1",
10
+ version: "0.0.4",
11
+ annotations: {
12
+ destructiveHint: false,
13
+ openWorldHint: true,
14
+ readOnlyHint: false,
15
+ },
9
16
  type: "action",
10
17
  props: {
11
18
  overledger,
@@ -24,15 +24,13 @@ export const TECHNOLOGY_OPTIONS = [
24
24
  export const NETWORK_OPTIONS = {
25
25
  "ethereum": [
26
26
  "ethereum sepolia testnet",
27
- "ethereum goerli testnet",
28
27
  "ethereum mainnet",
29
- "polygon mumbai testnet",
28
+ "polygon amoy testnet",
30
29
  "polygon mainnet",
31
30
  "avalanche fuji testnet",
32
31
  "avalanche c-chain mainnet",
33
32
  "xdc apothem testnet",
34
33
  "xdc network mainnet",
35
- "Defined on demand",
36
34
  ],
37
35
  "substrate": [
38
36
  "polkadot westend",
@@ -27,8 +27,8 @@ export default {
27
27
  },
28
28
  _getBaseUrl(environment) { //conditional for environment url selection.
29
29
  return environment === "sandbox"
30
- ? "https://api.sandbox.overledger.io"
31
- : "https://api.overledger.io";
30
+ ? "https://api.sandbox.overledger.dev"
31
+ : "https://api.overledger.dev";
32
32
  },
33
33
  _makeRequest({
34
34
  $ = this, environment, path, ...otherOpts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/overledger",
3
- "version": "0.2.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.5.1"
16
+ "@pipedream/platform": "^1.6.8"
17
17
  }
18
18
  }
@@ -6,7 +6,7 @@ export default {
6
6
  key: "overledger-new-contract-event-instant",
7
7
  name: "New Smart Contract Event (Instant)",
8
8
  description: "Emit new event when a smart contract releases a new event.",
9
- version: "0.0.2",
9
+ version: "0.0.3",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  props: {
@@ -6,7 +6,7 @@ export default {
6
6
  key: "overledger-watch-new-account-event-instant",
7
7
  name: "New Account Event (Instant)",
8
8
  description: "Emit new event for transactions to/from a specific account.",
9
- version: "0.0.2",
9
+ version: "0.0.3",
10
10
  type: "source",
11
11
  dedupe: "unique",
12
12
  props: {