├── .env.example ├── .eslintrc.json ├── .gitignore ├── .husky ├── pre-commit └── prepare-commit-msg ├── .stylelintrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── config-overrides.js ├── contracts ├── Chat.sol ├── Membership.sol ├── NFTs.sol ├── Profiles.sol ├── Sponsor.sol ├── access │ ├── AccessControl.sol │ ├── IAccessControl.sol │ ├── Ownable.sol │ ├── Ownable2Step.sol │ ├── README.adoc │ ├── extensions │ │ ├── AccessControlDefaultAdminRules.sol │ │ ├── AccessControlEnumerable.sol │ │ ├── IAccessControlDefaultAdminRules.sol │ │ └── IAccessControlEnumerable.sol │ └── manager │ │ ├── AccessManaged.sol │ │ ├── AccessManager.sol │ │ ├── AuthorityUtils.sol │ │ ├── IAccessManaged.sol │ │ ├── IAccessManager.sol │ │ └── IAuthority.sol ├── interfaces │ ├── IERC1155.sol │ ├── IERC1155MetadataURI.sol │ ├── IERC1155Receiver.sol │ ├── IERC1271.sol │ ├── IERC1363.sol │ ├── IERC1363Receiver.sol │ ├── IERC1363Spender.sol │ ├── IERC165.sol │ ├── IERC1820Implementer.sol │ ├── IERC1820Registry.sol │ ├── IERC1967.sol │ ├── IERC20.sol │ ├── IERC20Metadata.sol │ ├── IERC2309.sol │ ├── IERC2612.sol │ ├── IERC2981.sol │ ├── IERC3156.sol │ ├── IERC3156FlashBorrower.sol │ ├── IERC3156FlashLender.sol │ ├── IERC4626.sol │ ├── IERC4906.sol │ ├── IERC5267.sol │ ├── IERC5313.sol │ ├── IERC5805.sol │ ├── IERC6372.sol │ ├── IERC721.sol │ ├── IERC721Enumerable.sol │ ├── IERC721Metadata.sol │ ├── IERC721Receiver.sol │ ├── IERC777.sol │ ├── IERC777Recipient.sol │ ├── IERC777Sender.sol │ ├── README.adoc │ ├── draft-IERC1822.sol │ └── draft-IERC6093.sol ├── mcall.sol ├── token │ ├── ERC1155 │ │ ├── ERC1155.sol │ │ ├── IERC1155.sol │ │ ├── IERC1155Receiver.sol │ │ ├── README.adoc │ │ ├── extensions │ │ │ ├── ERC1155Burnable.sol │ │ │ ├── ERC1155Pausable.sol │ │ │ ├── ERC1155Supply.sol │ │ │ ├── ERC1155URIStorage.sol │ │ │ └── IERC1155MetadataURI.sol │ │ └── utils │ │ │ └── ERC1155Holder.sol │ ├── ERC20 │ │ ├── ERC20.sol │ │ ├── IERC20.sol │ │ ├── README.adoc │ │ ├── extensions │ │ │ ├── ERC20Burnable.sol │ │ │ ├── ERC20Capped.sol │ │ │ ├── ERC20FlashMint.sol │ │ │ ├── ERC20Pausable.sol │ │ │ ├── ERC20Permit.sol │ │ │ ├── ERC20Votes.sol │ │ │ ├── ERC20Wrapper.sol │ │ │ ├── ERC4626.sol │ │ │ ├── IERC20Metadata.sol │ │ │ └── IERC20Permit.sol │ │ └── utils │ │ │ └── SafeERC20.sol │ ├── ERC721 │ │ ├── ERC721.sol │ │ ├── IERC721.sol │ │ ├── IERC721Receiver.sol │ │ ├── README.adoc │ │ ├── extensions │ │ │ ├── ERC721Burnable.sol │ │ │ ├── ERC721Consecutive.sol │ │ │ ├── ERC721Enumerable.sol │ │ │ ├── ERC721Pausable.sol │ │ │ ├── ERC721Royalty.sol │ │ │ ├── ERC721URIStorage.sol │ │ │ ├── ERC721Votes.sol │ │ │ ├── ERC721Wrapper.sol │ │ │ ├── IERC721Enumerable.sol │ │ │ └── IERC721Metadata.sol │ │ └── utils │ │ │ └── ERC721Holder.sol │ └── common │ │ ├── ERC2981.sol │ │ └── README.adoc └── utils │ ├── Address.sol │ ├── Arrays.sol │ ├── Base64.sol │ ├── Context.sol │ ├── Create2.sol │ ├── Multicall.sol │ ├── Nonces.sol │ ├── Pausable.sol │ ├── README.adoc │ ├── ReentrancyGuard.sol │ ├── ShortStrings.sol │ ├── StorageSlot.sol │ ├── Strings.sol │ ├── cryptography │ ├── ECDSA.sol │ ├── EIP712.sol │ ├── MerkleProof.sol │ ├── MessageHashUtils.sol │ └── SignatureChecker.sol │ ├── introspection │ ├── ERC165.sol │ ├── ERC165Checker.sol │ └── IERC165.sol │ ├── math │ ├── Math.sol │ ├── SafeCast.sol │ └── SignedMath.sol │ ├── structs │ ├── BitMaps.sol │ ├── Checkpoints.sol │ ├── DoubleEndedQueue.sol │ ├── EnumerableMap.sol │ └── EnumerableSet.sol │ └── types │ └── Time.sol ├── package.json ├── public ├── index.html └── robots.txt ├── src ├── NFTs │ ├── components │ │ ├── NFTCard │ │ │ ├── NFTCard.module.scss │ │ │ └── NFTCard.tsx │ │ └── pages │ │ │ ├── NFT │ │ │ ├── NFTPage.module.scss │ │ │ └── NFTPage.tsx │ │ │ ├── NFTs │ │ │ ├── NFTsPage.module.scss │ │ │ └── NFTsPage.tsx │ │ │ ├── addNFT │ │ │ ├── AddOrEditNFTPage.module.scss │ │ │ └── AddOrEditNFTPage.tsx │ │ │ ├── authorNFTs │ │ │ ├── AuthorNFTsPage.module.scss │ │ │ └── AuthorNFTsPage.tsx │ │ │ └── orgNFTs │ │ │ ├── DAONFTsPage.module.scss │ │ │ └── DAONFTsPage.tsx │ ├── constants.ts │ ├── sagas │ │ ├── NFTs.ts │ │ └── index.ts │ ├── selectors │ │ └── NFTsSelectors.ts │ ├── slice │ │ └── NFTsSlice.ts │ └── types.ts ├── account │ ├── sagas │ │ ├── accountSaga.ts │ │ └── index.ts │ ├── selectors │ │ └── accountSelectors.ts │ ├── slice │ │ └── accountSlice.ts │ └── typings │ │ └── accountTypings.ts ├── api │ ├── openResty.ts │ ├── paygate.ts │ └── popup.ts ├── appEnvs.ts ├── application │ ├── components │ │ ├── App.tsx │ │ ├── AppRoutes.tsx │ │ └── pages │ │ │ └── about │ │ │ ├── AboutPage.module.scss │ │ │ └── AboutPage.tsx │ ├── constants.ts │ ├── daos.json │ ├── sagas │ │ ├── index.ts │ │ ├── initApplicationSaga.ts │ │ └── rootSaga.ts │ ├── selectors │ │ └── index.ts │ ├── slice │ │ └── applicationSlice.ts │ ├── store.ts │ ├── typings │ │ └── routes.ts │ └── utils │ │ ├── MUITheme.ts │ │ ├── applicationUtils.ts │ │ ├── getApiErrorMessage.ts │ │ ├── history.ts │ │ ├── localStorageUtils.ts │ │ └── popup.ts ├── assets │ └── icons │ │ ├── AttachIcon.tsx │ │ ├── BellIcon.tsx │ │ ├── ChevronDown.tsx │ │ ├── PaginationArrow.tsx │ │ ├── ParkIcon.tsx │ │ ├── SelectIcon.tsx │ │ ├── back.svg │ │ ├── banner.svg │ │ ├── category.svg │ │ ├── check.svg │ │ ├── chevron-right.svg │ │ ├── chevron.svg │ │ ├── clock-three.svg │ │ ├── clock.svg │ │ ├── close-button.svg │ │ ├── close.svg │ │ ├── coins-stacked.svg │ │ ├── cube.svg │ │ ├── edit-profile.svg │ │ ├── filter.svg │ │ ├── fingerprint.svg │ │ ├── image-plus.svg │ │ ├── index.tsx │ │ ├── log-in.svg │ │ ├── logout.svg │ │ ├── marker-circle.svg │ │ ├── marker.svg │ │ ├── sort.svg │ │ ├── typings.ts │ │ ├── un-check.svg │ │ ├── user.svg │ │ └── wallet.svg ├── common │ ├── button │ │ ├── Button.module.scss │ │ └── Button.tsx │ ├── checkbox │ │ └── Checkbox.tsx │ ├── filter │ │ ├── Filter.module.scss │ │ └── Filter.tsx │ ├── footer │ │ ├── Footer.module.scss │ │ └── Footer.tsx │ ├── header │ │ ├── AccountDropdown.module.scss │ │ ├── AccountDropdown.tsx │ │ ├── Header.module.scss │ │ └── Header.tsx │ ├── iconButton │ │ ├── IconButton.module.scss │ │ └── IconButton.tsx │ ├── index.ts │ ├── jdenticon │ │ └── Jdenticon.tsx │ ├── langSelect │ │ ├── LangSelect.module.scss │ │ └── LangSelect.tsx │ ├── layout │ │ ├── Layout.module.scss │ │ └── Layout.tsx │ ├── loader │ │ ├── FullScreenLoader.module.scss │ │ ├── FullScreenLoader.tsx │ │ ├── Loader.module.scss │ │ └── Loader.tsx │ ├── manageSagaState │ │ └── index.ts │ ├── modal │ │ ├── Modal.module.scss │ │ ├── Modal.tsx │ │ └── ModalLoader.tsx │ ├── outlinedInput │ │ ├── OutlinedInput.module.scss │ │ └── OutlinedInput.tsx │ ├── pagination │ │ ├── ActionsComponent.module.scss │ │ ├── ActionsComponent.tsx │ │ ├── Pagination.module.scss │ │ ├── Pagination.tsx │ │ ├── Select.module.scss │ │ └── Select.tsx │ ├── select │ │ ├── Select.module.scss │ │ └── Select.tsx │ ├── switch │ │ ├── Switch.module.scss │ │ └── Switch.tsx │ ├── tabs │ │ ├── Tabs.module.scss │ │ └── Tabs.tsx │ ├── typings │ │ └── common.ts │ └── utils │ │ ├── common.ts │ │ └── files.tsx ├── contractAbis │ ├── NFTs.ts │ ├── chat.ts │ ├── index.ts │ ├── indexNFTs.ts │ ├── multiSend.ts │ ├── profiles.ts │ └── tariff.ts ├── hooks │ ├── index.ts │ └── useFormattedNFTLink.ts ├── index.tsx ├── locales │ ├── en.json │ ├── initLocales.ts │ └── ru.json ├── login │ └── components │ │ └── pages │ │ ├── LogInPage.module.scss │ │ └── LogInPage.tsx ├── messages │ ├── sagas │ │ ├── index.ts │ │ └── messages.ts │ ├── selectors │ │ └── messagesSelectors.ts │ └── slice │ │ └── messagesSlice.ts ├── myAssets │ ├── sagas │ │ ├── index.ts │ │ └── wallet.ts │ ├── selectors │ │ └── walletSelectors.ts │ ├── slices │ │ └── walletSlice.ts │ └── types.ts ├── network │ ├── selectors │ │ └── index.ts │ └── slice │ │ └── index.ts ├── notification │ ├── ToastNotification.module.scss │ └── ToastNotification.tsx ├── profiles │ ├── components │ │ └── pages │ │ │ ├── editProfilePage │ │ │ ├── EditProfilePage.module.scss │ │ │ └── EditProfilePage.tsx │ │ │ └── profilesPage │ │ │ ├── ProfilesPage.module.scss │ │ │ └── ProfilesPage.tsx │ ├── constants.ts │ ├── sagas │ │ ├── index.ts │ │ ├── profiles.ts │ │ └── roles.ts │ ├── selectors │ │ ├── profilesSelectors.ts │ │ └── rolesSelectors.ts │ ├── slice │ │ └── profilesSlice.ts │ └── types.ts ├── react-app-env.d.ts ├── router │ └── selectors │ │ └── index.ts ├── sso │ ├── components │ │ └── pages │ │ │ └── SSOPage.tsx │ └── utils.ts ├── styles │ ├── main.scss │ ├── mixins.scss │ ├── utils.scss │ └── variables.scss ├── tariffs │ ├── components │ │ ├── pages │ │ │ ├── PricingPage.module.scss │ │ │ └── PricingPage.tsx │ │ ├── payTariffModal │ │ │ ├── PayTariffModal.module.scss │ │ │ └── PayTariffModal.tsx │ │ └── tariffCard │ │ │ ├── TariffCard.module.scss │ │ │ └── TariffCard.tsx │ ├── sagas │ │ ├── index.ts │ │ └── tariffs.ts │ ├── selectors │ │ └── tariffsSelectors.ts │ ├── slice │ │ └── tariffSlice.ts │ └── types.ts ├── typings │ ├── common.ts │ ├── global.d.ts │ └── powerApiTyping.ts └── walletSign │ ├── components │ └── walletSignModal │ │ ├── WalletSignModal.module.scss │ │ └── WalletSignModal.tsx │ ├── selectors │ └── walletSelectors.ts │ └── slices │ └── walletSign.ts ├── tsconfig.json ├── utils ├── deploy-config.json ├── deploySc.ts ├── grantRole.ts ├── rainSK.ts └── register.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.husky/prepare-commit-msg -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/config-overrides.js -------------------------------------------------------------------------------- /contracts/Chat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/Chat.sol -------------------------------------------------------------------------------- /contracts/Membership.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/Membership.sol -------------------------------------------------------------------------------- /contracts/NFTs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/NFTs.sol -------------------------------------------------------------------------------- /contracts/Profiles.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/Profiles.sol -------------------------------------------------------------------------------- /contracts/Sponsor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/Sponsor.sol -------------------------------------------------------------------------------- /contracts/access/AccessControl.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/AccessControl.sol -------------------------------------------------------------------------------- /contracts/access/IAccessControl.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/IAccessControl.sol -------------------------------------------------------------------------------- /contracts/access/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/Ownable.sol -------------------------------------------------------------------------------- /contracts/access/Ownable2Step.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/Ownable2Step.sol -------------------------------------------------------------------------------- /contracts/access/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/README.adoc -------------------------------------------------------------------------------- /contracts/access/extensions/AccessControlDefaultAdminRules.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/extensions/AccessControlDefaultAdminRules.sol -------------------------------------------------------------------------------- /contracts/access/extensions/AccessControlEnumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/extensions/AccessControlEnumerable.sol -------------------------------------------------------------------------------- /contracts/access/extensions/IAccessControlDefaultAdminRules.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/extensions/IAccessControlDefaultAdminRules.sol -------------------------------------------------------------------------------- /contracts/access/extensions/IAccessControlEnumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/extensions/IAccessControlEnumerable.sol -------------------------------------------------------------------------------- /contracts/access/manager/AccessManaged.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/AccessManaged.sol -------------------------------------------------------------------------------- /contracts/access/manager/AccessManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/AccessManager.sol -------------------------------------------------------------------------------- /contracts/access/manager/AuthorityUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/AuthorityUtils.sol -------------------------------------------------------------------------------- /contracts/access/manager/IAccessManaged.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/IAccessManaged.sol -------------------------------------------------------------------------------- /contracts/access/manager/IAccessManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/IAccessManager.sol -------------------------------------------------------------------------------- /contracts/access/manager/IAuthority.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/access/manager/IAuthority.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1155.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1155.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1155MetadataURI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1155MetadataURI.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1155Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1155Receiver.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1271.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1271.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1363.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1363.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1363Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1363Receiver.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1363Spender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1363Spender.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC165.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1820Implementer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1820Implementer.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1820Registry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1820Registry.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC1967.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC1967.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC20Metadata.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC2309.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC2309.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC2612.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC2612.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC2981.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC2981.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC3156.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC3156.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC3156FlashBorrower.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC3156FlashBorrower.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC3156FlashLender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC3156FlashLender.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC4626.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC4626.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC4906.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC4906.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC5267.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC5267.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC5313.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC5313.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC5805.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC5805.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC6372.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC6372.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC721.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721Enumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC721Enumerable.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC721Metadata.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC721Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC721Receiver.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC777.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC777.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC777Recipient.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC777Recipient.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC777Sender.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/IERC777Sender.sol -------------------------------------------------------------------------------- /contracts/interfaces/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/README.adoc -------------------------------------------------------------------------------- /contracts/interfaces/draft-IERC1822.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/draft-IERC1822.sol -------------------------------------------------------------------------------- /contracts/interfaces/draft-IERC6093.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/interfaces/draft-IERC6093.sol -------------------------------------------------------------------------------- /contracts/mcall.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/mcall.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/ERC1155.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/ERC1155.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/IERC1155.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/IERC1155.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/IERC1155Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/IERC1155Receiver.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/README.adoc -------------------------------------------------------------------------------- /contracts/token/ERC1155/extensions/ERC1155Burnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/extensions/ERC1155Burnable.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/extensions/ERC1155Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/extensions/ERC1155Pausable.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/extensions/ERC1155Supply.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/extensions/ERC1155Supply.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/extensions/ERC1155URIStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/extensions/ERC1155URIStorage.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol -------------------------------------------------------------------------------- /contracts/token/ERC1155/utils/ERC1155Holder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC1155/utils/ERC1155Holder.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/ERC20.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/IERC20.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/README.adoc -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Burnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Burnable.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Capped.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Capped.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20FlashMint.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20FlashMint.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Pausable.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Permit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Permit.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Votes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Votes.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC20Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC20Wrapper.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/ERC4626.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/ERC4626.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/IERC20Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/IERC20Metadata.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/extensions/IERC20Permit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/extensions/IERC20Permit.sol -------------------------------------------------------------------------------- /contracts/token/ERC20/utils/SafeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC20/utils/SafeERC20.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/ERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/ERC721.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/IERC721.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/IERC721Receiver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/IERC721Receiver.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/README.adoc -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Burnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Burnable.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Consecutive.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Consecutive.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Enumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Enumerable.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Pausable.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Royalty.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Royalty.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721URIStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721URIStorage.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Votes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Votes.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/ERC721Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/ERC721Wrapper.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/IERC721Enumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/IERC721Enumerable.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/extensions/IERC721Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/extensions/IERC721Metadata.sol -------------------------------------------------------------------------------- /contracts/token/ERC721/utils/ERC721Holder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/ERC721/utils/ERC721Holder.sol -------------------------------------------------------------------------------- /contracts/token/common/ERC2981.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/common/ERC2981.sol -------------------------------------------------------------------------------- /contracts/token/common/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/token/common/README.adoc -------------------------------------------------------------------------------- /contracts/utils/Address.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Address.sol -------------------------------------------------------------------------------- /contracts/utils/Arrays.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Arrays.sol -------------------------------------------------------------------------------- /contracts/utils/Base64.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Base64.sol -------------------------------------------------------------------------------- /contracts/utils/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Context.sol -------------------------------------------------------------------------------- /contracts/utils/Create2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Create2.sol -------------------------------------------------------------------------------- /contracts/utils/Multicall.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Multicall.sol -------------------------------------------------------------------------------- /contracts/utils/Nonces.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Nonces.sol -------------------------------------------------------------------------------- /contracts/utils/Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Pausable.sol -------------------------------------------------------------------------------- /contracts/utils/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/README.adoc -------------------------------------------------------------------------------- /contracts/utils/ReentrancyGuard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/ReentrancyGuard.sol -------------------------------------------------------------------------------- /contracts/utils/ShortStrings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/ShortStrings.sol -------------------------------------------------------------------------------- /contracts/utils/StorageSlot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/StorageSlot.sol -------------------------------------------------------------------------------- /contracts/utils/Strings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/Strings.sol -------------------------------------------------------------------------------- /contracts/utils/cryptography/ECDSA.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/cryptography/ECDSA.sol -------------------------------------------------------------------------------- /contracts/utils/cryptography/EIP712.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/cryptography/EIP712.sol -------------------------------------------------------------------------------- /contracts/utils/cryptography/MerkleProof.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/cryptography/MerkleProof.sol -------------------------------------------------------------------------------- /contracts/utils/cryptography/MessageHashUtils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/cryptography/MessageHashUtils.sol -------------------------------------------------------------------------------- /contracts/utils/cryptography/SignatureChecker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/cryptography/SignatureChecker.sol -------------------------------------------------------------------------------- /contracts/utils/introspection/ERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/introspection/ERC165.sol -------------------------------------------------------------------------------- /contracts/utils/introspection/ERC165Checker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/introspection/ERC165Checker.sol -------------------------------------------------------------------------------- /contracts/utils/introspection/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/introspection/IERC165.sol -------------------------------------------------------------------------------- /contracts/utils/math/Math.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/math/Math.sol -------------------------------------------------------------------------------- /contracts/utils/math/SafeCast.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/math/SafeCast.sol -------------------------------------------------------------------------------- /contracts/utils/math/SignedMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/math/SignedMath.sol -------------------------------------------------------------------------------- /contracts/utils/structs/BitMaps.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/structs/BitMaps.sol -------------------------------------------------------------------------------- /contracts/utils/structs/Checkpoints.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/structs/Checkpoints.sol -------------------------------------------------------------------------------- /contracts/utils/structs/DoubleEndedQueue.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/structs/DoubleEndedQueue.sol -------------------------------------------------------------------------------- /contracts/utils/structs/EnumerableMap.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/structs/EnumerableMap.sol -------------------------------------------------------------------------------- /contracts/utils/structs/EnumerableSet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/structs/EnumerableSet.sol -------------------------------------------------------------------------------- /contracts/utils/types/Time.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/contracts/utils/types/Time.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/NFTs/components/NFTCard/NFTCard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/NFTCard/NFTCard.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/NFTCard/NFTCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/NFTCard/NFTCard.tsx -------------------------------------------------------------------------------- /src/NFTs/components/pages/NFT/NFTPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/NFT/NFTPage.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/pages/NFT/NFTPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/NFT/NFTPage.tsx -------------------------------------------------------------------------------- /src/NFTs/components/pages/NFTs/NFTsPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/NFTs/NFTsPage.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/pages/NFTs/NFTsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/NFTs/NFTsPage.tsx -------------------------------------------------------------------------------- /src/NFTs/components/pages/addNFT/AddOrEditNFTPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/addNFT/AddOrEditNFTPage.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/pages/addNFT/AddOrEditNFTPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/addNFT/AddOrEditNFTPage.tsx -------------------------------------------------------------------------------- /src/NFTs/components/pages/authorNFTs/AuthorNFTsPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/authorNFTs/AuthorNFTsPage.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/pages/authorNFTs/AuthorNFTsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/authorNFTs/AuthorNFTsPage.tsx -------------------------------------------------------------------------------- /src/NFTs/components/pages/orgNFTs/DAONFTsPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/orgNFTs/DAONFTsPage.module.scss -------------------------------------------------------------------------------- /src/NFTs/components/pages/orgNFTs/DAONFTsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/components/pages/orgNFTs/DAONFTsPage.tsx -------------------------------------------------------------------------------- /src/NFTs/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/constants.ts -------------------------------------------------------------------------------- /src/NFTs/sagas/NFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/sagas/NFTs.ts -------------------------------------------------------------------------------- /src/NFTs/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/sagas/index.ts -------------------------------------------------------------------------------- /src/NFTs/selectors/NFTsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/selectors/NFTsSelectors.ts -------------------------------------------------------------------------------- /src/NFTs/slice/NFTsSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/slice/NFTsSlice.ts -------------------------------------------------------------------------------- /src/NFTs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/NFTs/types.ts -------------------------------------------------------------------------------- /src/account/sagas/accountSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/account/sagas/accountSaga.ts -------------------------------------------------------------------------------- /src/account/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/account/sagas/index.ts -------------------------------------------------------------------------------- /src/account/selectors/accountSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/account/selectors/accountSelectors.ts -------------------------------------------------------------------------------- /src/account/slice/accountSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/account/slice/accountSlice.ts -------------------------------------------------------------------------------- /src/account/typings/accountTypings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/account/typings/accountTypings.ts -------------------------------------------------------------------------------- /src/api/openResty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/api/openResty.ts -------------------------------------------------------------------------------- /src/api/paygate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/api/paygate.ts -------------------------------------------------------------------------------- /src/api/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/api/popup.ts -------------------------------------------------------------------------------- /src/appEnvs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/appEnvs.ts -------------------------------------------------------------------------------- /src/application/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/components/App.tsx -------------------------------------------------------------------------------- /src/application/components/AppRoutes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/components/AppRoutes.tsx -------------------------------------------------------------------------------- /src/application/components/pages/about/AboutPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/components/pages/about/AboutPage.module.scss -------------------------------------------------------------------------------- /src/application/components/pages/about/AboutPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/components/pages/about/AboutPage.tsx -------------------------------------------------------------------------------- /src/application/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/constants.ts -------------------------------------------------------------------------------- /src/application/daos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/daos.json -------------------------------------------------------------------------------- /src/application/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/sagas/index.ts -------------------------------------------------------------------------------- /src/application/sagas/initApplicationSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/sagas/initApplicationSaga.ts -------------------------------------------------------------------------------- /src/application/sagas/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/sagas/rootSaga.ts -------------------------------------------------------------------------------- /src/application/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/selectors/index.ts -------------------------------------------------------------------------------- /src/application/slice/applicationSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/slice/applicationSlice.ts -------------------------------------------------------------------------------- /src/application/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/store.ts -------------------------------------------------------------------------------- /src/application/typings/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/typings/routes.ts -------------------------------------------------------------------------------- /src/application/utils/MUITheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/MUITheme.ts -------------------------------------------------------------------------------- /src/application/utils/applicationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/applicationUtils.ts -------------------------------------------------------------------------------- /src/application/utils/getApiErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/getApiErrorMessage.ts -------------------------------------------------------------------------------- /src/application/utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/history.ts -------------------------------------------------------------------------------- /src/application/utils/localStorageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/localStorageUtils.ts -------------------------------------------------------------------------------- /src/application/utils/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/application/utils/popup.ts -------------------------------------------------------------------------------- /src/assets/icons/AttachIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/AttachIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/BellIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/BellIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /src/assets/icons/PaginationArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/PaginationArrow.tsx -------------------------------------------------------------------------------- /src/assets/icons/ParkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/ParkIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SelectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/SelectIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/back.svg -------------------------------------------------------------------------------- /src/assets/icons/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/banner.svg -------------------------------------------------------------------------------- /src/assets/icons/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/category.svg -------------------------------------------------------------------------------- /src/assets/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/check.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/chevron.svg -------------------------------------------------------------------------------- /src/assets/icons/clock-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/clock-three.svg -------------------------------------------------------------------------------- /src/assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/clock.svg -------------------------------------------------------------------------------- /src/assets/icons/close-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/close-button.svg -------------------------------------------------------------------------------- /src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/close.svg -------------------------------------------------------------------------------- /src/assets/icons/coins-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/coins-stacked.svg -------------------------------------------------------------------------------- /src/assets/icons/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/cube.svg -------------------------------------------------------------------------------- /src/assets/icons/edit-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/edit-profile.svg -------------------------------------------------------------------------------- /src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/fingerprint.svg -------------------------------------------------------------------------------- /src/assets/icons/image-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/image-plus.svg -------------------------------------------------------------------------------- /src/assets/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/index.tsx -------------------------------------------------------------------------------- /src/assets/icons/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/log-in.svg -------------------------------------------------------------------------------- /src/assets/icons/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/logout.svg -------------------------------------------------------------------------------- /src/assets/icons/marker-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/marker-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/marker.svg -------------------------------------------------------------------------------- /src/assets/icons/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/sort.svg -------------------------------------------------------------------------------- /src/assets/icons/typings.ts: -------------------------------------------------------------------------------- 1 | export type SvgIcon = { 2 | className?: string; 3 | }; 4 | -------------------------------------------------------------------------------- /src/assets/icons/un-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/un-check.svg -------------------------------------------------------------------------------- /src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/user.svg -------------------------------------------------------------------------------- /src/assets/icons/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/assets/icons/wallet.svg -------------------------------------------------------------------------------- /src/common/button/Button.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/button/Button.module.scss -------------------------------------------------------------------------------- /src/common/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/button/Button.tsx -------------------------------------------------------------------------------- /src/common/checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/common/filter/Filter.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/filter/Filter.module.scss -------------------------------------------------------------------------------- /src/common/filter/Filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/filter/Filter.tsx -------------------------------------------------------------------------------- /src/common/footer/Footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/footer/Footer.module.scss -------------------------------------------------------------------------------- /src/common/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/footer/Footer.tsx -------------------------------------------------------------------------------- /src/common/header/AccountDropdown.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/header/AccountDropdown.module.scss -------------------------------------------------------------------------------- /src/common/header/AccountDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/header/AccountDropdown.tsx -------------------------------------------------------------------------------- /src/common/header/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/header/Header.module.scss -------------------------------------------------------------------------------- /src/common/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/header/Header.tsx -------------------------------------------------------------------------------- /src/common/iconButton/IconButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/iconButton/IconButton.module.scss -------------------------------------------------------------------------------- /src/common/iconButton/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/iconButton/IconButton.tsx -------------------------------------------------------------------------------- /src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/index.ts -------------------------------------------------------------------------------- /src/common/jdenticon/Jdenticon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/jdenticon/Jdenticon.tsx -------------------------------------------------------------------------------- /src/common/langSelect/LangSelect.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/langSelect/LangSelect.module.scss -------------------------------------------------------------------------------- /src/common/langSelect/LangSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/langSelect/LangSelect.tsx -------------------------------------------------------------------------------- /src/common/layout/Layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/layout/Layout.module.scss -------------------------------------------------------------------------------- /src/common/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/layout/Layout.tsx -------------------------------------------------------------------------------- /src/common/loader/FullScreenLoader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/loader/FullScreenLoader.module.scss -------------------------------------------------------------------------------- /src/common/loader/FullScreenLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/loader/FullScreenLoader.tsx -------------------------------------------------------------------------------- /src/common/loader/Loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/loader/Loader.module.scss -------------------------------------------------------------------------------- /src/common/loader/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/loader/Loader.tsx -------------------------------------------------------------------------------- /src/common/manageSagaState/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/manageSagaState/index.ts -------------------------------------------------------------------------------- /src/common/modal/Modal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/modal/Modal.module.scss -------------------------------------------------------------------------------- /src/common/modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/modal/Modal.tsx -------------------------------------------------------------------------------- /src/common/modal/ModalLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/modal/ModalLoader.tsx -------------------------------------------------------------------------------- /src/common/outlinedInput/OutlinedInput.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/outlinedInput/OutlinedInput.module.scss -------------------------------------------------------------------------------- /src/common/outlinedInput/OutlinedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/outlinedInput/OutlinedInput.tsx -------------------------------------------------------------------------------- /src/common/pagination/ActionsComponent.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/ActionsComponent.module.scss -------------------------------------------------------------------------------- /src/common/pagination/ActionsComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/ActionsComponent.tsx -------------------------------------------------------------------------------- /src/common/pagination/Pagination.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/Pagination.module.scss -------------------------------------------------------------------------------- /src/common/pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/common/pagination/Select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/Select.module.scss -------------------------------------------------------------------------------- /src/common/pagination/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/pagination/Select.tsx -------------------------------------------------------------------------------- /src/common/select/Select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/select/Select.module.scss -------------------------------------------------------------------------------- /src/common/select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/select/Select.tsx -------------------------------------------------------------------------------- /src/common/switch/Switch.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/switch/Switch.module.scss -------------------------------------------------------------------------------- /src/common/switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/switch/Switch.tsx -------------------------------------------------------------------------------- /src/common/tabs/Tabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/tabs/Tabs.module.scss -------------------------------------------------------------------------------- /src/common/tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/common/typings/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/typings/common.ts -------------------------------------------------------------------------------- /src/common/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/utils/common.ts -------------------------------------------------------------------------------- /src/common/utils/files.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/common/utils/files.tsx -------------------------------------------------------------------------------- /src/contractAbis/NFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/NFTs.ts -------------------------------------------------------------------------------- /src/contractAbis/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/chat.ts -------------------------------------------------------------------------------- /src/contractAbis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/index.ts -------------------------------------------------------------------------------- /src/contractAbis/indexNFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/indexNFTs.ts -------------------------------------------------------------------------------- /src/contractAbis/multiSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/multiSend.ts -------------------------------------------------------------------------------- /src/contractAbis/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/profiles.ts -------------------------------------------------------------------------------- /src/contractAbis/tariff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/contractAbis/tariff.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useFormattedNFTLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/hooks/useFormattedNFTLink.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/initLocales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/locales/initLocales.ts -------------------------------------------------------------------------------- /src/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/locales/ru.json -------------------------------------------------------------------------------- /src/login/components/pages/LogInPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/login/components/pages/LogInPage.module.scss -------------------------------------------------------------------------------- /src/login/components/pages/LogInPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/login/components/pages/LogInPage.tsx -------------------------------------------------------------------------------- /src/messages/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/messages/sagas/index.ts -------------------------------------------------------------------------------- /src/messages/sagas/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/messages/sagas/messages.ts -------------------------------------------------------------------------------- /src/messages/selectors/messagesSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/messages/selectors/messagesSelectors.ts -------------------------------------------------------------------------------- /src/messages/slice/messagesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/messages/slice/messagesSlice.ts -------------------------------------------------------------------------------- /src/myAssets/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/myAssets/sagas/index.ts -------------------------------------------------------------------------------- /src/myAssets/sagas/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/myAssets/sagas/wallet.ts -------------------------------------------------------------------------------- /src/myAssets/selectors/walletSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/myAssets/selectors/walletSelectors.ts -------------------------------------------------------------------------------- /src/myAssets/slices/walletSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/myAssets/slices/walletSlice.ts -------------------------------------------------------------------------------- /src/myAssets/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/myAssets/types.ts -------------------------------------------------------------------------------- /src/network/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/network/selectors/index.ts -------------------------------------------------------------------------------- /src/network/slice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/network/slice/index.ts -------------------------------------------------------------------------------- /src/notification/ToastNotification.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/notification/ToastNotification.module.scss -------------------------------------------------------------------------------- /src/notification/ToastNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/notification/ToastNotification.tsx -------------------------------------------------------------------------------- /src/profiles/components/pages/editProfilePage/EditProfilePage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/components/pages/editProfilePage/EditProfilePage.module.scss -------------------------------------------------------------------------------- /src/profiles/components/pages/editProfilePage/EditProfilePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/components/pages/editProfilePage/EditProfilePage.tsx -------------------------------------------------------------------------------- /src/profiles/components/pages/profilesPage/ProfilesPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/components/pages/profilesPage/ProfilesPage.module.scss -------------------------------------------------------------------------------- /src/profiles/components/pages/profilesPage/ProfilesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/components/pages/profilesPage/ProfilesPage.tsx -------------------------------------------------------------------------------- /src/profiles/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/constants.ts -------------------------------------------------------------------------------- /src/profiles/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/sagas/index.ts -------------------------------------------------------------------------------- /src/profiles/sagas/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/sagas/profiles.ts -------------------------------------------------------------------------------- /src/profiles/sagas/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/sagas/roles.ts -------------------------------------------------------------------------------- /src/profiles/selectors/profilesSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/selectors/profilesSelectors.ts -------------------------------------------------------------------------------- /src/profiles/selectors/rolesSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/selectors/rolesSelectors.ts -------------------------------------------------------------------------------- /src/profiles/slice/profilesSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/slice/profilesSlice.ts -------------------------------------------------------------------------------- /src/profiles/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/profiles/types.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/router/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/router/selectors/index.ts -------------------------------------------------------------------------------- /src/sso/components/pages/SSOPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/sso/components/pages/SSOPage.tsx -------------------------------------------------------------------------------- /src/sso/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/sso/utils.ts -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/styles/utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/styles/utils.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/tariffs/components/pages/PricingPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/pages/PricingPage.module.scss -------------------------------------------------------------------------------- /src/tariffs/components/pages/PricingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/pages/PricingPage.tsx -------------------------------------------------------------------------------- /src/tariffs/components/payTariffModal/PayTariffModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/payTariffModal/PayTariffModal.module.scss -------------------------------------------------------------------------------- /src/tariffs/components/payTariffModal/PayTariffModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/payTariffModal/PayTariffModal.tsx -------------------------------------------------------------------------------- /src/tariffs/components/tariffCard/TariffCard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/tariffCard/TariffCard.module.scss -------------------------------------------------------------------------------- /src/tariffs/components/tariffCard/TariffCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/components/tariffCard/TariffCard.tsx -------------------------------------------------------------------------------- /src/tariffs/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/sagas/index.ts -------------------------------------------------------------------------------- /src/tariffs/sagas/tariffs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/sagas/tariffs.ts -------------------------------------------------------------------------------- /src/tariffs/selectors/tariffsSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/selectors/tariffsSelectors.ts -------------------------------------------------------------------------------- /src/tariffs/slice/tariffSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/slice/tariffSlice.ts -------------------------------------------------------------------------------- /src/tariffs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/tariffs/types.ts -------------------------------------------------------------------------------- /src/typings/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/typings/common.ts -------------------------------------------------------------------------------- /src/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/typings/global.d.ts -------------------------------------------------------------------------------- /src/typings/powerApiTyping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/typings/powerApiTyping.ts -------------------------------------------------------------------------------- /src/walletSign/components/walletSignModal/WalletSignModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/walletSign/components/walletSignModal/WalletSignModal.module.scss -------------------------------------------------------------------------------- /src/walletSign/components/walletSignModal/WalletSignModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/walletSign/components/walletSignModal/WalletSignModal.tsx -------------------------------------------------------------------------------- /src/walletSign/selectors/walletSelectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/walletSign/selectors/walletSelectors.ts -------------------------------------------------------------------------------- /src/walletSign/slices/walletSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/src/walletSign/slices/walletSign.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/deploy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/utils/deploy-config.json -------------------------------------------------------------------------------- /utils/deploySc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/utils/deploySc.ts -------------------------------------------------------------------------------- /utils/grantRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/utils/grantRole.ts -------------------------------------------------------------------------------- /utils/rainSK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/utils/rainSK.ts -------------------------------------------------------------------------------- /utils/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/utils/register.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepower/PowerDapp/HEAD/yarn.lock --------------------------------------------------------------------------------