@1sat/sweep-ui 0.0.61 → 0.0.63

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
@@ -702,7 +702,7 @@ function FundingSection({
702
702
  onClick: onSweep,
703
703
  disabled: !walletConnected,
704
704
  title: walletConnected ? undefined : "Connect BRC-100 wallet to sweep",
705
- children: "Sweep to Wallet"
705
+ children: isMax ? "Sweep All" : `Sweep ${displayAmount} sats`
706
706
  })
707
707
  ]
708
708
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1sat/sweep-ui",
3
- "version": "0.0.61",
3
+ "version": "0.0.63",
4
4
  "description": "Sweep UI components for migrating legacy BSV assets",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -29,7 +29,7 @@
29
29
  ],
30
30
  "license": "MIT",
31
31
  "dependencies": {
32
- "@1sat/actions": "0.0.162",
32
+ "@1sat/actions": "0.0.164",
33
33
  "@1sat/client": "0.0.38",
34
34
  "@1sat/connect": "0.0.67",
35
35
  "@1sat/types": "0.0.30",
@@ -188,7 +188,7 @@ export function FundingSection({
188
188
  walletConnected ? undefined : 'Connect BRC-100 wallet to sweep'
189
189
  }
190
190
  >
191
- Sweep to Wallet
191
+ {isMax ? 'Sweep All' : `Sweep ${displayAmount} sats`}
192
192
  </Button>
193
193
  </div>
194
194
  </div>