@@ -42,7 +42,8 @@ Guidance for AI coding agents working in this repository. See
4242| Contract build with sizes | ` cd contracts && forge build --sizes ` |
4343| Contract tests | ` cd contracts && forge test -vvv ` |
4444| Local Anvil deploy helper | ` ./local-rpc.sh src/RIK.sol:RIK ` |
45- | Sepolia deploy script | ` cd contracts && PRIVATE_KEY=... ./deploy-sepolia.sh ` |
45+ | Base Sepolia RIK deploy script | ` cd contracts && PRIVATE_KEY=... ./deploy-rik-base-sepolia.sh ` |
46+ | Base Sepolia RIKLauncher deploy script | ` cd contracts && PRIVATE_KEY=... AIRLOCK_ADDRESS=... RIK_ADDRESS=... ./deploy-rik-launcher-base-sepolia.sh ` |
4647| Finds agents TODOs when asked | ` rg -F 'TODO (AGENT)' ` |
4748
4849Do not run release/versioning commands such as ` cd cli && pnpm version:minor `
@@ -72,9 +73,14 @@ release path. They mutate `cli/package.json`.
7273 ownership, JWT claims, keys, and expiry.
7374- ` contracts/test/fixtures/load-fixture.mjs ` : Node helper used by ` vm.ffi ` to
7475 generate deterministic RSA/JWT fixtures for Solidity tests.
75- - ` contracts/script/Deploy.s.sol ` : Foundry deploy script.
76- - ` contracts/deploy-sepolia.sh ` : Sepolia deploy wrapper using ` PRIVATE_KEY ` and
77- optional ` SEPOLIA_RPC_URL ` / ` VERIFY ` .
76+ - ` contracts/script/DeployRIK.s.sol ` : Foundry deploy script for ` RIK ` .
77+ - ` contracts/script/DeployRIKLauncher.s.sol ` : Foundry deploy script for
78+ ` RIKLauncher ` .
79+ - ` contracts/deploy-rik-base-sepolia.sh ` : Base Sepolia deploy wrapper for
80+ ` RIK ` using ` PRIVATE_KEY ` and optional ` BASE_SEPOLIA_RPC_URL ` / ` VERIFY ` .
81+ - ` contracts/deploy-rik-launcher-base-sepolia.sh ` : Base Sepolia deploy wrapper
82+ for ` RIKLauncher ` using ` PRIVATE_KEY ` , ` AIRLOCK_ADDRESS ` , ` RIK_ADDRESS ` , and
83+ optional ` BASE_SEPOLIA_RPC_URL ` / ` VERIFY ` .
7884- ` contracts/lib/ ` : git submodules and vendor code. Do not edit directly.
7985
8086## Architecture Boundaries
0 commit comments