├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── jsconfig.json ├── markdoc ├── nodes.js └── tags.js ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── programs ├── hello-world │ ├── .gitignore │ ├── .prettierignore │ ├── Anchor.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── assets │ │ └── output.png │ ├── migrations │ │ └── deploy.ts │ ├── package.json │ ├── programs │ │ └── hello-world │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── tests │ │ └── hello-world.ts │ ├── tsconfig.json │ └── yarn.lock ├── non-custodial-escrow │ ├── .gitignore │ ├── .prettierignore │ ├── Anchor.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── migrations │ │ └── deploy.ts │ ├── package.json │ ├── programs │ │ └── non-custodial-escrow │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── tests │ │ └── non-custodial-escrow.ts │ ├── tsconfig.json │ └── yarn.lock ├── onchain-voting │ ├── .gitignore │ ├── .prettierignore │ ├── Anchor.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── migrations │ │ └── deploy.ts │ ├── package.json │ ├── programs │ │ └── onchain-voting │ │ │ ├── Cargo.toml │ │ │ ├── Xargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── tests │ │ └── onchain-voting.ts │ ├── tsconfig.json │ └── yarn.lock └── self-custodial-facebook │ ├── .gitignore │ ├── .prettierignore │ ├── Anchor.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── migrations │ └── deploy.ts │ ├── package.json │ ├── programs │ └── self-custodial-facebook │ │ ├── Cargo.toml │ │ ├── Xargo.toml │ │ └── src │ │ └── lib.rs │ ├── tests │ └── self-custodial-facebook.ts │ ├── tsconfig.json │ └── yarn.lock ├── public ├── create_initialize_multiple_ix.svg ├── favicon.ico ├── fonts │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ ├── lexend.txt │ └── lexend.woff2 ├── heap_segment.svg ├── logo.png └── transaction.svg ├── src ├── components │ ├── Button.jsx │ ├── Callout.jsx │ ├── Code.jsx │ ├── Fence.jsx │ ├── Hero.jsx │ ├── HeroBackground.jsx │ ├── Icon.jsx │ ├── Layout.jsx │ ├── LinkGrid.jsx │ ├── Logo.jsx │ ├── MobileNavigation.jsx │ ├── Navigation.jsx │ ├── Prose.jsx │ ├── Search.jsx │ ├── ThemeSelector.jsx │ ├── copyIcon.jsx │ └── icons │ │ ├── InstallationIcon.jsx │ │ ├── LightbulbIcon.jsx │ │ ├── PluginsIcon.jsx │ │ ├── PresetsIcon.jsx │ │ ├── ThemingIcon.jsx │ │ └── WarningIcon.jsx ├── images │ ├── blur-cyan.png │ └── blur-indigo.png ├── pages │ ├── _app.jsx │ ├── _document.jsx │ ├── docs │ │ ├── hello-world.md │ │ ├── non-custodial-escrow.md │ │ ├── onchain-voting.md │ │ └── self-custodial-facebook.md │ └── index.md └── styles │ ├── docsearch.css │ ├── fonts.css │ ├── prism.css │ └── tailwind.css ├── tailwind.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/jsconfig.json -------------------------------------------------------------------------------- /markdoc/nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/markdoc/nodes.js -------------------------------------------------------------------------------- /markdoc/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/markdoc/tags.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/prettier.config.js -------------------------------------------------------------------------------- /programs/hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | test-ledger 8 | -------------------------------------------------------------------------------- /programs/hello-world/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/.prettierignore -------------------------------------------------------------------------------- /programs/hello-world/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/Anchor.toml -------------------------------------------------------------------------------- /programs/hello-world/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/Cargo.lock -------------------------------------------------------------------------------- /programs/hello-world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/Cargo.toml -------------------------------------------------------------------------------- /programs/hello-world/assets/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/assets/output.png -------------------------------------------------------------------------------- /programs/hello-world/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/migrations/deploy.ts -------------------------------------------------------------------------------- /programs/hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/package.json -------------------------------------------------------------------------------- /programs/hello-world/programs/hello-world/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/programs/hello-world/Cargo.toml -------------------------------------------------------------------------------- /programs/hello-world/programs/hello-world/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/programs/hello-world/Xargo.toml -------------------------------------------------------------------------------- /programs/hello-world/programs/hello-world/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/programs/hello-world/src/lib.rs -------------------------------------------------------------------------------- /programs/hello-world/tests/hello-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/tests/hello-world.ts -------------------------------------------------------------------------------- /programs/hello-world/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/tsconfig.json -------------------------------------------------------------------------------- /programs/hello-world/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/hello-world/yarn.lock -------------------------------------------------------------------------------- /programs/non-custodial-escrow/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | test-ledger 8 | -------------------------------------------------------------------------------- /programs/non-custodial-escrow/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/.prettierignore -------------------------------------------------------------------------------- /programs/non-custodial-escrow/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/Anchor.toml -------------------------------------------------------------------------------- /programs/non-custodial-escrow/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/Cargo.lock -------------------------------------------------------------------------------- /programs/non-custodial-escrow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/Cargo.toml -------------------------------------------------------------------------------- /programs/non-custodial-escrow/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/migrations/deploy.ts -------------------------------------------------------------------------------- /programs/non-custodial-escrow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/package.json -------------------------------------------------------------------------------- /programs/non-custodial-escrow/programs/non-custodial-escrow/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/programs/non-custodial-escrow/Cargo.toml -------------------------------------------------------------------------------- /programs/non-custodial-escrow/programs/non-custodial-escrow/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/programs/non-custodial-escrow/Xargo.toml -------------------------------------------------------------------------------- /programs/non-custodial-escrow/programs/non-custodial-escrow/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/programs/non-custodial-escrow/src/lib.rs -------------------------------------------------------------------------------- /programs/non-custodial-escrow/tests/non-custodial-escrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/tests/non-custodial-escrow.ts -------------------------------------------------------------------------------- /programs/non-custodial-escrow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/tsconfig.json -------------------------------------------------------------------------------- /programs/non-custodial-escrow/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/non-custodial-escrow/yarn.lock -------------------------------------------------------------------------------- /programs/onchain-voting/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | test-ledger 8 | -------------------------------------------------------------------------------- /programs/onchain-voting/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/.prettierignore -------------------------------------------------------------------------------- /programs/onchain-voting/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/Anchor.toml -------------------------------------------------------------------------------- /programs/onchain-voting/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/Cargo.lock -------------------------------------------------------------------------------- /programs/onchain-voting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/Cargo.toml -------------------------------------------------------------------------------- /programs/onchain-voting/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/migrations/deploy.ts -------------------------------------------------------------------------------- /programs/onchain-voting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/package.json -------------------------------------------------------------------------------- /programs/onchain-voting/programs/onchain-voting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/programs/onchain-voting/Cargo.toml -------------------------------------------------------------------------------- /programs/onchain-voting/programs/onchain-voting/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/programs/onchain-voting/Xargo.toml -------------------------------------------------------------------------------- /programs/onchain-voting/programs/onchain-voting/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/programs/onchain-voting/src/lib.rs -------------------------------------------------------------------------------- /programs/onchain-voting/tests/onchain-voting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/tests/onchain-voting.ts -------------------------------------------------------------------------------- /programs/onchain-voting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/tsconfig.json -------------------------------------------------------------------------------- /programs/onchain-voting/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/onchain-voting/yarn.lock -------------------------------------------------------------------------------- /programs/self-custodial-facebook/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | test-ledger 8 | -------------------------------------------------------------------------------- /programs/self-custodial-facebook/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/.prettierignore -------------------------------------------------------------------------------- /programs/self-custodial-facebook/Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/Anchor.toml -------------------------------------------------------------------------------- /programs/self-custodial-facebook/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/Cargo.lock -------------------------------------------------------------------------------- /programs/self-custodial-facebook/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/Cargo.toml -------------------------------------------------------------------------------- /programs/self-custodial-facebook/migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/migrations/deploy.ts -------------------------------------------------------------------------------- /programs/self-custodial-facebook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/package.json -------------------------------------------------------------------------------- /programs/self-custodial-facebook/programs/self-custodial-facebook/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/programs/self-custodial-facebook/Cargo.toml -------------------------------------------------------------------------------- /programs/self-custodial-facebook/programs/self-custodial-facebook/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/programs/self-custodial-facebook/Xargo.toml -------------------------------------------------------------------------------- /programs/self-custodial-facebook/programs/self-custodial-facebook/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/programs/self-custodial-facebook/src/lib.rs -------------------------------------------------------------------------------- /programs/self-custodial-facebook/tests/self-custodial-facebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/tests/self-custodial-facebook.ts -------------------------------------------------------------------------------- /programs/self-custodial-facebook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/tsconfig.json -------------------------------------------------------------------------------- /programs/self-custodial-facebook/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/programs/self-custodial-facebook/yarn.lock -------------------------------------------------------------------------------- /public/create_initialize_multiple_ix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/create_initialize_multiple_ix.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /public/fonts/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/fonts/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /public/fonts/lexend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/fonts/lexend.txt -------------------------------------------------------------------------------- /public/fonts/lexend.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/fonts/lexend.woff2 -------------------------------------------------------------------------------- /public/heap_segment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/heap_segment.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/transaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/public/transaction.svg -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/Callout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Callout.jsx -------------------------------------------------------------------------------- /src/components/Code.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Code.jsx -------------------------------------------------------------------------------- /src/components/Fence.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Fence.jsx -------------------------------------------------------------------------------- /src/components/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Hero.jsx -------------------------------------------------------------------------------- /src/components/HeroBackground.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/HeroBackground.jsx -------------------------------------------------------------------------------- /src/components/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Icon.jsx -------------------------------------------------------------------------------- /src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Layout.jsx -------------------------------------------------------------------------------- /src/components/LinkGrid.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/LinkGrid.jsx -------------------------------------------------------------------------------- /src/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Logo.jsx -------------------------------------------------------------------------------- /src/components/MobileNavigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/MobileNavigation.jsx -------------------------------------------------------------------------------- /src/components/Navigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Navigation.jsx -------------------------------------------------------------------------------- /src/components/Prose.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Prose.jsx -------------------------------------------------------------------------------- /src/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/Search.jsx -------------------------------------------------------------------------------- /src/components/ThemeSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/ThemeSelector.jsx -------------------------------------------------------------------------------- /src/components/copyIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/copyIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/InstallationIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/InstallationIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/LightbulbIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/LightbulbIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/PluginsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/PluginsIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/PresetsIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/PresetsIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/ThemingIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/ThemingIcon.jsx -------------------------------------------------------------------------------- /src/components/icons/WarningIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/components/icons/WarningIcon.jsx -------------------------------------------------------------------------------- /src/images/blur-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/images/blur-cyan.png -------------------------------------------------------------------------------- /src/images/blur-indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/images/blur-indigo.png -------------------------------------------------------------------------------- /src/pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/_app.jsx -------------------------------------------------------------------------------- /src/pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/_document.jsx -------------------------------------------------------------------------------- /src/pages/docs/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/docs/hello-world.md -------------------------------------------------------------------------------- /src/pages/docs/non-custodial-escrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/docs/non-custodial-escrow.md -------------------------------------------------------------------------------- /src/pages/docs/onchain-voting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/docs/onchain-voting.md -------------------------------------------------------------------------------- /src/pages/docs/self-custodial-facebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/docs/self-custodial-facebook.md -------------------------------------------------------------------------------- /src/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/pages/index.md -------------------------------------------------------------------------------- /src/styles/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/styles/docsearch.css -------------------------------------------------------------------------------- /src/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/styles/fonts.css -------------------------------------------------------------------------------- /src/styles/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/styles/prism.css -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coral-xyz/anchor-by-example/HEAD/yarn.lock --------------------------------------------------------------------------------