├── .eslintrc.cjs ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .prettierrc ├── README.md ├── index.html ├── package.json ├── public ├── CNAME ├── blockchains │ ├── Scroll.png │ └── zkSync.png ├── f62bde80 │ ├── 17b67c1d-0698-4b42-bf17-bdef269deee3.png │ └── 29003706-758f-42fe-9192-d3353e6879b0.svg ├── icon.svg └── protocols │ ├── basilisk.png │ ├── bigint.png │ ├── dodo.png │ ├── draculafi.png │ ├── ezkalibur.png │ ├── fulcrom.png │ ├── goal3.png │ ├── holdstation.png │ ├── izumi.png │ ├── macaronswap.png │ ├── maverick.png │ ├── muteio.png │ ├── odos.png │ ├── onchaintrade.png │ ├── orbiter.png │ ├── pancakeswap.png │ ├── rollup.png │ ├── scrollbridge.png │ ├── scrollnameservice.png │ ├── skydrome.png │ ├── spacefi.png │ ├── starmaker.png │ ├── syncswap.png │ ├── tevaera.png │ ├── velocore.png │ ├── velocorev2.png │ ├── xyfinance.png │ ├── zkswap.png │ ├── zksyncbridge.png │ ├── zksyncid.png │ └── zksyncnameservice.png ├── src ├── App.css ├── App.tsx ├── blockchains │ ├── index.ts │ ├── scroll │ │ ├── additional.ts │ │ ├── airdrop.ts │ │ ├── protocol.ts │ │ ├── protocols │ │ │ ├── dodo.ts │ │ │ ├── orbiter.ts │ │ │ ├── scrollbridge.ts │ │ │ ├── scrollnameservice.ts │ │ │ ├── skydrome.ts │ │ │ └── syncswap.ts │ │ ├── token.ts │ │ ├── transaction.ts │ │ ├── transfer.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── wallet.ts │ ├── types.ts │ ├── utils.ts │ └── zksync │ │ ├── additional.ts │ │ ├── airdrop.ts │ │ ├── protocol.ts │ │ ├── protocols │ │ ├── basilisk.ts │ │ ├── bigint.ts │ │ ├── dracula.ts │ │ ├── ezkalibur.ts │ │ ├── fulcrom.ts │ │ ├── goal3.ts │ │ ├── holdstation.ts │ │ ├── izumifinance.ts │ │ ├── macaronswap.ts │ │ ├── maverick.ts │ │ ├── muteio.ts │ │ ├── odos.ts │ │ ├── orbiter.ts │ │ ├── pancakeswap.ts │ │ ├── rollup.ts │ │ ├── spacefi.ts │ │ ├── starmaker.ts │ │ ├── syncswap.ts │ │ ├── tevaera.ts │ │ ├── velocore.ts │ │ ├── velocorev2.ts │ │ ├── xyfinance.ts │ │ ├── zkswap.ts │ │ ├── zksyncbridge.ts │ │ ├── zksyncid.ts │ │ └── zksyncnameservice.ts │ │ ├── token.ts │ │ ├── transaction.ts │ │ ├── transfer.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── wallet.ts ├── components │ ├── Advertising │ │ ├── Advertising.css │ │ ├── Advertising.logic.tsx │ │ └── Advertising.tsx │ ├── AirdropItem │ │ ├── AirdropItem.css │ │ ├── AirdropItem.logic.tsx │ │ ├── AirdropItem.reducer.ts │ │ └── AirdropItem.tsx │ ├── DeleteDialog │ │ ├── DeleteDialog.css │ │ ├── DeleteDialog.logic.tsx │ │ └── DeleteDialog.tsx │ ├── DialogBanner │ │ ├── DialogBanner.css │ │ ├── DialogBanner.logic.tsx │ │ └── DialogBanner.tsx │ ├── DialogContainer │ │ ├── DialogContainer.css │ │ └── DialogContainer.tsx │ ├── Dialogs │ │ ├── Dialogs.logic.tsx │ │ └── Dialogs.tsx │ ├── DropDown │ │ ├── DropDown.css │ │ ├── DropDown.logic.tsx │ │ ├── DropDown.reducer.ts │ │ └── DropDown.tsx │ ├── Footer │ │ ├── Footer.css │ │ └── Footer.tsx │ ├── GridInfo │ │ ├── GridInfo.css │ │ └── GridInfo.tsx │ ├── Input │ │ ├── Input.css │ │ ├── Input.logic.tsx │ │ └── Input.tsx │ ├── LinkContainer │ │ └── LinkContainer.tsx │ ├── Loader │ │ ├── Loader.css │ │ └── Loader.tsx │ ├── MainInfo │ │ ├── MainInfo.css │ │ └── MainInfo.tsx │ ├── Navbar │ │ ├── Navbar.css │ │ ├── Navbar.logic.tsx │ │ ├── Navbar.reducer.ts │ │ └── Navbar.tsx │ ├── NewWallet │ │ ├── NewWallet.css │ │ ├── NewWallet.logic.tsx │ │ └── NewWallet.tsx │ ├── NoWallet │ │ ├── NoWallet.css │ │ ├── NoWallet.logic.tsx │ │ └── NoWallet.tsx │ ├── Protocols │ │ ├── Protocols.css │ │ ├── Protocols.logic.tsx │ │ └── Protocols.tsx │ ├── Search │ │ ├── Search.css │ │ ├── Search.logic.tsx │ │ └── Search.tsx │ ├── Settings │ │ ├── Settings.css │ │ ├── Settings.logic.tsx │ │ ├── Settings.reducer.ts │ │ └── Settings.tsx │ ├── Title │ │ ├── Title.css │ │ └── Title.tsx │ ├── UnknownUrlDialog │ │ ├── UnknownUrlDialog.css │ │ ├── UnknownUrlDialog.logic..tsx │ │ └── UnknownUrlDialog.tsx │ ├── WalletDialog │ │ ├── WalletDialog.css │ │ ├── WalletDialog.logic.tsx │ │ └── WalletDialog.tsx │ └── WalletDropDown │ │ ├── WalletDropDown.css │ │ ├── WalletDropDown.logic.ts │ │ ├── WalletDropDown.reducer.ts │ │ └── WalletDropDown.tsx ├── hook │ └── useLocalStorage.tsx ├── icons │ ├── AddIcon │ │ └── AddIcon.tsx │ ├── Chevron │ │ └── Chevron.tsx │ ├── Cross │ │ └── Cross.tsx │ ├── DeleteIcon │ │ └── DeleteIcon.tsx │ ├── EditIcon │ │ └── EditIcon.tsx │ ├── Gear │ │ └── Gear.tsx │ ├── Information │ │ └── Information.tsx │ └── Magnifier │ │ └── Magnifier.tsx ├── main.tsx ├── redux │ ├── reducer │ │ ├── blockchainReducer.ts │ │ ├── dialogReducer.ts │ │ └── walletReducer.ts │ └── store.tsx ├── types │ ├── Dialogs │ │ ├── IDialogAction.ts │ │ └── IDialogs.ts │ └── Wallet │ │ ├── IGridInfo.ts │ │ └── IWallet.ts ├── utils │ ├── cutWalletAdress.ts │ ├── isChangeProperty.ts │ ├── isNumber.ts │ ├── isProfit.ts │ ├── isTotalProperty.ts │ ├── preventBigString.ts │ ├── toCapitalize.ts │ └── toFixed.ts ├── views │ ├── Home │ │ ├── Home.css │ │ ├── Home.logic.tsx │ │ └── Home.tsx │ ├── Overview │ │ ├── Overview.css │ │ ├── Overview.logic.tsx │ │ ├── Overview.reducer.ts │ │ └── Overview.tsx │ └── Wallet │ │ ├── Wallet.css │ │ ├── Wallet.logic.tsx │ │ ├── Wallet.reducer.ts │ │ └── Wallet.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | zk-flow.net -------------------------------------------------------------------------------- /public/blockchains/Scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/blockchains/Scroll.png -------------------------------------------------------------------------------- /public/blockchains/zkSync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/blockchains/zkSync.png -------------------------------------------------------------------------------- /public/f62bde80/17b67c1d-0698-4b42-bf17-bdef269deee3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/f62bde80/17b67c1d-0698-4b42-bf17-bdef269deee3.png -------------------------------------------------------------------------------- /public/f62bde80/29003706-758f-42fe-9192-d3353e6879b0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/f62bde80/29003706-758f-42fe-9192-d3353e6879b0.svg -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/protocols/basilisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/basilisk.png -------------------------------------------------------------------------------- /public/protocols/bigint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/bigint.png -------------------------------------------------------------------------------- /public/protocols/dodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/dodo.png -------------------------------------------------------------------------------- /public/protocols/draculafi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/draculafi.png -------------------------------------------------------------------------------- /public/protocols/ezkalibur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/ezkalibur.png -------------------------------------------------------------------------------- /public/protocols/fulcrom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/fulcrom.png -------------------------------------------------------------------------------- /public/protocols/goal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/goal3.png -------------------------------------------------------------------------------- /public/protocols/holdstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/holdstation.png -------------------------------------------------------------------------------- /public/protocols/izumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/izumi.png -------------------------------------------------------------------------------- /public/protocols/macaronswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/macaronswap.png -------------------------------------------------------------------------------- /public/protocols/maverick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/maverick.png -------------------------------------------------------------------------------- /public/protocols/muteio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/muteio.png -------------------------------------------------------------------------------- /public/protocols/odos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/odos.png -------------------------------------------------------------------------------- /public/protocols/onchaintrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/onchaintrade.png -------------------------------------------------------------------------------- /public/protocols/orbiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/orbiter.png -------------------------------------------------------------------------------- /public/protocols/pancakeswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/pancakeswap.png -------------------------------------------------------------------------------- /public/protocols/rollup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/rollup.png -------------------------------------------------------------------------------- /public/protocols/scrollbridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/scrollbridge.png -------------------------------------------------------------------------------- /public/protocols/scrollnameservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/scrollnameservice.png -------------------------------------------------------------------------------- /public/protocols/skydrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/skydrome.png -------------------------------------------------------------------------------- /public/protocols/spacefi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/spacefi.png -------------------------------------------------------------------------------- /public/protocols/starmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/starmaker.png -------------------------------------------------------------------------------- /public/protocols/syncswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/syncswap.png -------------------------------------------------------------------------------- /public/protocols/tevaera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/tevaera.png -------------------------------------------------------------------------------- /public/protocols/velocore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/velocore.png -------------------------------------------------------------------------------- /public/protocols/velocorev2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/velocorev2.png -------------------------------------------------------------------------------- /public/protocols/xyfinance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/xyfinance.png -------------------------------------------------------------------------------- /public/protocols/zkswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/zkswap.png -------------------------------------------------------------------------------- /public/protocols/zksyncbridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/zksyncbridge.png -------------------------------------------------------------------------------- /public/protocols/zksyncid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/zksyncid.png -------------------------------------------------------------------------------- /public/protocols/zksyncnameservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/public/protocols/zksyncnameservice.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/blockchains/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/index.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/additional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/additional.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/airdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/airdrop.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocol.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/dodo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/dodo.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/orbiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/orbiter.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/scrollbridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/scrollbridge.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/scrollnameservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/scrollnameservice.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/skydrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/skydrome.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/protocols/syncswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/protocols/syncswap.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/token.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/transaction.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/transfer.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/types.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/utils.ts -------------------------------------------------------------------------------- /src/blockchains/scroll/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/scroll/wallet.ts -------------------------------------------------------------------------------- /src/blockchains/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/types.ts -------------------------------------------------------------------------------- /src/blockchains/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/utils.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/additional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/additional.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/airdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/airdrop.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocol.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/basilisk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/basilisk.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/bigint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/bigint.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/dracula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/dracula.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/ezkalibur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/ezkalibur.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/fulcrom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/fulcrom.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/goal3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/goal3.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/holdstation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/holdstation.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/izumifinance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/izumifinance.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/macaronswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/macaronswap.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/maverick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/maverick.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/muteio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/muteio.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/odos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/odos.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/orbiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/orbiter.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/pancakeswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/pancakeswap.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/rollup.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/spacefi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/spacefi.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/starmaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/starmaker.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/syncswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/syncswap.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/tevaera.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/tevaera.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/velocore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/velocore.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/velocorev2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/velocorev2.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/xyfinance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/xyfinance.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/zkswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/zkswap.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/zksyncbridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/zksyncbridge.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/zksyncid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/zksyncid.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/protocols/zksyncnameservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/protocols/zksyncnameservice.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/token.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/transaction.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/transfer.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/types.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/utils.ts -------------------------------------------------------------------------------- /src/blockchains/zksync/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/blockchains/zksync/wallet.ts -------------------------------------------------------------------------------- /src/components/Advertising/Advertising.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Advertising/Advertising.css -------------------------------------------------------------------------------- /src/components/Advertising/Advertising.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Advertising/Advertising.logic.tsx -------------------------------------------------------------------------------- /src/components/Advertising/Advertising.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Advertising/Advertising.tsx -------------------------------------------------------------------------------- /src/components/AirdropItem/AirdropItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/AirdropItem/AirdropItem.css -------------------------------------------------------------------------------- /src/components/AirdropItem/AirdropItem.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/AirdropItem/AirdropItem.logic.tsx -------------------------------------------------------------------------------- /src/components/AirdropItem/AirdropItem.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/AirdropItem/AirdropItem.reducer.ts -------------------------------------------------------------------------------- /src/components/AirdropItem/AirdropItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/AirdropItem/AirdropItem.tsx -------------------------------------------------------------------------------- /src/components/DeleteDialog/DeleteDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DeleteDialog/DeleteDialog.css -------------------------------------------------------------------------------- /src/components/DeleteDialog/DeleteDialog.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DeleteDialog/DeleteDialog.logic.tsx -------------------------------------------------------------------------------- /src/components/DeleteDialog/DeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DeleteDialog/DeleteDialog.tsx -------------------------------------------------------------------------------- /src/components/DialogBanner/DialogBanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DialogBanner/DialogBanner.css -------------------------------------------------------------------------------- /src/components/DialogBanner/DialogBanner.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DialogBanner/DialogBanner.logic.tsx -------------------------------------------------------------------------------- /src/components/DialogBanner/DialogBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DialogBanner/DialogBanner.tsx -------------------------------------------------------------------------------- /src/components/DialogContainer/DialogContainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DialogContainer/DialogContainer.css -------------------------------------------------------------------------------- /src/components/DialogContainer/DialogContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DialogContainer/DialogContainer.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/Dialogs.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Dialogs/Dialogs.logic.tsx -------------------------------------------------------------------------------- /src/components/Dialogs/Dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Dialogs/Dialogs.tsx -------------------------------------------------------------------------------- /src/components/DropDown/DropDown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DropDown/DropDown.css -------------------------------------------------------------------------------- /src/components/DropDown/DropDown.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DropDown/DropDown.logic.tsx -------------------------------------------------------------------------------- /src/components/DropDown/DropDown.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DropDown/DropDown.reducer.ts -------------------------------------------------------------------------------- /src/components/DropDown/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/DropDown/DropDown.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Footer/Footer.css -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/GridInfo/GridInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/GridInfo/GridInfo.css -------------------------------------------------------------------------------- /src/components/GridInfo/GridInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/GridInfo/GridInfo.tsx -------------------------------------------------------------------------------- /src/components/Input/Input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Input/Input.css -------------------------------------------------------------------------------- /src/components/Input/Input.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Input/Input.logic.tsx -------------------------------------------------------------------------------- /src/components/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Input/Input.tsx -------------------------------------------------------------------------------- /src/components/LinkContainer/LinkContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/LinkContainer/LinkContainer.tsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Loader/Loader.css -------------------------------------------------------------------------------- /src/components/Loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Loader/Loader.tsx -------------------------------------------------------------------------------- /src/components/MainInfo/MainInfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/MainInfo/MainInfo.css -------------------------------------------------------------------------------- /src/components/MainInfo/MainInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/MainInfo/MainInfo.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Navbar/Navbar.logic.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Navbar/Navbar.reducer.ts -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /src/components/NewWallet/NewWallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NewWallet/NewWallet.css -------------------------------------------------------------------------------- /src/components/NewWallet/NewWallet.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NewWallet/NewWallet.logic.tsx -------------------------------------------------------------------------------- /src/components/NewWallet/NewWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NewWallet/NewWallet.tsx -------------------------------------------------------------------------------- /src/components/NoWallet/NoWallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NoWallet/NoWallet.css -------------------------------------------------------------------------------- /src/components/NoWallet/NoWallet.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NoWallet/NoWallet.logic.tsx -------------------------------------------------------------------------------- /src/components/NoWallet/NoWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/NoWallet/NoWallet.tsx -------------------------------------------------------------------------------- /src/components/Protocols/Protocols.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Protocols/Protocols.css -------------------------------------------------------------------------------- /src/components/Protocols/Protocols.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Protocols/Protocols.logic.tsx -------------------------------------------------------------------------------- /src/components/Protocols/Protocols.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Protocols/Protocols.tsx -------------------------------------------------------------------------------- /src/components/Search/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Search/Search.css -------------------------------------------------------------------------------- /src/components/Search/Search.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Search/Search.logic.tsx -------------------------------------------------------------------------------- /src/components/Search/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Search/Search.tsx -------------------------------------------------------------------------------- /src/components/Settings/Settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Settings/Settings.css -------------------------------------------------------------------------------- /src/components/Settings/Settings.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Settings/Settings.logic.tsx -------------------------------------------------------------------------------- /src/components/Settings/Settings.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Settings/Settings.reducer.ts -------------------------------------------------------------------------------- /src/components/Settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Settings/Settings.tsx -------------------------------------------------------------------------------- /src/components/Title/Title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Title/Title.css -------------------------------------------------------------------------------- /src/components/Title/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/Title/Title.tsx -------------------------------------------------------------------------------- /src/components/UnknownUrlDialog/UnknownUrlDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/UnknownUrlDialog/UnknownUrlDialog.css -------------------------------------------------------------------------------- /src/components/UnknownUrlDialog/UnknownUrlDialog.logic..tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/UnknownUrlDialog/UnknownUrlDialog.logic..tsx -------------------------------------------------------------------------------- /src/components/UnknownUrlDialog/UnknownUrlDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/UnknownUrlDialog/UnknownUrlDialog.tsx -------------------------------------------------------------------------------- /src/components/WalletDialog/WalletDialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDialog/WalletDialog.css -------------------------------------------------------------------------------- /src/components/WalletDialog/WalletDialog.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDialog/WalletDialog.logic.tsx -------------------------------------------------------------------------------- /src/components/WalletDialog/WalletDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDialog/WalletDialog.tsx -------------------------------------------------------------------------------- /src/components/WalletDropDown/WalletDropDown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDropDown/WalletDropDown.css -------------------------------------------------------------------------------- /src/components/WalletDropDown/WalletDropDown.logic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDropDown/WalletDropDown.logic.ts -------------------------------------------------------------------------------- /src/components/WalletDropDown/WalletDropDown.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDropDown/WalletDropDown.reducer.ts -------------------------------------------------------------------------------- /src/components/WalletDropDown/WalletDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/components/WalletDropDown/WalletDropDown.tsx -------------------------------------------------------------------------------- /src/hook/useLocalStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/hook/useLocalStorage.tsx -------------------------------------------------------------------------------- /src/icons/AddIcon/AddIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/AddIcon/AddIcon.tsx -------------------------------------------------------------------------------- /src/icons/Chevron/Chevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/Chevron/Chevron.tsx -------------------------------------------------------------------------------- /src/icons/Cross/Cross.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/Cross/Cross.tsx -------------------------------------------------------------------------------- /src/icons/DeleteIcon/DeleteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/DeleteIcon/DeleteIcon.tsx -------------------------------------------------------------------------------- /src/icons/EditIcon/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/EditIcon/EditIcon.tsx -------------------------------------------------------------------------------- /src/icons/Gear/Gear.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/Gear/Gear.tsx -------------------------------------------------------------------------------- /src/icons/Information/Information.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/Information/Information.tsx -------------------------------------------------------------------------------- /src/icons/Magnifier/Magnifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/icons/Magnifier/Magnifier.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/redux/reducer/blockchainReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/redux/reducer/blockchainReducer.ts -------------------------------------------------------------------------------- /src/redux/reducer/dialogReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/redux/reducer/dialogReducer.ts -------------------------------------------------------------------------------- /src/redux/reducer/walletReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/redux/reducer/walletReducer.ts -------------------------------------------------------------------------------- /src/redux/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/redux/store.tsx -------------------------------------------------------------------------------- /src/types/Dialogs/IDialogAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/types/Dialogs/IDialogAction.ts -------------------------------------------------------------------------------- /src/types/Dialogs/IDialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/types/Dialogs/IDialogs.ts -------------------------------------------------------------------------------- /src/types/Wallet/IGridInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/types/Wallet/IGridInfo.ts -------------------------------------------------------------------------------- /src/types/Wallet/IWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/types/Wallet/IWallet.ts -------------------------------------------------------------------------------- /src/utils/cutWalletAdress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/cutWalletAdress.ts -------------------------------------------------------------------------------- /src/utils/isChangeProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/isChangeProperty.ts -------------------------------------------------------------------------------- /src/utils/isNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/isNumber.ts -------------------------------------------------------------------------------- /src/utils/isProfit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/isProfit.ts -------------------------------------------------------------------------------- /src/utils/isTotalProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/isTotalProperty.ts -------------------------------------------------------------------------------- /src/utils/preventBigString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/preventBigString.ts -------------------------------------------------------------------------------- /src/utils/toCapitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/toCapitalize.ts -------------------------------------------------------------------------------- /src/utils/toFixed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/utils/toFixed.ts -------------------------------------------------------------------------------- /src/views/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Home/Home.css -------------------------------------------------------------------------------- /src/views/Home/Home.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Home/Home.logic.tsx -------------------------------------------------------------------------------- /src/views/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Home/Home.tsx -------------------------------------------------------------------------------- /src/views/Overview/Overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Overview/Overview.css -------------------------------------------------------------------------------- /src/views/Overview/Overview.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Overview/Overview.logic.tsx -------------------------------------------------------------------------------- /src/views/Overview/Overview.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Overview/Overview.reducer.ts -------------------------------------------------------------------------------- /src/views/Overview/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Overview/Overview.tsx -------------------------------------------------------------------------------- /src/views/Wallet/Wallet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Wallet/Wallet.css -------------------------------------------------------------------------------- /src/views/Wallet/Wallet.logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Wallet/Wallet.logic.tsx -------------------------------------------------------------------------------- /src/views/Wallet/Wallet.reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Wallet/Wallet.reducer.ts -------------------------------------------------------------------------------- /src/views/Wallet/Wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/src/views/Wallet/Wallet.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByFishh/zk-flow/HEAD/yarn.lock --------------------------------------------------------------------------------