├── .gitignore ├── .prettierignore ├── Anchor.toml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── app └── site │ ├── .eleventy.js │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── postcss.config.js │ ├── src │ ├── 404.njk │ ├── about.md │ ├── archive.njk │ ├── css │ │ ├── about.css │ │ ├── footer.css │ │ ├── global.css │ │ ├── header.css │ │ ├── hero.css │ │ ├── main.css │ │ ├── not-found.css │ │ ├── post-list.css │ │ ├── post.css │ │ ├── prism-theme.css │ │ ├── typography.css │ │ └── variable.css │ ├── data │ │ └── site.json │ ├── feed.njk │ ├── images │ │ ├── default-social-image.png │ │ └── favicon.ico │ ├── includes │ │ ├── posts-list.njk │ │ └── tags-list.njk │ ├── index.md │ ├── js │ │ └── main.js │ ├── layouts │ │ ├── about.njk │ │ ├── base.njk │ │ ├── home.njk │ │ └── post.njk │ ├── posts │ │ ├── 2nd-place-sandstorm-hackathon.md │ │ ├── byob-integration.md │ │ ├── charges-and-fees.md │ │ ├── cli.md │ │ ├── earning.md │ │ ├── hello-world.md │ │ ├── javascript-sdk.md │ │ ├── jupiter-arbitrage.md │ │ └── posts.json │ ├── robots.njk │ ├── sitemap.njk │ └── tags.njk │ ├── webpack.config.js │ └── yarn.lock ├── migrations └── deploy.ts ├── package.json ├── programs └── flash-loan-mastery │ ├── Cargo.toml │ ├── Xargo.toml │ └── src │ └── lib.rs ├── tests ├── flash-loan-mastery.ts └── test-key.json ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .anchor 3 | .DS_Store 4 | target 5 | **/*.rs.bk 6 | node_modules 7 | test-ledger 8 | 1oanfPPN8r1i4UbugXHDxWMbWVJ5qLSN5qzNFZkz6Fg.json 9 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/.prettierignore -------------------------------------------------------------------------------- /Anchor.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/Anchor.toml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/site/.eleventy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/.eleventy.js -------------------------------------------------------------------------------- /app/site/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.* 3 | *.log 4 | .DS_Store 5 | public 6 | -------------------------------------------------------------------------------- /app/site/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/LICENSE -------------------------------------------------------------------------------- /app/site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/README.md -------------------------------------------------------------------------------- /app/site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/package.json -------------------------------------------------------------------------------- /app/site/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/postcss.config.js -------------------------------------------------------------------------------- /app/site/src/404.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/404.njk -------------------------------------------------------------------------------- /app/site/src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/about.md -------------------------------------------------------------------------------- /app/site/src/archive.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/archive.njk -------------------------------------------------------------------------------- /app/site/src/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/about.css -------------------------------------------------------------------------------- /app/site/src/css/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/footer.css -------------------------------------------------------------------------------- /app/site/src/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/global.css -------------------------------------------------------------------------------- /app/site/src/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/header.css -------------------------------------------------------------------------------- /app/site/src/css/hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/hero.css -------------------------------------------------------------------------------- /app/site/src/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/main.css -------------------------------------------------------------------------------- /app/site/src/css/not-found.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/not-found.css -------------------------------------------------------------------------------- /app/site/src/css/post-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/post-list.css -------------------------------------------------------------------------------- /app/site/src/css/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/post.css -------------------------------------------------------------------------------- /app/site/src/css/prism-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/prism-theme.css -------------------------------------------------------------------------------- /app/site/src/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/typography.css -------------------------------------------------------------------------------- /app/site/src/css/variable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/css/variable.css -------------------------------------------------------------------------------- /app/site/src/data/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/data/site.json -------------------------------------------------------------------------------- /app/site/src/feed.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/feed.njk -------------------------------------------------------------------------------- /app/site/src/images/default-social-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/images/default-social-image.png -------------------------------------------------------------------------------- /app/site/src/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/images/favicon.ico -------------------------------------------------------------------------------- /app/site/src/includes/posts-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/includes/posts-list.njk -------------------------------------------------------------------------------- /app/site/src/includes/tags-list.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/includes/tags-list.njk -------------------------------------------------------------------------------- /app/site/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/index.md -------------------------------------------------------------------------------- /app/site/src/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/site/src/layouts/about.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/layouts/about.njk -------------------------------------------------------------------------------- /app/site/src/layouts/base.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/layouts/base.njk -------------------------------------------------------------------------------- /app/site/src/layouts/home.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/layouts/home.njk -------------------------------------------------------------------------------- /app/site/src/layouts/post.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/layouts/post.njk -------------------------------------------------------------------------------- /app/site/src/posts/2nd-place-sandstorm-hackathon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/2nd-place-sandstorm-hackathon.md -------------------------------------------------------------------------------- /app/site/src/posts/byob-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/byob-integration.md -------------------------------------------------------------------------------- /app/site/src/posts/charges-and-fees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/charges-and-fees.md -------------------------------------------------------------------------------- /app/site/src/posts/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/cli.md -------------------------------------------------------------------------------- /app/site/src/posts/earning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/earning.md -------------------------------------------------------------------------------- /app/site/src/posts/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/hello-world.md -------------------------------------------------------------------------------- /app/site/src/posts/javascript-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/javascript-sdk.md -------------------------------------------------------------------------------- /app/site/src/posts/jupiter-arbitrage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/jupiter-arbitrage.md -------------------------------------------------------------------------------- /app/site/src/posts/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/posts/posts.json -------------------------------------------------------------------------------- /app/site/src/robots.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/robots.njk -------------------------------------------------------------------------------- /app/site/src/sitemap.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/sitemap.njk -------------------------------------------------------------------------------- /app/site/src/tags.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/src/tags.njk -------------------------------------------------------------------------------- /app/site/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/webpack.config.js -------------------------------------------------------------------------------- /app/site/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/app/site/yarn.lock -------------------------------------------------------------------------------- /migrations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/migrations/deploy.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/package.json -------------------------------------------------------------------------------- /programs/flash-loan-mastery/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/programs/flash-loan-mastery/Cargo.toml -------------------------------------------------------------------------------- /programs/flash-loan-mastery/Xargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/programs/flash-loan-mastery/Xargo.toml -------------------------------------------------------------------------------- /programs/flash-loan-mastery/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/programs/flash-loan-mastery/src/lib.rs -------------------------------------------------------------------------------- /tests/flash-loan-mastery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/tests/flash-loan-mastery.ts -------------------------------------------------------------------------------- /tests/test-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/tests/test-key.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshthepitt/flash-loan-mastery/HEAD/yarn.lock --------------------------------------------------------------------------------