btc-wallet 0.5.60-beta → 0.5.61-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -5174,9 +5174,9 @@ function setupWalletSelectorModal(selector, options) {
5174
5174
  return modal;
5175
5175
  }
5176
5176
  var CHAINS = [
5177
- { id: "btc", name: "Bitcoin" },
5178
- { id: "eth", name: "Ethereum" },
5179
- { id: "near", name: "Near" }
5177
+ { id: "btc", name: "Bitcoin", description: "MPC Mapping" },
5178
+ { id: "eth", name: "Ethereum", description: "EVM address as Near Account" },
5179
+ { id: "near", name: "Near", description: "Near Account" }
5180
5180
  ];
5181
5181
  function openChainModal(group) {
5182
5182
  return __async(this, null, function* () {
@@ -5185,8 +5185,11 @@ function openChainModal(group) {
5185
5185
  const buttons = `
5186
5186
  <div class="option-list">${chains5.map(
5187
5187
  (chain) => `<button class="chain-button option-item" data-chain="${chain.id}">
5188
- <img src="https://assets.deltatrade.ai/assets/chain/${chain.id}.svg" alt="${chain.id}" style="width:32px; height: 32px;" />
5189
- ${chain.name}
5188
+ <img src="https://assets.deltatrade.ai/assets/chain/${chain.id}.svg" alt="${chain.id}" style="width:32px; height: 32px;" />
5189
+ <div style="display: flex; flex-direction: column; text-align: left;">
5190
+ <div style="font-size: 16px; font-weight: bold;">${chain.name}</div>
5191
+ <div style="font-size: 12px; opacity:0.5;">${chain.description}</div>
5192
+ </div>
5190
5193
  </button>`
5191
5194
  ).join("")}
5192
5195
  </div>
@@ -5227,7 +5230,7 @@ function getGroup(state) {
5227
5230
 
5228
5231
  // src/index.ts
5229
5232
  var getVersion = () => {
5230
- return "0.5.60-beta";
5233
+ return "0.5.61-beta";
5231
5234
  };
5232
5235
  if (typeof window !== "undefined") {
5233
5236
  window.__BTC_WALLET_VERSION = getVersion();