diff --git a/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs b/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs index 6dde413c438be..7e21ea44c664c 100644 --- a/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs +++ b/components/overledger/actions/execute-signed-transaction/execute-signed-transaction.mjs @@ -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, diff --git a/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs b/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs index 4fc0fb11ad5d2..5dedda399ff12 100644 --- a/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs +++ b/components/overledger/actions/prepare-smart-contract-transaction/prepare-smart-contract-transaction.mjs @@ -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, diff --git a/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs b/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs index 5e4cab704bb74..d05977fb19136 100644 --- a/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs +++ b/components/overledger/actions/read-from-a-smart-contract/read-from-a-smart-contract.mjs @@ -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, diff --git a/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs b/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs index ca7edb523aac5..f24ac3c535d25 100644 --- a/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs +++ b/components/overledger/actions/sign-a-transaction/sign-a-transaction.mjs @@ -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.3", type: "action", props: { overledger, diff --git a/components/overledger/common/constants.mjs b/components/overledger/common/constants.mjs index e9e8dd4a77959..58d8d0c621972 100644 --- a/components/overledger/common/constants.mjs +++ b/components/overledger/common/constants.mjs @@ -24,15 +24,13 @@ export const TECHNOLOGY_OPTIONS = [ export const NETWORK_OPTIONS = { "ethereum": [ "ethereum sepolia testnet", - "ethereum goerli testnet", "ethereum mainnet", - "polygon mumbai testnet", + "polygon amoy testnet", "polygon mainnet", "avalanche fuji testnet", "avalanche c-chain mainnet", "xdc apothem testnet", "xdc network mainnet", - "Defined on demand", ], "substrate": [ "polkadot westend", diff --git a/components/overledger/overledger.app.mjs b/components/overledger/overledger.app.mjs index d7f4e561f6569..794e845ed370a 100644 --- a/components/overledger/overledger.app.mjs +++ b/components/overledger/overledger.app.mjs @@ -27,8 +27,8 @@ export default { }, _getBaseUrl(environment) { //conditional for environment url selection. return environment === "sandbox" - ? "https://api.sandbox.overledger.io" - : "https://api.overledger.io"; + ? "https://api.sandbox.overledger.dev" + : "https://api.overledger.dev"; }, _makeRequest({ $ = this, environment, path, ...otherOpts diff --git a/components/overledger/package.json b/components/overledger/package.json index 7cb7ad307a8bb..e6ff12a98bcf5 100644 --- a/components/overledger/package.json +++ b/components/overledger/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/overledger", - "version": "0.2.0", + "version": "1.0.0", "description": "Pipedream Overledger Components", "main": "overledger.app.mjs", "keywords": [ diff --git a/components/overledger/sources/new-contract-event-instant/new-contract-event-instant.mjs b/components/overledger/sources/new-contract-event-instant/new-contract-event-instant.mjs index 1ea476ebfe6c8..32609a09817bc 100644 --- a/components/overledger/sources/new-contract-event-instant/new-contract-event-instant.mjs +++ b/components/overledger/sources/new-contract-event-instant/new-contract-event-instant.mjs @@ -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: { diff --git a/components/overledger/sources/watch-new-account-event-instant/watch-new-account-event-instant.mjs b/components/overledger/sources/watch-new-account-event-instant/watch-new-account-event-instant.mjs index f0c29481e1883..75a43e58b8a01 100644 --- a/components/overledger/sources/watch-new-account-event-instant/watch-new-account-event-instant.mjs +++ b/components/overledger/sources/watch-new-account-event-instant/watch-new-account-event-instant.mjs @@ -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: { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index aea813e82d1e7..2c968c076c8a4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5204,8 +5204,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/instantly: - specifiers: {} + components/instantly: {} components/instapaper: dependencies: @@ -6644,8 +6643,7 @@ importers: specifier: ^3.0.3 version: 3.0.3 - components/motive: - specifiers: {} + components/motive: {} components/moxie: dependencies: @@ -10832,8 +10830,7 @@ importers: specifier: ^1.5.1 version: 1.6.6 - components/traffit: - specifiers: {} + components/traffit: {} components/trainual: {} @@ -24721,22 +24718,22 @@ packages: superagent@3.8.1: resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==} engines: {node: '>= 4.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@4.1.0: resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==} engines: {node: '>= 6.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@5.3.1: resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==} engines: {node: '>= 7.0.0'} - deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at . + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@7.1.6: resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==} engines: {node: '>=6.4.0 <13 || >=14'} - deprecated: Please downgrade to v7.1.5 if you need IE/ActiveXObject support OR upgrade to v8.0.0 as we no longer support IE and published an incorrect patch version (see https://github.com/visionmedia/superagent/issues/1731) + deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net supports-color@2.0.0: resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}