├── .gitignore ├── GIT_PUSH.bat ├── README.md ├── package.json ├── public ├── css │ ├── plugins.min.css │ ├── plugins │ │ ├── YouTubePopUp.css │ │ ├── animate.min.css │ │ ├── close.png │ │ ├── magnific-popup.css │ │ ├── owl.carousel.min.css │ │ └── owl.theme.default.min.css │ └── style.min.css ├── favicon.ico ├── fonts │ ├── BalonkuRegular-la1.woff │ ├── CutiePatootie-Rgjv.woff │ └── Rajdhani-Regular.woff ├── index.html ├── js │ ├── YouTubePopUp.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── owl.carousel.min.js │ ├── pace.js │ └── scrollIt.min.js ├── logo.png ├── logo192.png ├── logo512.png ├── manifest.json ├── mixkit-retro-arcade-casino-notification-211.wav └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── About │ │ └── index.js │ ├── ComingSoon │ │ └── index.js │ ├── Faq │ │ └── index.js │ ├── Navbar │ │ └── index.js │ ├── Pro │ │ └── index.js │ ├── Slider │ │ └── index.js │ ├── TimeLine │ │ └── index.js │ └── VideoBG │ │ └── index.js ├── img │ ├── Chris.png │ ├── Jonathan.png │ ├── Jp.png │ ├── Paulina.png │ ├── Savana.png │ ├── Sophia.png │ ├── bg │ │ ├── main-bg-1.jpg │ │ └── sbb-main-bkg.jpg │ └── solbot-about.png ├── index.css ├── index.js ├── react-app-env.d.ts ├── reportWebVitals.js ├── setupTests.js └── utils │ ├── constant.ts │ ├── mx │ ├── account.ts │ ├── constants │ │ ├── index.ts │ │ ├── labels.ts │ │ └── math.ts │ ├── contexts │ │ ├── accounts │ │ │ ├── deserialize.ts │ │ │ └── parsesrs.ts │ │ └── connection.tsx │ ├── metadata.ts │ ├── models │ │ ├── account.ts │ │ └── index.ts │ ├── types │ │ ├── buffer-layout.d.ts │ │ ├── jazzicon.d.ts │ │ └── u64.d.ts │ └── utils │ │ ├── assets.ts │ │ ├── borsh.ts │ │ ├── createPipelineExecutor.ts │ │ ├── eventEmitter.ts │ │ ├── ids.ts │ │ ├── index.tsx │ │ ├── isValidHttpUrl.ts │ │ ├── layout.ts │ │ ├── notifications.tsx │ │ ├── programIds.ts │ │ ├── shortvec.ts │ │ ├── strings.ts │ │ ├── useLocalStorage.ts │ │ └── utils.ts │ ├── nft.ts │ └── ntfs.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/.gitignore -------------------------------------------------------------------------------- /GIT_PUSH.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/GIT_PUSH.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # solanabeachbot 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/package.json -------------------------------------------------------------------------------- /public/css/plugins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins.min.css -------------------------------------------------------------------------------- /public/css/plugins/YouTubePopUp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/YouTubePopUp.css -------------------------------------------------------------------------------- /public/css/plugins/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/animate.min.css -------------------------------------------------------------------------------- /public/css/plugins/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/close.png -------------------------------------------------------------------------------- /public/css/plugins/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/magnific-popup.css -------------------------------------------------------------------------------- /public/css/plugins/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/owl.carousel.min.css -------------------------------------------------------------------------------- /public/css/plugins/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/plugins/owl.theme.default.min.css -------------------------------------------------------------------------------- /public/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/css/style.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/BalonkuRegular-la1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/fonts/BalonkuRegular-la1.woff -------------------------------------------------------------------------------- /public/fonts/CutiePatootie-Rgjv.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/fonts/CutiePatootie-Rgjv.woff -------------------------------------------------------------------------------- /public/fonts/Rajdhani-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/fonts/Rajdhani-Regular.woff -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/YouTubePopUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/YouTubePopUp.js -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/custom.js -------------------------------------------------------------------------------- /public/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/owl.carousel.min.js -------------------------------------------------------------------------------- /public/js/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/pace.js -------------------------------------------------------------------------------- /public/js/scrollIt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/js/scrollIt.min.js -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mixkit-retro-arcade-casino-notification-211.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/mixkit-retro-arcade-casino-notification-211.wav -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/About/index.js -------------------------------------------------------------------------------- /src/components/ComingSoon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/ComingSoon/index.js -------------------------------------------------------------------------------- /src/components/Faq/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/Faq/index.js -------------------------------------------------------------------------------- /src/components/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/Navbar/index.js -------------------------------------------------------------------------------- /src/components/Pro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/Pro/index.js -------------------------------------------------------------------------------- /src/components/Slider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/Slider/index.js -------------------------------------------------------------------------------- /src/components/TimeLine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/TimeLine/index.js -------------------------------------------------------------------------------- /src/components/VideoBG/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/components/VideoBG/index.js -------------------------------------------------------------------------------- /src/img/Chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Chris.png -------------------------------------------------------------------------------- /src/img/Jonathan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Jonathan.png -------------------------------------------------------------------------------- /src/img/Jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Jp.png -------------------------------------------------------------------------------- /src/img/Paulina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Paulina.png -------------------------------------------------------------------------------- /src/img/Savana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Savana.png -------------------------------------------------------------------------------- /src/img/Sophia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/Sophia.png -------------------------------------------------------------------------------- /src/img/bg/main-bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/bg/main-bg-1.jpg -------------------------------------------------------------------------------- /src/img/bg/sbb-main-bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/bg/sbb-main-bkg.jpg -------------------------------------------------------------------------------- /src/img/solbot-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/img/solbot-about.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/constant.ts -------------------------------------------------------------------------------- /src/utils/mx/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/account.ts -------------------------------------------------------------------------------- /src/utils/mx/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/constants/index.ts -------------------------------------------------------------------------------- /src/utils/mx/constants/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/constants/labels.ts -------------------------------------------------------------------------------- /src/utils/mx/constants/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/constants/math.ts -------------------------------------------------------------------------------- /src/utils/mx/contexts/accounts/deserialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/contexts/accounts/deserialize.ts -------------------------------------------------------------------------------- /src/utils/mx/contexts/accounts/parsesrs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/contexts/accounts/parsesrs.ts -------------------------------------------------------------------------------- /src/utils/mx/contexts/connection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/contexts/connection.tsx -------------------------------------------------------------------------------- /src/utils/mx/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/metadata.ts -------------------------------------------------------------------------------- /src/utils/mx/models/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/models/account.ts -------------------------------------------------------------------------------- /src/utils/mx/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/models/index.ts -------------------------------------------------------------------------------- /src/utils/mx/types/buffer-layout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/types/buffer-layout.d.ts -------------------------------------------------------------------------------- /src/utils/mx/types/jazzicon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/types/jazzicon.d.ts -------------------------------------------------------------------------------- /src/utils/mx/types/u64.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/types/u64.d.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/assets.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/borsh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/borsh.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/createPipelineExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/createPipelineExecutor.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/eventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/eventEmitter.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/ids.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/index.tsx -------------------------------------------------------------------------------- /src/utils/mx/utils/isValidHttpUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/isValidHttpUrl.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/layout.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/notifications.tsx -------------------------------------------------------------------------------- /src/utils/mx/utils/programIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/programIds.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/shortvec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/shortvec.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/strings.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/useLocalStorage.ts -------------------------------------------------------------------------------- /src/utils/mx/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/mx/utils/utils.ts -------------------------------------------------------------------------------- /src/utils/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/nft.ts -------------------------------------------------------------------------------- /src/utils/ntfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/src/utils/ntfs.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eros1006/SBot/HEAD/tsconfig.json --------------------------------------------------------------------------------