├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── AppBar.tsx ├── Increment.tsx ├── Initialize.tsx └── WalletContextProvider.tsx ├── idl.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public └── solanaLogo.png ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/README.md -------------------------------------------------------------------------------- /components/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/components/AppBar.tsx -------------------------------------------------------------------------------- /components/Increment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/components/Increment.tsx -------------------------------------------------------------------------------- /components/Initialize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/components/Initialize.tsx -------------------------------------------------------------------------------- /components/WalletContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/components/WalletContextProvider.tsx -------------------------------------------------------------------------------- /idl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/idl.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/solanaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/public/solanaLogo.png -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xp3p3x0/solana_anchor/HEAD/yarn.lock --------------------------------------------------------------------------------