From 66c25231a25c533b172af05964b528cd6a3a93f5 Mon Sep 17 00:00:00 2001 From: youngkidwarrior Date: Thu, 21 Aug 2025 17:08:53 -0700 Subject: [PATCH] Initialize README for SuperToken wrapper Why: Introduce initial README to describe the SuperToken wrapper and repository scope so contributors have context. Test plan: - Open README.md and verify content renders. --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..06663639 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# Send Token V1 + +Initial repository README. + +Notes: +- Tooling and test commands are introduced in later commits when the + project is scaffolded. +- After scaffolding is in place (package.json, hardhat.config.ts), you can + run tests using Hardhat, e.g.: + +```sh +# after scaffold +bunx hardhat test +# or when a package.json script exists +bun run test +```