Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overledger upgrade #15052

Merged
merged 29 commits into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
60944ee
overledger new actions added - read from smart contract and sign a tr…
philbuuza Oct 6, 2024
9bf2aca
Update components/overledger/actions/read-from-a-smart-contract/read-…
philbuuza Oct 7, 2024
d192f17
Update components/overledger/actions/read-from-a-smart-contract/read-…
philbuuza Oct 7, 2024
29d88f5
modified read from smart contract parameters
philbuuza Oct 7, 2024
4ff3794
modified readfromsmart contract transaction, prepare-sign-execute tra…
philbuuza Oct 8, 2024
2b4a1a8
modified readfromsmart contract transaction, prepare-sign-execute tra…
philbuuza Oct 8, 2024
ee22f40
modified readfromsmart contract transaction, prepare-sign-execute tra…
philbuuza Oct 8, 2024
281f0d6
modified readfromsmart contract transaction, prepare-sign-execute tra…
philbuuza Oct 8, 2024
9dff018
modified Overledger.app to add instance selection between Sandbox and…
philbuuza Oct 8, 2024
08bc1ae
modified Overledger.app to add instance selection between Sandbox and…
philbuuza Oct 8, 2024
6193c92
comments added to explain actions modifications
philbuuza Oct 8, 2024
f3f62a3
Merge branch 'master' into master
luancazarine Oct 8, 2024
c0f9c61
Merge branch 'master' into master
luancazarine Oct 8, 2024
a149d10
Merge branch 'master' into master
philbuuza Oct 9, 2024
a2ec749
added versioning updates to actions and overledger pckage.json. as w…
philbuuza Oct 9, 2024
f7a15ba
code revisions made based on pull request review
philbuuza Oct 10, 2024
271233d
added enironment prop to commmon sources file (base.mjs) and updated …
philbuuza Oct 11, 2024
f59b702
Merge branch 'master' into master
philbuuza Oct 14, 2024
7e639e0
fixed issue with sign-a-transaction default nativeData being undefine…
philbuuza Oct 15, 2024
1ae32d0
removal of default actions prop values on sign-transaction - stop err…
philbuuza Oct 20, 2024
6ef7e41
tested and ammended read-from smart contract ans sign transcation to …
philbuuza Oct 23, 2024
5b1c403
Merge branch 'PipedreamHQ:master' into master
philbuuza Dec 16, 2024
aee142a
upgraded overledger urls sandbox and production to new .dev urls, cha…
philbuuza Dec 16, 2024
579ccf1
upgraded overledger urls sandbox and production to new .dev urls, cha…
philbuuza Dec 20, 2024
42acc29
upgraded overledger urls sandbox and production to new .dev urls, cha…
philbuuza Dec 20, 2024
c347a81
versioning update for overledger component to 1.0.0 due to API url c…
philbuuza Jan 2, 2025
7681262
updates
michelle0927 Jan 8, 2025
926c0f2
Merge remote-tracking branch 'upstream/master' into overledger-upgrade
michelle0927 Jan 8, 2025
6764f32
pnpm-lock.yaml
michelle0927 Jan 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.3",
type: "action",
props: {
overledger,
Expand Down
4 changes: 1 addition & 3 deletions components/overledger/common/constants.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions components/overledger/overledger.app.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2.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
17 changes: 7 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading