diff --git a/.github/workflows/tapir.yml b/.github/workflows/tapir.yml index 6813c8c6b..dd207b0d7 100644 --- a/.github/workflows/tapir.yml +++ b/.github/workflows/tapir.yml @@ -13,7 +13,7 @@ env: RPC_PROVIDER_URL: 'https://rpc-amoy.polygon.technology' ENCRYPTOR_PRIVATE_KEY: '0x900edb9e8214b2353f82aa195e915128f419a92cfb8bbc0f4784f10ef4112b86' CONSUMER_PRIVATE_KEY: '0xf307e165339cb5deb2b8ec59c31a5c0a957b8e8453ce7fe8a19d9a4c8acf36d4' - RITUAL_ID: '0' + RITUAL_ID: '6' jobs: networks: diff --git a/demos/taco-demo/src/config.ts b/demos/taco-demo/src/config.ts index b8c12177d..447351b00 100644 --- a/demos/taco-demo/src/config.ts +++ b/demos/taco-demo/src/config.ts @@ -1,6 +1,6 @@ import { domains } from '@nucypher/taco'; -export const DEFAULT_RITUAL_ID = parseInt(process.env.DEFAULT_RITUAL_ID || '0'); +export const DEFAULT_RITUAL_ID = parseInt(process.env.DEFAULT_RITUAL_ID || '6'); export const DEFAULT_DOMAIN = process.env.DEFAULT_DOMAIN || domains.TESTNET; // Node 2 is free diff --git a/demos/taco-nft-demo/src/config.ts b/demos/taco-nft-demo/src/config.ts index f98b1ab06..8bf304a7d 100644 --- a/demos/taco-nft-demo/src/config.ts +++ b/demos/taco-nft-demo/src/config.ts @@ -1,4 +1,4 @@ import { domains } from '@nucypher/taco'; -export const DEFAULT_RITUAL_ID = parseInt(process.env.DEFAULT_RITUAL_ID || '0'); +export const DEFAULT_RITUAL_ID = parseInt(process.env.DEFAULT_RITUAL_ID || '6'); export const DEFAULT_DOMAIN = process.env.DEFAULT_DOMAIN || domains.TESTNET; diff --git a/examples/taco/nextjs/src/app/page.tsx b/examples/taco/nextjs/src/app/page.tsx index fd5771efe..13fcc2ba0 100644 --- a/examples/taco/nextjs/src/app/page.tsx +++ b/examples/taco/nextjs/src/app/page.tsx @@ -10,7 +10,7 @@ import useTaco from '../hooks/useTaco'; // eslint-disable-next-line @typescript-eslint/no-explicit-any declare const window: any; -const ritualId = 0; // Replace with your own ritual ID +const ritualId = 6; // Replace with your own ritual ID const domain = domains.TESTNET; function App() { diff --git a/examples/taco/nodejs/.env.example b/examples/taco/nodejs/.env.example index ef69135a5..7c961a23f 100644 --- a/examples/taco/nodejs/.env.example +++ b/examples/taco/nodejs/.env.example @@ -5,5 +5,5 @@ RPC_PROVIDER_URL=https://rpc-amoy.polygon.technology # We provide here some defaults, but we encourage you to choose your own. ENCRYPTOR_PRIVATE_KEY=0x900edb9e8214b2353f82aa195e915128f419a92cfb8bbc0f4784f10ef4112b86 CONSUMER_PRIVATE_KEY=0xf307e165339cb5deb2b8ec59c31a5c0a957b8e8453ce7fe8a19d9a4c8acf36d4 -RITUAL_ID=0 +RITUAL_ID=6 DOMAIN=tapir diff --git a/examples/taco/nodejs/src/index.ts b/examples/taco/nodejs/src/index.ts index 303cb14bf..ef4550ab5 100644 --- a/examples/taco/nodejs/src/index.ts +++ b/examples/taco/nodejs/src/index.ts @@ -36,7 +36,7 @@ if (!consumerPrivateKey) { } const domain = process.env.DOMAIN || domains.TESTNET; -const ritualId = parseInt(process.env.RITUAL_ID || '0'); +const ritualId = parseInt(process.env.RITUAL_ID || '6'); const provider = new ethers.providers.JsonRpcProvider(rpcProviderUrl); const CHAIN_ID_FOR_DOMAIN = { [domains.MAINNET]: 137, diff --git a/examples/taco/react/src/App.tsx b/examples/taco/react/src/App.tsx index 481b856fd..dd5161822 100644 --- a/examples/taco/react/src/App.tsx +++ b/examples/taco/react/src/App.tsx @@ -9,7 +9,7 @@ import useTaco from './hooks/useTaco'; // eslint-disable-next-line @typescript-eslint/no-explicit-any declare const window: any; -const ritualId = 0; // Replace with your own ritual ID +const ritualId = 6; // Replace with your own ritual ID const domain = domains.TESTNET; function App() { diff --git a/examples/taco/webpack-5/src/index.ts b/examples/taco/webpack-5/src/index.ts index 886388ecf..433aaddca 100644 --- a/examples/taco/webpack-5/src/index.ts +++ b/examples/taco/webpack-5/src/index.ts @@ -20,7 +20,7 @@ declare const window: any; const runExample = async () => { await initialize(); - const ritualId = 0; // Replace with your own ritual ID + const ritualId = 6; // Replace with your own ritual ID const domain = domains.TESTNET; const provider = new ethers.providers.Web3Provider(window.ethereum!, 'any');