Skip to content

Commit

Permalink
Bump chia-blockchain-gui to bb48038171a03c8f1a26f537240506bda6f1141c (C…
Browse files Browse the repository at this point in the history
…hia-Network#14400)

Includes:
Support for interacting with offer notifications (more fixes coming)
Support for sending offer notifications
Bulk NFT DID assignment
Bulk NFT transfer
Improvements to settings pages
Offer builder allows offers without anything requested

Fixes:
Allow useMode without provider until user try to change mode (Chia-Network#1329)
Fixed [BUG] Cannot read properties of undefined (reading 'map') (Chia-Network#1330)
Fixed multiplier issue when real fee estimates are available (Chia-Network#1334)
  • Loading branch information
paninaro authored Jan 26, 2023
1 parent 3f97435 commit 56f8ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia-blockchain-gui
Submodule chia-blockchain-gui updated 77 files
+4 −6 .github/workflows/audit-locales.yml
+6 −4 .github/workflows/code-check.yml
+10 −1 README.md
+6 −6 package-lock.json
+1 −1 packages/api-react/package.json
+5 −0 packages/api-react/src/services/index.ts
+77 −6 packages/api-react/src/services/wallet.ts
+1 −1 packages/api/package.json
+45 −0 packages/api/src/services/WalletService.ts
+22 −8 packages/api/src/wallets/NFT.ts
+1 −1 packages/core/package.json
+1 −1 packages/core/src/components/Dropdown/DropdownBase.tsx
+18 −8 packages/core/src/components/EstimatedFee/EstimatedFee.tsx
+11 −9 packages/core/src/components/Mode/ModeProvider.tsx
+15 −0 packages/core/src/components/Settings/SettingsHR.tsx
+16 −0 packages/core/src/components/Settings/SettingsSection.tsx
+16 −0 packages/core/src/components/Settings/SettingsText.tsx
+16 −0 packages/core/src/components/Settings/SettingsTitle.tsx
+4 −0 packages/core/src/components/Settings/index.ts
+1 −1 packages/core/src/components/index.ts
+6 −0 packages/core/src/theme/default.ts
+1 −1 packages/gui/package.json
+6 −0 packages/gui/src/@types/svgr.d.ts
+20 −15 packages/gui/src/components/app/AppStatusHeader.tsx
+37 −12 packages/gui/src/components/fullNode/FullNodeAddConnection.tsx
+6 −6 packages/gui/src/components/nfts/NFTContextualActions.tsx
+56 −15 packages/gui/src/components/nfts/NFTMoveToProfileDialog.tsx
+4 −4 packages/gui/src/components/nfts/NFTPreview.tsx
+20 −0 packages/gui/src/components/nfts/NFTTitle.tsx
+37 −18 packages/gui/src/components/nfts/NFTTransferAction.tsx
+2 −8 packages/gui/src/components/nfts/detail/NFTDetailV2.tsx
+6 −8 packages/gui/src/components/nfts/gallery/FilterPill.tsx
+16 −13 packages/gui/src/components/nfts/gallery/NFTGallery.tsx
+1 −1 packages/gui/src/components/nfts/gallery/NFTfilteredNFTs.tsx
+11 −3 packages/gui/src/components/nfts/gallery/SelectedActionsDialog.tsx
+83 −0 packages/gui/src/components/notification/Notification.tsx
+34 −0 packages/gui/src/components/notification/NotificationNFTTitle.tsx
+27 −0 packages/gui/src/components/notification/NotificationPreview.tsx
+36 −0 packages/gui/src/components/notification/NotificationPreviewNFT.tsx
+294 −0 packages/gui/src/components/notification/NotificationSendDialog.tsx
+36 −0 packages/gui/src/components/notification/NotificationsDropdown.tsx
+67 −0 packages/gui/src/components/notification/NotificationsMenu.tsx
+83 −0 packages/gui/src/components/notification/utils.ts
+7 −34 packages/gui/src/components/offers/OfferManager.tsx
+91 −18 packages/gui/src/components/offers/OfferShareDialog.tsx
+12 −11 packages/gui/src/components/offers/utils.ts
+19 −19 packages/gui/src/components/offers2/OfferBuilderViewer.tsx
+198 −0 packages/gui/src/components/offers2/OfferIncomingTable.tsx
+9 −0 packages/gui/src/components/settings/Settings.tsx
+62 −25 packages/gui/src/components/settings/SettingsDataLayer.tsx
+63 −59 packages/gui/src/components/settings/SettingsIntegration.tsx
+124 −82 packages/gui/src/components/settings/SettingsNFT.tsx
+68 −0 packages/gui/src/components/settings/SettingsNotifications.tsx
+18 −18 packages/gui/src/components/walletConnect/WalletConnectDropdown.tsx
+5 −0 packages/gui/src/constants/NotificationType.ts
+26 −0 packages/gui/src/constants/OfferServices.ts
+14 −0 packages/gui/src/electron/main.tsx
+5 −5 packages/gui/src/hooks/useAcceptOfferHook.tsx
+13 −8 packages/gui/src/hooks/useAssetIdName.ts
+187 −0 packages/gui/src/hooks/useNotifications.tsx
+10 −0 packages/gui/src/hooks/useShowNotification.ts
+64 −64 packages/gui/src/locales/ru-RU/messages.po
+79 −0 packages/gui/src/util/fetchOffer.ts
+0 −5 packages/gui/src/util/offerBuilderDataToOffer.ts
+31 −0 packages/gui/src/util/resolveOfferInfo.ts
+43 −0 packages/icons/package-lock.json
+2 −1 packages/icons/package.json
+1 −1 packages/icons/rollup.config.js
+6 −0 packages/icons/src/@types/svgr.d.ts
+1 −1 packages/icons/src/Home.tsx
+1 −3 packages/icons/src/Status.tsx
+1 −1 packages/icons/src/WalletConnect.tsx
+1 −1 packages/icons/src/images/walletConnect.svg
+2 −1 packages/icons/tsconfig.json
+1 −1 packages/wallets/package.json
+11 −31 packages/wallets/src/components/PasteMnemonic.tsx
+5 −5 packages/wallets/src/locales/ru-RU/messages.po

0 comments on commit 56f8ff0

Please sign in to comment.