From 4c26eff2a24ec5bfc34f828db626a244e659d32b Mon Sep 17 00:00:00 2001 From: Bassgeta Date: Fri, 6 Dec 2024 14:42:20 +0100 Subject: [PATCH] Feat: Add multichain info to action Add multichain info to action Update block ingestor hash and add MULTI_CHAIN_BRIDGE_ENDPOINT var Upgrade colony packages version --- .../api/colonycdapp/schema/schema.graphql | 26 +++++-- .../cacheDomainBalance/src/package-lock.json | 38 +++++----- .../cacheDomainBalance/src/package.json | 2 +- .../fetchColonyBalances/src/package-lock.json | 70 ++++++++++--------- .../fetchColonyBalances/src/package.json | 2 +- .../fetchDomainBalance/src/package-lock.json | 40 ++++++----- .../fetchDomainBalance/src/package.json | 2 +- .../fetchMotionState/src/package-lock.json | 70 ++++++++++--------- .../fetchMotionState/src/package.json | 2 +- .../src/package-lock.json | 70 ++++++++++--------- .../src/package.json | 2 +- .../fetchVoterRewards/src/package-lock.json | 70 ++++++++++--------- .../fetchVoterRewards/src/package.json | 2 +- .../getUserReputation/src/package-lock.json | 70 ++++++++++--------- .../getUserReputation/src/package.json | 2 +- .../getUserTokenBalance/src/package-lock.json | 70 ++++++++++--------- .../getUserTokenBalance/src/package.json | 2 +- .../function/qaSSMtest/src/package-lock.json | 70 ++++++++++--------- .../function/qaSSMtest/src/package.json | 2 +- .../src/package-lock.json | 70 ++++++++++--------- .../src/package.json | 2 +- docker/colony-cdapp-dev-env-block-ingestor | 2 +- .../colony-cdapp-dev-env-proxy-block-ingestor | 2 +- docker/files/block-ingestor/env.base | 2 + docker/files/proxy-block-ingestor/env.base | 2 + package-lock.json | 40 ++++++----- package.json | 4 +- src/graphql/generated.ts | 32 +++++++++ .../sagas/proxyColonies/createProxyColony.ts | 2 + 29 files changed, 435 insertions(+), 335 deletions(-) diff --git a/amplify/backend/api/colonycdapp/schema/schema.graphql b/amplify/backend/api/colonycdapp/schema/schema.graphql index 5c5cc86b02a..e173f21986d 100644 --- a/amplify/backend/api/colonycdapp/schema/schema.graphql +++ b/amplify/backend/api/colonycdapp/schema/schema.graphql @@ -898,6 +898,10 @@ enum ColonyActionType { MANAGE_TOKENS MANAGE_TOKENS_MOTION MANAGE_TOKENS_MULTISIG + """ + An action related to creating a proxy colony + """ + ADD_PROXY_COLONY } """ @@ -3513,6 +3517,22 @@ type ColonyAction @model @searchable { Ids of the staged payment slots released by the action, if any """ expenditureSlotIds: [Int!] + """ + Multichain info if the action is bridged" + """ + multiChainInfo: MultiChainInfo +} + +type MultiChainInfo { + targetChainId: Int! + completed: Boolean! + wormholeInfo: ActionWormholeInfo +} + +type ActionWormholeInfo { + emitterChainId: Int + emitterAddress: String! + sequence: String! } """ @@ -3792,10 +3812,8 @@ type IngestorStats @model { """ The chain id the stats are generated on """ - chainId: String! @index( - name: "byChainId" - queryField: "getIngestorStatsByChainId" - ) + chainId: String! + @index(name: "byChainId", queryField: "getIngestorStatsByChainId") """ JSON string to pass custom, dynamic values """ diff --git a/amplify/backend/function/cacheDomainBalance/src/package-lock.json b/amplify/backend/function/cacheDomainBalance/src/package-lock.json index 52ea63b5d56..44a892724f3 100644 --- a/amplify/backend/function/cacheDomainBalance/src/package-lock.json +++ b/amplify/backend/function/cacheDomainBalance/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "^0.0.0-snapshot-20240329154314", "cross-fetch": "^4.0.0", "date-fns": "^3.6.0" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -92,9 +95,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" diff --git a/amplify/backend/function/cacheDomainBalance/src/package.json b/amplify/backend/function/cacheDomainBalance/src/package.json index 128939dfde4..e44a5fc5644 100644 --- a/amplify/backend/function/cacheDomainBalance/src/package.json +++ b/amplify/backend/function/cacheDomainBalance/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "^0.0.0-snapshot-20240329154314", "cross-fetch": "^4.0.0", "date-fns": "^3.6.0" diff --git a/amplify/backend/function/fetchColonyBalances/src/package-lock.json b/amplify/backend/function/fetchColonyBalances/src/package-lock.json index 8b62e78c79a..ac19fdecd62 100644 --- a/amplify/backend/function/fetchColonyBalances/src/package-lock.json +++ b/amplify/backend/function/fetchColonyBalances/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/fetchColonyBalances/src/package.json b/amplify/backend/function/fetchColonyBalances/src/package.json index a3009aef6e5..8fd656fb439 100644 --- a/amplify/backend/function/fetchColonyBalances/src/package.json +++ b/amplify/backend/function/fetchColonyBalances/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" diff --git a/amplify/backend/function/fetchDomainBalance/src/package-lock.json b/amplify/backend/function/fetchDomainBalance/src/package-lock.json index 18e93567d2e..7bbc3efdcd6 100644 --- a/amplify/backend/function/fetchDomainBalance/src/package-lock.json +++ b/amplify/backend/function/fetchDomainBalance/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "date-fns": "^3.6.0", @@ -20,13 +20,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", - "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", + "dependencies": { + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -37,9 +38,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -49,11 +51,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -95,9 +98,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" diff --git a/amplify/backend/function/fetchDomainBalance/src/package.json b/amplify/backend/function/fetchDomainBalance/src/package.json index 0fb76647277..5bbed4f6bb4 100644 --- a/amplify/backend/function/fetchDomainBalance/src/package.json +++ b/amplify/backend/function/fetchDomainBalance/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "date-fns": "^3.6.0", diff --git a/amplify/backend/function/fetchMotionState/src/package-lock.json b/amplify/backend/function/fetchMotionState/src/package-lock.json index c4c569f52c3..d45c3134ca5 100644 --- a/amplify/backend/function/fetchMotionState/src/package-lock.json +++ b/amplify/backend/function/fetchMotionState/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.1.3" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1649,27 +1653,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1693,9 +1697,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/fetchMotionState/src/package.json b/amplify/backend/function/fetchMotionState/src/package.json index 13cbb0d76ee..f40e182d936 100644 --- a/amplify/backend/function/fetchMotionState/src/package.json +++ b/amplify/backend/function/fetchMotionState/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.1.3" diff --git a/amplify/backend/function/fetchMotionTimeoutPeriods/src/package-lock.json b/amplify/backend/function/fetchMotionTimeoutPeriods/src/package-lock.json index b1b7df41d6f..50e10cb5a3b 100644 --- a/amplify/backend/function/fetchMotionTimeoutPeriods/src/package-lock.json +++ b/amplify/backend/function/fetchMotionTimeoutPeriods/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/fetchMotionTimeoutPeriods/src/package.json b/amplify/backend/function/fetchMotionTimeoutPeriods/src/package.json index a56082cf3cf..c3898bad52b 100644 --- a/amplify/backend/function/fetchMotionTimeoutPeriods/src/package.json +++ b/amplify/backend/function/fetchMotionTimeoutPeriods/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" diff --git a/amplify/backend/function/fetchVoterRewards/src/package-lock.json b/amplify/backend/function/fetchVoterRewards/src/package-lock.json index 34dc1777658..f131a106b35 100644 --- a/amplify/backend/function/fetchVoterRewards/src/package-lock.json +++ b/amplify/backend/function/fetchVoterRewards/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.1.3" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/fetchVoterRewards/src/package.json b/amplify/backend/function/fetchVoterRewards/src/package.json index 9b893a67880..2c87202ad3b 100644 --- a/amplify/backend/function/fetchVoterRewards/src/package.json +++ b/amplify/backend/function/fetchVoterRewards/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.1.3" diff --git a/amplify/backend/function/getUserReputation/src/package-lock.json b/amplify/backend/function/getUserReputation/src/package-lock.json index 18563941d7e..51229d705d6 100644 --- a/amplify/backend/function/getUserReputation/src/package-lock.json +++ b/amplify/backend/function/getUserReputation/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/getUserReputation/src/package.json b/amplify/backend/function/getUserReputation/src/package.json index 49d41f503ea..028cd73dd43 100644 --- a/amplify/backend/function/getUserReputation/src/package.json +++ b/amplify/backend/function/getUserReputation/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" diff --git a/amplify/backend/function/getUserTokenBalance/src/package-lock.json b/amplify/backend/function/getUserTokenBalance/src/package-lock.json index 063aa45539c..2fcd49fef57 100644 --- a/amplify/backend/function/getUserTokenBalance/src/package-lock.json +++ b/amplify/backend/function/getUserTokenBalance/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/getUserTokenBalance/src/package.json b/amplify/backend/function/getUserTokenBalance/src/package.json index 5bb96f0237b..10dd460a2f3 100644 --- a/amplify/backend/function/getUserTokenBalance/src/package.json +++ b/amplify/backend/function/getUserTokenBalance/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" diff --git a/amplify/backend/function/qaSSMtest/src/package-lock.json b/amplify/backend/function/qaSSMtest/src/package-lock.json index c6bd7aecedd..f343f0275be 100644 --- a/amplify/backend/function/qaSSMtest/src/package-lock.json +++ b/amplify/backend/function/qaSSMtest/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" @@ -19,13 +19,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -36,9 +37,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -48,11 +50,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -96,9 +99,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1658,27 +1662,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1702,9 +1706,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/qaSSMtest/src/package.json b/amplify/backend/function/qaSSMtest/src/package.json index 8a48c8ed77d..756a3eb740f 100644 --- a/amplify/backend/function/qaSSMtest/src/package.json +++ b/amplify/backend/function/qaSSMtest/src/package.json @@ -5,7 +5,7 @@ "main": "index.js", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "ethers": "^5.7.2" diff --git a/amplify/backend/function/updateContributorsWithReputation/src/package-lock.json b/amplify/backend/function/updateContributorsWithReputation/src/package-lock.json index 3278f7bab27..7825d8f1802 100644 --- a/amplify/backend/function/updateContributorsWithReputation/src/package-lock.json +++ b/amplify/backend/function/updateContributorsWithReputation/src/package-lock.json @@ -9,7 +9,7 @@ "version": "2.0.0", "license": "Apache-2.0", "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "decimal.js": "^10.2.1", @@ -20,13 +20,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -37,9 +38,10 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -49,11 +51,12 @@ } }, "node_modules/@colony/colony-js/node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -97,9 +100,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -1617,27 +1621,27 @@ }, "dependencies": { "@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", "requires": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "dependencies": { "@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", "requires": {} }, "@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", "requires": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" } @@ -1661,9 +1665,9 @@ } }, "@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", "requires": {} }, "@ethersproject/abi": { diff --git a/amplify/backend/function/updateContributorsWithReputation/src/package.json b/amplify/backend/function/updateContributorsWithReputation/src/package.json index 59faf12fae9..5d2973114af 100644 --- a/amplify/backend/function/updateContributorsWithReputation/src/package.json +++ b/amplify/backend/function/updateContributorsWithReputation/src/package.json @@ -8,7 +8,7 @@ "@types/aws-lambda": "^8.10.92" }, "dependencies": { - "@colony/colony-js": "^8.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", "@colony/events": "3.0.0", "cross-fetch": "^4.0.0", "decimal.js": "^10.2.1", diff --git a/docker/colony-cdapp-dev-env-block-ingestor b/docker/colony-cdapp-dev-env-block-ingestor index 0fab87cc260..3311adc8ba6 100644 --- a/docker/colony-cdapp-dev-env-block-ingestor +++ b/docker/colony-cdapp-dev-env-block-ingestor @@ -1,6 +1,6 @@ FROM colony-cdapp-dev-env/base:latest -ENV BLOCK_INGESTOR_HASH=d5c077a352ee3ab75da70fb56666ba6c519237b1 +ENV BLOCK_INGESTOR_HASH=6b1d83ebfbaa34096b823f2a50113636277607e4 # Declare volumes to set up metadata VOLUME [ "/colonyCDapp/amplify/mock-data" ] diff --git a/docker/colony-cdapp-dev-env-proxy-block-ingestor b/docker/colony-cdapp-dev-env-proxy-block-ingestor index ed1f0c3be5c..51c1436629d 100644 --- a/docker/colony-cdapp-dev-env-proxy-block-ingestor +++ b/docker/colony-cdapp-dev-env-proxy-block-ingestor @@ -1,7 +1,7 @@ FROM colony-cdapp-dev-env/base:latest # @TODO maybe add a PROXY_BLOCK_INGESTOR_HASH and fallback to BLOCK_INGESTOR_HASH -ENV BLOCK_INGESTOR_HASH=d5c077a352ee3ab75da70fb56666ba6c519237b1 +ENV BLOCK_INGESTOR_HASH=6b1d83ebfbaa34096b823f2a50113636277607e4 # @TODO do we need here a contract to be in the format: # { # name: 'ColonyNetwork', diff --git a/docker/files/block-ingestor/env.base b/docker/files/block-ingestor/env.base index 31174ae9fb9..7ecf71f6e68 100644 --- a/docker/files/block-ingestor/env.base +++ b/docker/files/block-ingestor/env.base @@ -10,3 +10,5 @@ AWS_APPSYNC_ENDPOINT=http://amplify:20002/graphql AWS_APPSYNC_KEY=da2-fakeApiId123456 NODE_ENV=development + +MULTI_CHAIN_BRIDGE_ENDPOINT=http://wormhole-relayer:3001/api diff --git a/docker/files/proxy-block-ingestor/env.base b/docker/files/proxy-block-ingestor/env.base index 20dd90619d5..b835488a021 100644 --- a/docker/files/proxy-block-ingestor/env.base +++ b/docker/files/proxy-block-ingestor/env.base @@ -9,3 +9,5 @@ AWS_APPSYNC_ENDPOINT=http://amplify:20002/graphql AWS_APPSYNC_KEY=da2-fakeApiId123456 NODE_ENV=development + +MULTI_CHAIN_BRIDGE_ENDPOINT=http://wormhole-relayer:3001/api diff --git a/package-lock.json b/package-lock.json index 211fcb8537c..ef07777ee9d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,8 +11,8 @@ "dependencies": { "@apollo/client": "3.7.14", "@colony/abis": "^1.6.0", - "@colony/colony-js": "^8.0.0-next.0", - "@colony/events": "^4.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", + "@colony/events": "^4.0.0-next.1", "@colony/redux-promise-listener": "^1.2.0", "@colony/sdk": "^3.0.0-next.2", "@colony/unicode-confusables-noascii": "^0.1.2", @@ -2750,13 +2750,14 @@ } }, "node_modules/@colony/colony-js": { - "version": "8.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.0.tgz", - "integrity": "sha512-F46ElOrzhD/ktfYCQDf1ieNeBbIyWiDPd6cuHBjQ9yEU1iEo4pJfNt3J/57hZkwU+dY6wYqnU3NT7WCeu45u0A==", + "version": "8.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/colony-js/-/colony-js-8.0.0-next.1.tgz", + "integrity": "sha512-up/4KT2vrpPxy1dBTIccQVCAKmoCwPvpFzQ2+NWsp69hY+WV+jHxhFpynFuOfhEOgMzqiESwicwDimQLHDXr5Q==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", - "@colony/events": "^4.0.0-next.0", - "@colony/tokens": "^1.0.0-next.0" + "@colony/core": "^3.0.0-next.1", + "@colony/events": "^4.0.0-next.1", + "@colony/tokens": "^1.0.0-next.1" }, "engines": { "node": "^16 || ^18 || ^20", @@ -2767,9 +2768,10 @@ } }, "node_modules/@colony/core": { - "version": "3.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.0.tgz", - "integrity": "sha512-IfdFoRwmMJOW3Hj6jzn8hOiwA9UxRFiYrEVJpnykm0n/I6c+IPDGZ4lg2sWdimvRa+bJit4gNP39rH+Mj0cHLg==", + "version": "3.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/core/-/core-3.0.0-next.1.tgz", + "integrity": "sha512-40F2Ok9FFKVHpAfUK8qJ/leOqUU7u79pKOjHZFDjL6FPIl5gHokLeDuZBlyHA8MOHxHaefxDRgXUZ1fbqyWh0Q==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" @@ -2795,11 +2797,12 @@ } }, "node_modules/@colony/events": { - "version": "4.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.0.tgz", - "integrity": "sha512-u89fmH6RlQWW8IeejfkZITsdptCm8zGx1a9qJ6F/p4ILY+EBnWdYkSdTZXITACU1r6sNSm4GkochTIjAy0R0ag==", + "version": "4.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/events/-/events-4.0.0-next.1.tgz", + "integrity": "sha512-Mcy8YMKzyFxH5QHBTPlPMmP3lm5S8ITNr2vv2UUy9iQNT7wGMqc2kqZtwtuN5KA0nW1HwvBkgfaFmiKjR5hlIg==", + "license": "GPL-3.0-only", "dependencies": { - "@colony/core": "^3.0.0-next.0", + "@colony/core": "^3.0.0-next.1", "fetch-retry": "^5.0.4", "typia": "^3.8.3" }, @@ -2840,9 +2843,10 @@ } }, "node_modules/@colony/tokens": { - "version": "1.0.0-next.0", - "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.0.tgz", - "integrity": "sha512-j5YBk4nOXwDpYd1LnRyGOLVcRgfvkBgb85TI2aXKLwjRhB2V9f4Jdsy5ooqr7R9cQivYeCvfnEs5euPiHAhgqg==", + "version": "1.0.0-next.1", + "resolved": "https://registry.npmjs.org/@colony/tokens/-/tokens-1.0.0-next.1.tgz", + "integrity": "sha512-vP4SD4lv4o3H160uE1PgWKt1d1zCd7H9W5lAu+XzKNJvd+OVVL5OSxu7XxVpo978tqQW1EgzWLNTbtP/Vl2oJQ==", + "license": "GPL-3.0-only", "engines": { "node": "^16 || ^18 || ^20", "pnpm": "^8" diff --git a/package.json b/package.json index 3497ea27e1f..acde542b222 100644 --- a/package.json +++ b/package.json @@ -158,8 +158,8 @@ "dependencies": { "@apollo/client": "3.7.14", "@colony/abis": "^1.6.0", - "@colony/colony-js": "^8.0.0-next.0", - "@colony/events": "^4.0.0-next.0", + "@colony/colony-js": "^8.0.0-next.1", + "@colony/events": "^4.0.0-next.1", "@colony/redux-promise-listener": "^1.2.0", "@colony/sdk": "^3.0.0-next.2", "@colony/unicode-confusables-noascii": "^0.1.2", diff --git a/src/graphql/generated.ts b/src/graphql/generated.ts index 71f364d6635..3c429a9ffc2 100644 --- a/src/graphql/generated.ts +++ b/src/graphql/generated.ts @@ -33,6 +33,19 @@ export type Scalars = { AWSURL: string; }; +export type ActionWormholeInfo = { + __typename?: 'ActionWormholeInfo'; + emitterAddress: Scalars['String']; + emitterChainId?: Maybe; + sequence: Scalars['String']; +}; + +export type ActionWormholeInfoInput = { + emitterAddress: Scalars['String']; + emitterChainId?: InputMaybe; + sequence: Scalars['String']; +}; + /** Defines an annotation for actions, motions and decisions */ export type Annotation = { __typename?: 'Annotation'; @@ -483,6 +496,8 @@ export type ColonyAction = { motionDomainId?: Maybe; /** The internal database id of the motion */ motionId?: Maybe; + /** Multichain info if the action is bridged" */ + multiChainInfo?: Maybe; /** Expanded `ColonyMultiSig` for the corresponding `multiSigId` */ multiSigData?: Maybe; /** The internal database id of the multiSig */ @@ -583,6 +598,8 @@ export type ColonyActionRolesInput = { * These can all happen in a Colony and will be interpreted by the dApp according to their types */ export enum ColonyActionType { + /** An action related to creating a proxy colony */ + AddProxyColony = 'ADD_PROXY_COLONY', /** An action related to adding verified members */ AddVerifiedMembers = 'ADD_VERIFIED_MEMBERS', AddVerifiedMembersMotion = 'ADD_VERIFIED_MEMBERS_MOTION', @@ -1428,6 +1445,7 @@ export type CreateColonyActionInput = { members?: InputMaybe>; motionDomainId?: InputMaybe; motionId?: InputMaybe; + multiChainInfo?: InputMaybe; multiSigId?: InputMaybe; networkFee?: InputMaybe; newColonyVersion?: InputMaybe; @@ -5226,6 +5244,19 @@ export type MotionStateHistoryInput = { yaySideFullyStakedAt?: InputMaybe; }; +export type MultiChainInfo = { + __typename?: 'MultiChainInfo'; + completed: Scalars['Boolean']; + targetChainId: Scalars['Int']; + wormholeInfo?: Maybe; +}; + +export type MultiChainInfoInput = { + completed: Scalars['Boolean']; + targetChainId: Scalars['Int']; + wormholeInfo?: InputMaybe; +}; + export type MultiSigDomainConfig = { __typename?: 'MultiSigDomainConfig'; domainId: Scalars['ID']; @@ -9630,6 +9661,7 @@ export type UpdateColonyActionInput = { members?: InputMaybe>; motionDomainId?: InputMaybe; motionId?: InputMaybe; + multiChainInfo?: InputMaybe; multiSigId?: InputMaybe; networkFee?: InputMaybe; newColonyVersion?: InputMaybe; diff --git a/src/redux/sagas/proxyColonies/createProxyColony.ts b/src/redux/sagas/proxyColonies/createProxyColony.ts index f1c95b290ca..7136e07c7bc 100644 --- a/src/redux/sagas/proxyColonies/createProxyColony.ts +++ b/src/redux/sagas/proxyColonies/createProxyColony.ts @@ -90,6 +90,8 @@ function* createProxyColony({ params, }), ); + // eslint-disable-next-line no-console + console.log('PROXY COLONY TXHASH', transaction.hash); const [eventData, receipt] = yield waitForMined();