@column-org/wallet-sdk 1.1.3 → 1.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@column-org/wallet-sdk",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "Column Wallet Mobile Deep-Link SDK for Movement/Aptos ecosystem",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -13,6 +13,7 @@ export function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props) {
13
13
  const handleConnect = async () => {
14
14
  try {
15
15
  const url = sdk.connect();
16
+ console.log("🔗 Modal: Attempting to connect with URL:", url);
16
17
 
17
18
  // Attempt to open the deep link
18
19
  // Use relaxed check for Expo Go / Android 11+ visibility rules
@@ -56,8 +57,10 @@ export function ColumnWalletModal({ visible, onClose, onConnect, sdk }: Props) {
56
57
 
57
58
  <TouchableOpacity style={styles.walletOption} onPress={handleConnect}>
58
59
  <View style={styles.walletIconContainer}>
59
- {/* Embed default SVG or icon here if possible, for now using simple view */}
60
- <View style={styles.walletIcon} />
60
+ <Image
61
+ source={require('../../assets/Column.png')}
62
+ style={styles.walletIconImage}
63
+ />
61
64
  </View>
62
65
  <View style={styles.walletInfo}>
63
66
  <Text style={styles.walletName}>Column Wallet</Text>
@@ -127,11 +130,10 @@ const styles = StyleSheet.create({
127
130
  alignItems: 'center',
128
131
  marginRight: 16,
129
132
  },
130
- walletIcon: {
131
- width: 20,
132
- height: 20,
133
- backgroundColor: '#000',
134
- borderRadius: 10,
133
+ walletIconImage: {
134
+ width: 24,
135
+ height: 24,
136
+ resizeMode: 'contain',
135
137
  },
136
138
  walletInfo: {
137
139
  flex: 1,