Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chainapsis/keplr-wallet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4c2ecac6d98e9b8d1614d9252ce31f3a21aa83f7
Choose a base ref
..
head repository: chainapsis/keplr-wallet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7c625b82fb84238b9a1351e2e5590e0f1eadaf32
Choose a head ref
Showing with 4,756 additions and 1,014 deletions.
  1. +1 −1 .gitsecret/paths/mapping.cfg
  2. +379 −54 package-lock.json
  3. +12 −3 package.json
  4. +1 −1 src/background/background.ts
  5. +19 −3 src/background/chains/handler.spec.ts
  6. +17 −5 src/background/chains/handler.ts
  7. +19 −3 src/background/chains/keeper.spec.ts
  8. +156 −28 src/background/chains/keeper.ts
  9. +8 −4 src/background/chains/messages.ts
  10. +685 −0 src/background/chains/types.spec.ts
  11. +119 −4 src/background/chains/types.ts
  12. +22 −6 src/background/keyring/handler.spec.ts
  13. +16 −3 src/background/keyring/messages.spec.ts
  14. +9 −1 src/background/keyring/messages.ts
  15. +15 −1 src/background/ledger/foreground/handler.ts
  16. +2 −0 src/background/ledger/foreground/init.ts
  17. +5 −0 src/background/ledger/foreground/keeper.ts
  18. +18 −0 src/background/ledger/foreground/messages.ts
  19. +31 −1 src/background/ledger/handler.ts
  20. +7 −1 src/background/ledger/init.ts
  21. +16 −1 src/background/ledger/keeper.ts
  22. +11 −2 src/background/ledger/ledger.ts
  23. +46 −0 src/background/ledger/messages.ts
  24. +1 −0 src/background/tx/foreground/constants.ts
  25. +29 −0 src/background/tx/foreground/handler.ts
  26. +3 −0 src/background/tx/foreground/index.ts
  27. +14 −0 src/background/tx/foreground/init.ts
  28. +13 −0 src/background/tx/foreground/keeper.ts
  29. +24 −0 src/background/tx/foreground/messages.ts
  30. +27 −1 src/background/tx/handler.ts
  31. +5 −1 src/background/tx/init.ts
  32. +98 −48 src/background/tx/keeper.ts
  33. +54 −0 src/background/tx/messages.ts
  34. +13 −8 src/common/coin-utils/index.ts
  35. +2 −101 src/common/currency/index.ts
  36. +18 −0 src/common/currency/types.ts
  37. +11 −0 src/common/hash/index.ts
  38. +157 −49 src/config.ts
  39. +9 −0 src/config.var.example.ts
  40. BIN src/config.var.tsx.secret
  41. +68 −0 src/content-scripts/inject/common.ts
  42. +125 −0 src/content-scripts/inject/cosmjs-offline-signer.ts
  43. +119 −0 src/content-scripts/inject/cosmosjs-wallet-provider.ts
  44. +18 −120 src/content-scripts/inject/injected-script.ts
  45. +1 −1 src/manifest.json
  46. +6 −3 src/ui/components/confirm/dialog.tsx
  47. +5 −0 src/ui/components/confirm/index.tsx
  48. +234 −196 src/ui/components/form/coin-input.tsx
  49. +38 −7 src/ui/components/form/fee-buttons.tsx
  50. +53 −1 src/ui/contexts/tx/context.tsx
  51. +2 −0 src/ui/hooks/use-cosmosjs.ts
  52. +31 −0 src/ui/hooks/use-inflation-info.ts
  53. +35 −0 src/ui/hooks/use-staking-pool.ts
  54. +30 −0 src/ui/hooks/use-supply-total.ts
  55. +29 −0 src/ui/popup/background-tx-provider.tsx
  56. +33 −5 src/ui/popup/languages/en.json
  57. +3 −0 src/ui/popup/languages/es.json
  58. +3 −0 src/ui/popup/languages/fr.json
  59. +3 −0 src/ui/popup/languages/it.json
  60. +3 −0 src/ui/popup/languages/jp.json
  61. +31 −3 src/ui/popup/languages/ko.json
  62. +4 −0 src/ui/popup/languages/ru.json
  63. +11 −1 src/ui/popup/layouts/header/chain-list.tsx
  64. +98 −34 src/ui/popup/pages/chain/suggest/index.tsx
  65. +61 −4 src/ui/popup/pages/chain/suggest/style.module.scss
  66. +3 −10 src/ui/popup/pages/fee/index.tsx
  67. +121 −3 src/ui/popup/pages/ledger/grant.tsx
  68. +2 −0 src/ui/popup/pages/ledger/init-indicator.tsx
  69. +2 −3 src/ui/popup/pages/ledger/style.module.scss
  70. +11 −0 src/ui/popup/pages/main/account.module.scss
  71. +27 −8 src/ui/popup/pages/main/account.tsx
  72. +52 −6 src/ui/popup/pages/main/asset.module.scss
  73. +344 −68 src/ui/popup/pages/main/asset.tsx
  74. +41 −10 src/ui/popup/pages/main/index.tsx
  75. +66 −12 src/ui/popup/pages/main/stake.tsx
  76. +1 −1 src/ui/popup/pages/main/style.module.scss
  77. +61 −0 src/ui/popup/pages/main/token.module.scss
  78. +97 −0 src/ui/popup/pages/main/token.tsx
  79. +68 −77 src/ui/popup/pages/send/index.tsx
  80. +20 −11 src/ui/popup/pages/sign/details-tab.tsx
  81. +11 −0 src/ui/popup/pages/sign/index.tsx
  82. +220 −4 src/ui/popup/pages/sign/messages.tsx
  83. +76 −55 src/ui/popup/popup.tsx
  84. +6 −0 src/ui/popup/public/assets/img/icons8-test-tube.svg
  85. +314 −23 src/ui/popup/stores/account/index.tsx
  86. +58 −7 src/ui/popup/stores/chain/index.tsx
  87. +3 −6 src/ui/popup/stores/price/index.tsx
  88. +1 −0 src/ui/popup/stores/root.tsx
  89. +5 −1 src/window.d.ts
  90. +2 −2 tsconfig.json
  91. +8 −2 webpack.config.js
2 changes: 1 addition & 1 deletion .gitsecret/paths/mapping.cfg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
src/config.var.tsx:54cbcf8cf17b80b1dd47545987e6108c4cf5a12bff3bda76cfc95ac30f3803a8
src/config.var.tsx:a5fa0baf43a4a3ee70d17bbb59c346edda5d0cd3e104f28d89d0c8e3b3d1dfb7
Loading