Eranos: Grin-only fundraising (rebrand + Grin payments + gold)
Deploy to GitHub Pages / deploy (push) Has been cancelled
Test / test (push) Has been cancelled

Rebrand Agora to Eranos and strip the non-Grin rails. Add Grin donations:
a GoblinPay client + GrinPayDialog, on-chain payment-proof verification
(receiver-sig + kernel-on-chain + dedupe), and a proof-verified campaign
tally (kind 3414). Shift the brand from orange to gold. 118 tests green.
This commit is contained in:
Goblin
2026-07-02 08:12:51 -04:00
parent 24009cabdd
commit f131198feb
259 changed files with 3234 additions and 43168 deletions
+2 -2
View File
@@ -13,10 +13,10 @@ import { BuildConfigSchema } from "./src/lib/schemas";
/**
* Load and validate the build-time app configuration file.
* Returns the parsed config object, or `undefined` if the file doesn't exist.
* Set the CONFIG_FILE env var to override the default path ("./agora.json").
* Set the CONFIG_FILE env var to override the default path ("./eranos.json").
*/
function loadBuildConfig(): object | undefined {
const configPath = path.resolve(process.env.CONFIG_FILE ?? "./agora.json");
const configPath = path.resolve(process.env.CONFIG_FILE ?? "./eranos.json");
let raw: string;
try {