From e41a23b96c147ce345fde2a54b3d1426ab986a26 Mon Sep 17 00:00:00 2001 From: Loris Leiva Date: Fri, 29 May 2026 08:32:03 +0100 Subject: [PATCH] Relocate program IDL to repo root This PR moves the program IDL from `program/idl.json` to `idl.json`, aligning system with the canonical IDL location used across the `solana-program/*` repos. The file content is unchanged, so the generated clients are unaffected; `codama.mjs` and the README badge URL are updated to point at the new path. --- README.md | 2 +- codama.mjs | 2 +- program/idl.json => idl.json | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename program/idl.json => idl.json (100%) diff --git a/README.md b/README.md index d987dfe..2ba200c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # System - + diff --git a/codama.mjs b/codama.mjs index 3c49cf6..21b3375 100644 --- a/codama.mjs +++ b/codama.mjs @@ -3,7 +3,7 @@ import { execSync } from 'node:child_process'; const nightly = execSync('make --no-print-directory rust-toolchain-nightly').toString().trim(); export default { - idl: 'program/idl.json', + idl: 'idl.json', before: [], scripts: { js: { diff --git a/program/idl.json b/idl.json similarity index 100% rename from program/idl.json rename to idl.json