From 0373b73c4fac74101d242be675d9e137d7a5b085 Mon Sep 17 00:00:00 2001 From: emergent-agent-e1 Date: Sat, 8 Nov 2025 11:05:02 +0000 Subject: [PATCH] auto-commit for fac61be0-147b-4add-be0b-f29865cb3d3b --- ...79f7faf2351119448ee40a06f8a4dd8b69089338f2c1b064433c5913c80fa | 1 + ...d492d2d751e8cd01bdd193dc38accb89a07d5aef015f9413af9f764fb71a8 | 1 + 2 files changed, 2 insertions(+) create mode 100644 frontend/.metro-cache/cache/a4/5e00d345c79f7faf2351119448ee40a06f8a4dd8b69089338f2c1b064433c5913c80fa create mode 100644 frontend/.metro-cache/cache/df/323f0fc00d492d2d751e8cd01bdd193dc38accb89a07d5aef015f9413af9f764fb71a8 diff --git a/frontend/.metro-cache/cache/a4/5e00d345c79f7faf2351119448ee40a06f8a4dd8b69089338f2c1b064433c5913c80fa b/frontend/.metro-cache/cache/a4/5e00d345c79f7faf2351119448ee40a06f8a4dd8b69089338f2c1b064433c5913c80fa new file mode 100644 index 00000000..04d22dbb --- /dev/null +++ b/frontend/.metro-cache/cache/a4/5e00d345c79f7faf2351119448ee40a06f8a4dd8b69089338f2c1b064433c5913c80fa @@ -0,0 +1 @@ +{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":89,"index":89}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"@react-native-async-storage/async-storage","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":131},"end":{"line":3,"column":69,"index":200}}],"key":"0kSRlooyBOaYM9tlTtK91nq+uds=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _jsxFileName = \"/app/frontend/src/contexts/PolkadotContext.tsx\",\n _s = $RefreshSig$(),\n _s2 = $RefreshSig$(); // ========================================\n // TYPES - Simplified for backend proxy approach\n // ========================================\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"PolkadotProvider\", {\n enumerable: true,\n get: function () {\n return PolkadotProvider;\n }\n });\n Object.defineProperty(exports, \"usePolkadot\", {\n enumerable: true,\n get: function () {\n return usePolkadot;\n }\n });\n var _react = require(_dependencyMap[0], \"react\");\n var _reactNativeAsyncStorageAsyncStorage = require(_dependencyMap[1], \"@react-native-async-storage/async-storage\");\n var AsyncStorage = _interopDefault(_reactNativeAsyncStorageAsyncStorage);\n var _reactJsxDevRuntime = require(_dependencyMap[2], \"react/jsx-dev-runtime\");\n const PolkadotContext = /*#__PURE__*/(0, _react.createContext)(undefined);\n\n // ========================================\n // PROVIDER - Simplified localStorage only\n // ========================================\n\n const PolkadotProvider = ({\n children\n }) => {\n _s();\n const [accounts, setAccounts] = (0, _react.useState)([]);\n const [selectedAccount, setSelectedAccount] = (0, _react.useState)(null);\n const [error, setError] = (0, _react.useState)(null);\n\n // Load saved accounts from AsyncStorage\n (0, _react.useEffect)(() => {\n loadAccounts();\n }, []);\n const loadAccounts = async () => {\n try {\n const savedAccounts = await AsyncStorage.default.getItem('pezkuwi_accounts');\n if (savedAccounts) {\n const parsedAccounts = JSON.parse(savedAccounts);\n setAccounts(parsedAccounts);\n\n // Auto-select first account if available\n if (parsedAccounts.length > 0) {\n setSelectedAccount(parsedAccounts[0]);\n }\n }\n } catch (error) {\n console.error('Error loading accounts:', error);\n setError('Failed to load accounts');\n }\n };\n\n // Save account to AsyncStorage\n const saveAccount = async account => {\n try {\n // Check if account already exists\n const existingIndex = accounts.findIndex(acc => acc.address === account.address);\n let updatedAccounts;\n if (existingIndex >= 0) {\n // Update existing account\n updatedAccounts = [...accounts];\n updatedAccounts[existingIndex] = account;\n } else {\n // Add new account\n updatedAccounts = [...accounts, account];\n }\n setAccounts(updatedAccounts);\n setSelectedAccount(account);\n await AsyncStorage.default.setItem('pezkuwi_accounts', JSON.stringify(updatedAccounts));\n console.log('✅ Account saved:', account.address);\n } catch (error) {\n console.error('Error saving account:', error);\n setError('Failed to save account');\n }\n };\n const value = {\n accounts,\n selectedAccount,\n setSelectedAccount,\n saveAccount,\n error\n };\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(PolkadotContext.Provider, {\n value: value,\n children: children\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 98,\n columnNumber: 5\n }, this);\n };\n\n // ========================================\n // HOOK\n // ========================================\n _s(PolkadotProvider, \"LvoSA4UHowiAXXY0uUA3iMdQt+s=\");\n _c = PolkadotProvider;\n const usePolkadot = () => {\n _s2();\n const context = (0, _react.useContext)(PolkadotContext);\n if (!context) {\n throw new Error('usePolkadot must be used within PolkadotProvider');\n }\n return context;\n };\n _s2(usePolkadot, \"b9L3QQ+jgeyIrH0NfHrJ8nn7VMU=\");\n var _c;\n $RefreshReg$(_c, \"PolkadotProvider\");\n});","lineCount":125,"map":[[6,26,5,0],[7,2,6,0],[8,2,7,0],[9,2,7,0,"Object"],[9,8,7,0],[9,9,7,0,"defineProperty"],[9,23,7,0],[9,24,7,0,"exports"],[9,31,7,0],[10,4,7,0,"value"],[10,9,7,0],[11,2,7,0],[12,2,7,0],[12,11,7,0,"_interopDefault"],[12,27,7,0,"e"],[12,28,7,0],[13,4,7,0],[13,11,7,0,"e"],[13,12,7,0],[13,16,7,0,"e"],[13,17,7,0],[13,18,7,0,"__esModule"],[13,28,7,0],[13,31,7,0,"e"],[13,32,7,0],[14,6,7,0,"default"],[14,13,7,0],[14,15,7,0,"e"],[15,4,7,0],[16,2,7,0],[17,2,33,0,"Object"],[17,8,33,0],[17,9,33,0,"defineProperty"],[17,23,33,0],[17,24,33,0,"exports"],[17,31,33,0],[18,4,33,0,"enumerable"],[18,14,33,0],[19,4,33,0,"get"],[19,7,33,0],[19,18,33,0,"get"],[19,19,33,0],[20,6,33,0],[20,13,33,0,"PolkadotProvider"],[20,29,33,0],[21,4,33,0],[22,2,33,0],[23,2,108,0,"Object"],[23,8,108,0],[23,9,108,0,"defineProperty"],[23,23,108,0],[23,24,108,0,"exports"],[23,31,108,0],[24,4,108,0,"enumerable"],[24,14,108,0],[25,4,108,0,"get"],[25,7,108,0],[25,18,108,0,"get"],[25,19,108,0],[26,6,108,0],[26,13,108,0,"usePolkadot"],[26,24,108,0],[27,4,108,0],[28,2,108,0],[29,2,1,0],[29,6,1,0,"_react"],[29,12,1,0],[29,15,1,0,"require"],[29,22,1,0],[29,23,1,0,"_dependencyMap"],[29,37,1,0],[30,2,3,0],[30,6,3,0,"_reactNativeAsyncStorageAsyncStorage"],[30,42,3,0],[30,45,3,0,"require"],[30,52,3,0],[30,53,3,0,"_dependencyMap"],[30,67,3,0],[31,2,3,0],[31,6,3,0,"AsyncStorage"],[31,18,3,0],[31,21,3,0,"_interopDefault"],[31,36,3,0],[31,37,3,0,"_reactNativeAsyncStorageAsyncStorage"],[31,73,3,0],[32,2,3,69],[32,6,3,69,"_reactJsxDevRuntime"],[32,25,3,69],[32,28,3,69,"require"],[32,35,3,69],[32,36,3,69,"_dependencyMap"],[32,50,3,69],[33,2,23,0],[33,8,23,6,"PolkadotContext"],[33,23,23,21],[33,39,23,24],[33,43,23,24,"createContext"],[33,49,23,37],[33,50,23,37,"createContext"],[33,63,23,37],[33,65,23,71,"undefined"],[33,74,23,80],[33,75,23,81],[35,2,25,0],[36,2,26,0],[37,2,27,0],[39,2,33,7],[39,8,33,13,"PolkadotProvider"],[39,24,33,62],[39,27,33,65,"PolkadotProvider"],[39,28,33,66],[40,4,33,68,"children"],[41,2,33,77],[41,3,33,78],[41,8,33,83],[42,4,33,83,"_s"],[42,6,33,83],[43,4,34,2],[43,10,34,8],[43,11,34,9,"accounts"],[43,19,34,17],[43,21,34,19,"setAccounts"],[43,32,34,30],[43,33,34,31],[43,36,34,34],[43,40,34,34,"useState"],[43,46,34,42],[43,47,34,42,"useState"],[43,55,34,42],[43,57,34,54],[43,59,34,56],[43,60,34,57],[44,4,35,2],[44,10,35,8],[44,11,35,9,"selectedAccount"],[44,26,35,24],[44,28,35,26,"setSelectedAccount"],[44,46,35,44],[44,47,35,45],[44,50,35,48],[44,54,35,48,"useState"],[44,60,35,56],[44,61,35,56,"useState"],[44,69,35,56],[44,71,35,73],[44,75,35,77],[44,76,35,78],[45,4,36,2],[45,10,36,8],[45,11,36,9,"error"],[45,16,36,14],[45,18,36,16,"setError"],[45,26,36,24],[45,27,36,25],[45,30,36,28],[45,34,36,28,"useState"],[45,40,36,36],[45,41,36,36,"useState"],[45,49,36,36],[45,51,36,52],[45,55,36,56],[45,56,36,57],[47,4,38,2],[48,4,39,2],[48,8,39,2,"useEffect"],[48,14,39,11],[48,15,39,11,"useEffect"],[48,24,39,11],[48,26,39,12],[48,32,39,18],[49,6,40,4,"loadAccounts"],[49,18,40,16],[49,19,40,17],[49,20,40,18],[50,4,41,2],[50,5,41,3],[50,7,41,5],[50,9,41,7],[50,10,41,8],[51,4,43,2],[51,10,43,8,"loadAccounts"],[51,22,43,20],[51,25,43,23],[51,31,43,23,"loadAccounts"],[51,32,43,23],[51,37,43,35],[52,6,44,4],[52,10,44,8],[53,8,45,6],[53,14,45,12,"savedAccounts"],[53,27,45,25],[53,30,45,28],[53,36,45,34,"AsyncStorage"],[53,48,45,46],[53,49,45,46,"default"],[53,56,45,46],[53,57,45,47,"getItem"],[53,64,45,54],[53,65,45,55],[53,83,45,73],[53,84,45,74],[54,8,46,6],[54,12,46,10,"savedAccounts"],[54,25,46,23],[54,27,46,25],[55,10,47,8],[55,16,47,14,"parsedAccounts"],[55,30,47,28],[55,33,47,31,"JSON"],[55,37,47,35],[55,38,47,36,"parse"],[55,43,47,41],[55,44,47,42,"savedAccounts"],[55,57,47,55],[55,58,47,56],[56,10,48,8,"setAccounts"],[56,21,48,19],[56,22,48,20,"parsedAccounts"],[56,36,48,34],[56,37,48,35],[58,10,50,8],[59,10,51,8],[59,14,51,12,"parsedAccounts"],[59,28,51,26],[59,29,51,27,"length"],[59,35,51,33],[59,38,51,36],[59,39,51,37],[59,41,51,39],[60,12,52,10,"setSelectedAccount"],[60,30,52,28],[60,31,52,29,"parsedAccounts"],[60,45,52,43],[60,46,52,44],[60,47,52,45],[60,48,52,46],[60,49,52,47],[61,10,53,8],[62,8,54,6],[63,6,55,4],[63,7,55,5],[63,8,55,6],[63,15,55,13,"error"],[63,20,55,18],[63,22,55,20],[64,8,56,6,"console"],[64,15,56,13],[64,16,56,14,"error"],[64,21,56,19],[64,22,56,20],[64,47,56,45],[64,49,56,47,"error"],[64,54,56,52],[64,55,56,53],[65,8,57,6,"setError"],[65,16,57,14],[65,17,57,15],[65,42,57,40],[65,43,57,41],[66,6,58,4],[67,4,59,2],[67,5,59,3],[69,4,61,2],[70,4,62,2],[70,10,62,8,"saveAccount"],[70,21,62,19],[70,24,62,22],[70,30,62,29,"account"],[70,37,62,45],[70,41,62,50],[71,6,63,4],[71,10,63,8],[72,8,64,6],[73,8,65,6],[73,14,65,12,"existingIndex"],[73,27,65,25],[73,30,65,28,"accounts"],[73,38,65,36],[73,39,65,37,"findIndex"],[73,48,65,46],[73,49,65,47,"acc"],[73,52,65,50],[73,56,65,54,"acc"],[73,59,65,57],[73,60,65,58,"address"],[73,67,65,65],[73,72,65,70,"account"],[73,79,65,77],[73,80,65,78,"address"],[73,87,65,85],[73,88,65,86],[74,8,67,6],[74,12,67,10,"updatedAccounts"],[74,27,67,36],[75,8,68,6],[75,12,68,10,"existingIndex"],[75,25,68,23],[75,29,68,27],[75,30,68,28],[75,32,68,30],[76,10,69,8],[77,10,70,8,"updatedAccounts"],[77,25,70,23],[77,28,70,26],[77,29,70,27],[77,32,70,30,"accounts"],[77,40,70,38],[77,41,70,39],[78,10,71,8,"updatedAccounts"],[78,25,71,23],[78,26,71,24,"existingIndex"],[78,39,71,37],[78,40,71,38],[78,43,71,41,"account"],[78,50,71,48],[79,8,72,6],[79,9,72,7],[79,15,72,13],[80,10,73,8],[81,10,74,8,"updatedAccounts"],[81,25,74,23],[81,28,74,26],[81,29,74,27],[81,32,74,30,"accounts"],[81,40,74,38],[81,42,74,40,"account"],[81,49,74,47],[81,50,74,48],[82,8,75,6],[83,8,77,6,"setAccounts"],[83,19,77,17],[83,20,77,18,"updatedAccounts"],[83,35,77,33],[83,36,77,34],[84,8,78,6,"setSelectedAccount"],[84,26,78,24],[84,27,78,25,"account"],[84,34,78,32],[84,35,78,33],[85,8,80,6],[85,14,80,12,"AsyncStorage"],[85,26,80,24],[85,27,80,24,"default"],[85,34,80,24],[85,35,80,25,"setItem"],[85,42,80,32],[85,43,80,33],[85,61,80,51],[85,63,80,53,"JSON"],[85,67,80,57],[85,68,80,58,"stringify"],[85,77,80,67],[85,78,80,68,"updatedAccounts"],[85,93,80,83],[85,94,80,84],[85,95,80,85],[86,8,82,6,"console"],[86,15,82,13],[86,16,82,14,"log"],[86,19,82,17],[86,20,82,18],[86,38,82,36],[86,40,82,38,"account"],[86,47,82,45],[86,48,82,46,"address"],[86,55,82,53],[86,56,82,54],[87,6,83,4],[87,7,83,5],[87,8,83,6],[87,15,83,13,"error"],[87,20,83,18],[87,22,83,20],[88,8,84,6,"console"],[88,15,84,13],[88,16,84,14,"error"],[88,21,84,19],[88,22,84,20],[88,45,84,43],[88,47,84,45,"error"],[88,52,84,50],[88,53,84,51],[89,8,85,6,"setError"],[89,16,85,14],[89,17,85,15],[89,41,85,39],[89,42,85,40],[90,6,86,4],[91,4,87,2],[91,5,87,3],[92,4,89,2],[92,10,89,8,"value"],[92,15,89,34],[92,18,89,37],[93,6,90,4,"accounts"],[93,14,90,12],[94,6,91,4,"selectedAccount"],[94,21,91,19],[95,6,92,4,"setSelectedAccount"],[95,24,92,22],[96,6,93,4,"saveAccount"],[96,17,93,15],[97,6,94,4,"error"],[98,4,95,2],[98,5,95,3],[99,4,97,2],[99,24,98,4],[99,28,98,4,"_reactJsxDevRuntime"],[99,47,98,4],[99,48,98,4,"jsxDEV"],[99,54,98,4],[99,56,98,5,"PolkadotContext"],[99,71,98,20],[99,72,98,21,"Provider"],[99,80,98,29],[100,6,98,30,"value"],[100,11,98,35],[100,13,98,37,"value"],[100,18,98,43],[101,6,98,43,"children"],[101,14,98,43],[101,16,99,7,"children"],[102,4,99,15],[103,6,99,15,"fileName"],[103,14,99,15],[103,16,99,15,"_jsxFileName"],[103,28,99,15],[104,6,99,15,"lineNumber"],[104,16,99,15],[105,6,99,15,"columnNumber"],[105,18,99,15],[106,4,99,15],[106,11,100,30],[106,12,100,31],[107,2,102,0],[107,3,102,1],[109,2,104,0],[110,2,105,0],[111,2,106,0],[112,2,106,0,"_s"],[112,4,106,0],[112,5,33,13,"PolkadotProvider"],[112,21,33,62],[113,2,33,62,"_c"],[113,4,33,62],[113,7,33,13,"PolkadotProvider"],[113,23,33,62],[114,2,108,7],[114,8,108,13,"usePolkadot"],[114,19,108,24],[114,22,108,27,"usePolkadot"],[114,23,108,27],[114,28,108,54],[115,4,108,54,"_s2"],[115,7,108,54],[116,4,109,2],[116,10,109,8,"context"],[116,17,109,15],[116,20,109,18],[116,24,109,18,"useContext"],[116,30,109,28],[116,31,109,28,"useContext"],[116,41,109,28],[116,43,109,29,"PolkadotContext"],[116,58,109,44],[116,59,109,45],[117,4,110,2],[117,8,110,6],[117,9,110,7,"context"],[117,16,110,14],[117,18,110,16],[118,6,111,4],[118,12,111,10],[118,16,111,14,"Error"],[118,21,111,19],[118,22,111,20],[118,72,111,70],[118,73,111,71],[119,4,112,2],[120,4,113,2],[120,11,113,9,"context"],[120,18,113,16],[121,2,114,0],[121,3,114,1],[122,2,114,2,"_s2"],[122,5,114,2],[122,6,108,13,"usePolkadot"],[122,17,108,24],[123,2,108,24],[123,6,108,24,"_c"],[123,8,108,24],[124,2,108,24,"$RefreshReg$"],[124,14,108,24],[124,15,108,24,"_c"],[124,17,108,24],[125,0,108,24],[125,3]],"functionMap":{"names":["","PolkadotProvider","useEffect$argument_0","loadAccounts","saveAccount","accounts.findIndex$argument_0","usePolkadot"],"mappings":"AAA;iECgC;YCM;GDE;uBEE;GFgB;sBGG;+CCG,sCD;GHsB;CDe;2BMM;CNM"},"hasCjsExports":false},"type":"js/module"}]} \ No newline at end of file diff --git a/frontend/.metro-cache/cache/df/323f0fc00d492d2d751e8cd01bdd193dc38accb89a07d5aef015f9413af9f764fb71a8 b/frontend/.metro-cache/cache/df/323f0fc00d492d2d751e8cd01bdd193dc38accb89a07d5aef015f9413af9f764fb71a8 new file mode 100644 index 00000000..9dd8714d --- /dev/null +++ b/frontend/.metro-cache/cache/df/323f0fc00d492d2d751e8cd01bdd193dc38accb89a07d5aef015f9413af9f764fb71a8 @@ -0,0 +1 @@ +{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":40,"index":40}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/View","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"4kYBDC6LJJXoH7P9rWDi3vkLVB0=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/Text","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"JKIzsQ5YQ0gDj0MIyY0Q7F1zJtU=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/StyleSheet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"MK7+k1V+KnvCVW7Kj2k/ydtjmVU=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/TouchableOpacity","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"PnQOoa8QGKpV5+issz6ikk463eg=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/SafeAreaView","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"S6Dcm4vKatES0CiC0O7zdRDDseY=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/TextInput","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"DmXc1F5dPYWntVgqRwh73w0VngA=","exportNames":["*"],"imports":1}},{"name":"react-native-web/dist/exports/Alert","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"PEUC6jrQVoAGZ2qYkvimljMOyJI=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":11,"column":0,"index":161},"end":{"line":11,"column":46,"index":207}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"expo-linear-gradient","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":208},"end":{"line":12,"column":54,"index":262}}],"key":"U49Qf+lzUGUozi/zW+nL0UJUvcg=","exportNames":["*"],"imports":1}},{"name":"../../contexts/PolkadotContext","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":263},"end":{"line":13,"column":61,"index":324}}],"key":"v+9z/WgILQWWOqFQphs5ZjxIEuE=","exportNames":["*"],"imports":1}},{"name":"react/jsx-dev-runtime","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"L9D70Z4hi4aGuui1ysja/oQ5ytI=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _jsxFileName = \"/app/frontend/src/screens/Wallet/WalletSetupScreen.tsx\",\n _s = $RefreshSig$();\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return WalletSetupScreen;\n }\n });\n var _react = require(_dependencyMap[0], \"react\");\n var _reactNativeWebDistExportsView = require(_dependencyMap[1], \"react-native-web/dist/exports/View\");\n var View = _interopDefault(_reactNativeWebDistExportsView);\n var _reactNativeWebDistExportsText = require(_dependencyMap[2], \"react-native-web/dist/exports/Text\");\n var Text = _interopDefault(_reactNativeWebDistExportsText);\n var _reactNativeWebDistExportsStyleSheet = require(_dependencyMap[3], \"react-native-web/dist/exports/StyleSheet\");\n var StyleSheet = _interopDefault(_reactNativeWebDistExportsStyleSheet);\n var _reactNativeWebDistExportsTouchableOpacity = require(_dependencyMap[4], \"react-native-web/dist/exports/TouchableOpacity\");\n var TouchableOpacity = _interopDefault(_reactNativeWebDistExportsTouchableOpacity);\n var _reactNativeWebDistExportsSafeAreaView = require(_dependencyMap[5], \"react-native-web/dist/exports/SafeAreaView\");\n var SafeAreaView = _interopDefault(_reactNativeWebDistExportsSafeAreaView);\n var _reactNativeWebDistExportsTextInput = require(_dependencyMap[6], \"react-native-web/dist/exports/TextInput\");\n var TextInput = _interopDefault(_reactNativeWebDistExportsTextInput);\n var _reactNativeWebDistExportsAlert = require(_dependencyMap[7], \"react-native-web/dist/exports/Alert\");\n var Alert = _interopDefault(_reactNativeWebDistExportsAlert);\n var _expoVectorIcons = require(_dependencyMap[8], \"@expo/vector-icons\");\n var _expoLinearGradient = require(_dependencyMap[9], \"expo-linear-gradient\");\n var _contextsPolkadotContext = require(_dependencyMap[10], \"../../contexts/PolkadotContext\");\n var _reactJsxDevRuntime = require(_dependencyMap[11], \"react/jsx-dev-runtime\");\n function WalletSetupScreen({\n navigation\n }) {\n _s();\n const {\n saveAccount\n } = (0, _contextsPolkadotContext.usePolkadot)();\n const [walletAddress, setWalletAddress] = (0, _react.useState)('');\n const [walletName, setWalletName] = (0, _react.useState)('My Wallet');\n const handleConnectWithAddress = async () => {\n if (!walletAddress.trim()) {\n Alert.default.alert('Error', 'Please enter a valid wallet address');\n return;\n }\n\n // Save the account\n await saveAccount({\n address: walletAddress.trim(),\n name: walletName.trim() || 'My Wallet'\n });\n navigation.navigate('MainTabs');\n };\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(SafeAreaView.default, {\n style: styles.container,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoLinearGradient.LinearGradient, {\n colors: ['#F08080', '#E8C896', '#F5B895'],\n style: styles.gradient,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.content,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.header,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"wallet\",\n size: 80,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 44,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.title,\n children: \"Connect Your Wallet\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 45,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.subtitle,\n children: \"Enter your PezkuwiChain wallet address to get started\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 46,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 43,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.card,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.optionHeader,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"key\",\n size: 32,\n color: \"#F08080\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 54,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.optionTitle,\n children: \"Wallet Details\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 55,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 53,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.label,\n children: \"Wallet Name (optional)\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 58,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(TextInput.default, {\n style: styles.input,\n placeholder: \"My Wallet\",\n value: walletName,\n onChangeText: setWalletName,\n placeholderTextColor: \"#999\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 59,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.label,\n children: \"Wallet Address\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 67,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(TextInput.default, {\n style: [styles.input, styles.addressInput],\n placeholder: \"5GrwvaEF5zXb26Fz9rcQpDWS...\",\n value: walletAddress,\n onChangeText: setWalletAddress,\n placeholderTextColor: \"#999\",\n autoCapitalize: \"none\",\n autoCorrect: false,\n multiline: true,\n numberOfLines: 2\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 68,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(TouchableOpacity.default, {\n style: styles.primaryButton,\n onPress: handleConnectWithAddress,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.primaryButtonText,\n children: \"Continue\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 84,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"arrow-forward\",\n size: 20,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 85,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 80,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.infoBox,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"information-circle\",\n size: 20,\n color: \"#7DD3C0\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 89,\n columnNumber: 15\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.infoText,\n children: \"Your wallet address is only stored locally on your device. We never access your private keys.\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 90,\n columnNumber: 15\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 88,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 52,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(View.default, {\n style: styles.footer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"shield-checkmark\",\n size: 20,\n color: \"#FFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 98,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(Text.default, {\n style: styles.footerText,\n children: \"All blockchain data fetched securely via backend API\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 99,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 97,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 41,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 37,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 36,\n columnNumber: 5\n }, this);\n }\n _s(WalletSetupScreen, \"DBiYzTyU6Pis+lPe4mb5GOdb1B4=\", false, function () {\n return [_contextsPolkadotContext.usePolkadot];\n });\n _c = WalletSetupScreen;\n const styles = StyleSheet.default.create({\n container: {\n flex: 1\n },\n gradient: {\n flex: 1\n },\n content: {\n flex: 1,\n padding: 20,\n justifyContent: 'space-between'\n },\n header: {\n alignItems: 'center',\n marginTop: 40\n },\n title: {\n fontSize: 28,\n fontWeight: 'bold',\n color: '#FFF',\n marginTop: 20,\n textAlign: 'center'\n },\n subtitle: {\n fontSize: 16,\n color: '#FFF',\n marginTop: 12,\n textAlign: 'center',\n opacity: 0.9,\n paddingHorizontal: 20\n },\n card: {\n backgroundColor: '#FFF',\n borderRadius: 24,\n padding: 24,\n shadowColor: '#000',\n shadowOffset: {\n width: 0,\n height: 4\n },\n shadowOpacity: 0.15,\n shadowRadius: 12,\n elevation: 8\n },\n optionHeader: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 12,\n marginBottom: 20\n },\n optionTitle: {\n fontSize: 20,\n fontWeight: '700',\n color: '#333'\n },\n label: {\n fontSize: 14,\n fontWeight: '600',\n color: '#666',\n marginBottom: 8,\n marginTop: 12\n },\n input: {\n backgroundColor: '#F5F5F5',\n borderRadius: 12,\n padding: 16,\n fontSize: 14,\n color: '#333'\n },\n addressInput: {\n minHeight: 60,\n textAlignVertical: 'top'\n },\n primaryButton: {\n backgroundColor: '#F08080',\n borderRadius: 12,\n padding: 16,\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 8,\n marginTop: 20\n },\n primaryButtonText: {\n color: '#FFF',\n fontSize: 18,\n fontWeight: '600'\n },\n infoBox: {\n backgroundColor: '#F0F9F7',\n borderRadius: 12,\n padding: 12,\n flexDirection: 'row',\n alignItems: 'flex-start',\n gap: 8,\n marginTop: 16,\n borderWidth: 1,\n borderColor: '#D0F0E8'\n },\n infoText: {\n flex: 1,\n fontSize: 12,\n color: '#5DBEA3',\n lineHeight: 16\n },\n footer: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 8,\n marginBottom: 20\n },\n footerText: {\n fontSize: 12,\n color: '#FFF',\n opacity: 0.9\n }\n });\n var _c;\n $RefreshReg$(_c, \"WalletSetupScreen\");\n});","lineCount":372,"map":[[14,2,15,15,"Object"],[14,8,15,15],[14,9,15,15,"defineProperty"],[14,23,15,15],[14,24,15,15,"exports"],[14,31,15,15],[15,4,15,15,"enumerable"],[15,14,15,15],[16,4,15,15,"get"],[16,7,15,15],[16,18,15,15,"get"],[16,19,15,15],[17,6,15,15],[17,13,15,15,"WalletSetupScreen"],[17,30,15,15],[18,4,15,15],[19,2,15,15],[20,2,1,0],[20,6,1,0,"_react"],[20,12,1,0],[20,15,1,0,"require"],[20,22,1,0],[20,23,1,0,"_dependencyMap"],[20,37,1,0],[21,2,1,40],[21,6,1,40,"_reactNativeWebDistExportsView"],[21,36,1,40],[21,39,1,40,"require"],[21,46,1,40],[21,47,1,40,"_dependencyMap"],[21,61,1,40],[22,2,1,40],[22,6,1,40,"View"],[22,10,1,40],[22,13,1,40,"_interopDefault"],[22,28,1,40],[22,29,1,40,"_reactNativeWebDistExportsView"],[22,59,1,40],[23,2,1,40],[23,6,1,40,"_reactNativeWebDistExportsText"],[23,36,1,40],[23,39,1,40,"require"],[23,46,1,40],[23,47,1,40,"_dependencyMap"],[23,61,1,40],[24,2,1,40],[24,6,1,40,"Text"],[24,10,1,40],[24,13,1,40,"_interopDefault"],[24,28,1,40],[24,29,1,40,"_reactNativeWebDistExportsText"],[24,59,1,40],[25,2,1,40],[25,6,1,40,"_reactNativeWebDistExportsStyleSheet"],[25,42,1,40],[25,45,1,40,"require"],[25,52,1,40],[25,53,1,40,"_dependencyMap"],[25,67,1,40],[26,2,1,40],[26,6,1,40,"StyleSheet"],[26,16,1,40],[26,19,1,40,"_interopDefault"],[26,34,1,40],[26,35,1,40,"_reactNativeWebDistExportsStyleSheet"],[26,71,1,40],[27,2,1,40],[27,6,1,40,"_reactNativeWebDistExportsTouchableOpacity"],[27,48,1,40],[27,51,1,40,"require"],[27,58,1,40],[27,59,1,40,"_dependencyMap"],[27,73,1,40],[28,2,1,40],[28,6,1,40,"TouchableOpacity"],[28,22,1,40],[28,25,1,40,"_interopDefault"],[28,40,1,40],[28,41,1,40,"_reactNativeWebDistExportsTouchableOpacity"],[28,83,1,40],[29,2,1,40],[29,6,1,40,"_reactNativeWebDistExportsSafeAreaView"],[29,44,1,40],[29,47,1,40,"require"],[29,54,1,40],[29,55,1,40,"_dependencyMap"],[29,69,1,40],[30,2,1,40],[30,6,1,40,"SafeAreaView"],[30,18,1,40],[30,21,1,40,"_interopDefault"],[30,36,1,40],[30,37,1,40,"_reactNativeWebDistExportsSafeAreaView"],[30,75,1,40],[31,2,1,40],[31,6,1,40,"_reactNativeWebDistExportsTextInput"],[31,41,1,40],[31,44,1,40,"require"],[31,51,1,40],[31,52,1,40,"_dependencyMap"],[31,66,1,40],[32,2,1,40],[32,6,1,40,"TextInput"],[32,15,1,40],[32,18,1,40,"_interopDefault"],[32,33,1,40],[32,34,1,40,"_reactNativeWebDistExportsTextInput"],[32,69,1,40],[33,2,1,40],[33,6,1,40,"_reactNativeWebDistExportsAlert"],[33,37,1,40],[33,40,1,40,"require"],[33,47,1,40],[33,48,1,40,"_dependencyMap"],[33,62,1,40],[34,2,1,40],[34,6,1,40,"Alert"],[34,11,1,40],[34,14,1,40,"_interopDefault"],[34,29,1,40],[34,30,1,40,"_reactNativeWebDistExportsAlert"],[34,61,1,40],[35,2,11,0],[35,6,11,0,"_expoVectorIcons"],[35,22,11,0],[35,25,11,0,"require"],[35,32,11,0],[35,33,11,0,"_dependencyMap"],[35,47,11,0],[36,2,12,0],[36,6,12,0,"_expoLinearGradient"],[36,25,12,0],[36,28,12,0,"require"],[36,35,12,0],[36,36,12,0,"_dependencyMap"],[36,50,12,0],[37,2,13,0],[37,6,13,0,"_contextsPolkadotContext"],[37,30,13,0],[37,33,13,0,"require"],[37,40,13,0],[37,41,13,0,"_dependencyMap"],[37,55,13,0],[38,2,13,61],[38,6,13,61,"_reactJsxDevRuntime"],[38,25,13,61],[38,28,13,61,"require"],[38,35,13,61],[38,36,13,61,"_dependencyMap"],[38,50,13,61],[39,2,15,15],[39,11,15,24,"WalletSetupScreen"],[39,28,15,41,"WalletSetupScreen"],[39,29,15,42],[40,4,15,44,"navigation"],[41,2,15,60],[41,3,15,61],[41,5,15,63],[42,4,15,63,"_s"],[42,6,15,63],[43,4,16,2],[43,10,16,8],[44,6,16,10,"saveAccount"],[45,4,16,22],[45,5,16,23],[45,8,16,26],[45,12,16,26,"usePolkadot"],[45,36,16,37],[45,37,16,37,"usePolkadot"],[45,48,16,37],[45,50,16,38],[45,51,16,39],[46,4,17,2],[46,10,17,8],[46,11,17,9,"walletAddress"],[46,24,17,22],[46,26,17,24,"setWalletAddress"],[46,42,17,40],[46,43,17,41],[46,46,17,44],[46,50,17,44,"useState"],[46,56,17,52],[46,57,17,52,"useState"],[46,65,17,52],[46,67,17,53],[46,69,17,55],[46,70,17,56],[47,4,18,2],[47,10,18,8],[47,11,18,9,"walletName"],[47,21,18,19],[47,23,18,21,"setWalletName"],[47,36,18,34],[47,37,18,35],[47,40,18,38],[47,44,18,38,"useState"],[47,50,18,46],[47,51,18,46,"useState"],[47,59,18,46],[47,61,18,47],[47,72,18,58],[47,73,18,59],[48,4,20,2],[48,10,20,8,"handleConnectWithAddress"],[48,34,20,32],[48,37,20,35],[48,43,20,35,"handleConnectWithAddress"],[48,44,20,35],[48,49,20,47],[49,6,21,4],[49,10,21,8],[49,11,21,9,"walletAddress"],[49,24,21,22],[49,25,21,23,"trim"],[49,29,21,27],[49,30,21,28],[49,31,21,29],[49,33,21,31],[50,8,22,6,"Alert"],[50,13,22,11],[50,14,22,11,"default"],[50,21,22,11],[50,22,22,12,"alert"],[50,27,22,17],[50,28,22,18],[50,35,22,25],[50,37,22,27],[50,74,22,64],[50,75,22,65],[51,8,23,6],[52,6,24,4],[54,6,26,4],[55,6,27,4],[55,12,27,10,"saveAccount"],[55,23,27,21],[55,24,27,22],[56,8,28,6,"address"],[56,15,28,13],[56,17,28,15,"walletAddress"],[56,30,28,28],[56,31,28,29,"trim"],[56,35,28,33],[56,36,28,34],[56,37,28,35],[57,8,29,6,"name"],[57,12,29,10],[57,14,29,12,"walletName"],[57,24,29,22],[57,25,29,23,"trim"],[57,29,29,27],[57,30,29,28],[57,31,29,29],[57,35,29,33],[58,6,30,4],[58,7,30,5],[58,8,30,6],[59,6,32,4,"navigation"],[59,16,32,14],[59,17,32,15,"navigate"],[59,25,32,23],[59,26,32,24],[59,36,32,34],[59,37,32,35],[60,4,33,2],[60,5,33,3],[61,4,35,2],[61,24,36,4],[61,28,36,4,"_reactJsxDevRuntime"],[61,47,36,4],[61,48,36,4,"jsxDEV"],[61,54,36,4],[61,56,36,5,"SafeAreaView"],[61,68,36,17],[61,69,36,17,"default"],[61,76,36,17],[62,6,36,18,"style"],[62,11,36,23],[62,13,36,25,"styles"],[62,19,36,31],[62,20,36,32,"container"],[62,29,36,42],[63,6,36,42,"children"],[63,14,36,42],[63,29,37,6],[63,33,37,6,"_reactJsxDevRuntime"],[63,52,37,6],[63,53,37,6,"jsxDEV"],[63,59,37,6],[63,61,37,7,"_expoLinearGradient"],[63,80,37,21],[63,81,37,21,"LinearGradient"],[63,95,37,21],[64,8,38,8,"colors"],[64,14,38,14],[64,16,38,16],[64,17,38,17],[64,26,38,26],[64,28,38,28],[64,37,38,37],[64,39,38,39],[64,48,38,48],[64,49,38,50],[65,8,39,8,"style"],[65,13,39,13],[65,15,39,15,"styles"],[65,21,39,21],[65,22,39,22,"gradient"],[65,30,39,31],[66,8,39,31,"children"],[66,16,39,31],[66,31,41,8],[66,35,41,8,"_reactJsxDevRuntime"],[66,54,41,8],[66,55,41,8,"jsxDEV"],[66,61,41,8],[66,63,41,9,"View"],[66,67,41,13],[66,68,41,13,"default"],[66,75,41,13],[67,10,41,14,"style"],[67,15,41,19],[67,17,41,21,"styles"],[67,23,41,27],[67,24,41,28,"content"],[67,31,41,36],[68,10,41,36,"children"],[68,18,41,36],[68,34,43,10],[68,38,43,10,"_reactJsxDevRuntime"],[68,57,43,10],[68,58,43,10,"jsxDEV"],[68,64,43,10],[68,66,43,11,"View"],[68,70,43,15],[68,71,43,15,"default"],[68,78,43,15],[69,12,43,16,"style"],[69,17,43,21],[69,19,43,23,"styles"],[69,25,43,29],[69,26,43,30,"header"],[69,32,43,37],[70,12,43,37,"children"],[70,20,43,37],[70,36,44,12],[70,40,44,12,"_reactJsxDevRuntime"],[70,59,44,12],[70,60,44,12,"jsxDEV"],[70,66,44,12],[70,68,44,13,"_expoVectorIcons"],[70,84,44,21],[70,85,44,21,"Ionicons"],[70,93,44,21],[71,14,44,22,"name"],[71,18,44,26],[71,20,44,27],[71,28,44,35],[72,14,44,36,"size"],[72,18,44,40],[72,20,44,42],[72,22,44,45],[73,14,44,46,"color"],[73,19,44,51],[73,21,44,52],[74,12,44,58],[75,14,44,58,"fileName"],[75,22,44,58],[75,24,44,58,"_jsxFileName"],[75,36,44,58],[76,14,44,58,"lineNumber"],[76,24,44,58],[77,14,44,58,"columnNumber"],[77,26,44,58],[78,12,44,58],[78,19,44,60],[78,20,44,61],[78,35,45,12],[78,39,45,12,"_reactJsxDevRuntime"],[78,58,45,12],[78,59,45,12,"jsxDEV"],[78,65,45,12],[78,67,45,13,"Text"],[78,71,45,17],[78,72,45,17,"default"],[78,79,45,17],[79,14,45,18,"style"],[79,19,45,23],[79,21,45,25,"styles"],[79,27,45,31],[79,28,45,32,"title"],[79,33,45,38],[80,14,45,38,"children"],[80,22,45,38],[80,24,45,39],[81,12,45,58],[82,14,45,58,"fileName"],[82,22,45,58],[82,24,45,58,"_jsxFileName"],[82,36,45,58],[83,14,45,58,"lineNumber"],[83,24,45,58],[84,14,45,58,"columnNumber"],[84,26,45,58],[85,12,45,58],[85,19,45,64],[85,20,45,65],[85,35,46,12],[85,39,46,12,"_reactJsxDevRuntime"],[85,58,46,12],[85,59,46,12,"jsxDEV"],[85,65,46,12],[85,67,46,13,"Text"],[85,71,46,17],[85,72,46,17,"default"],[85,79,46,17],[86,14,46,18,"style"],[86,19,46,23],[86,21,46,25,"styles"],[86,27,46,31],[86,28,46,32,"subtitle"],[86,36,46,41],[87,14,46,41,"children"],[87,22,46,41],[87,24,46,42],[88,12,48,12],[89,14,48,12,"fileName"],[89,22,48,12],[89,24,48,12,"_jsxFileName"],[89,36,48,12],[90,14,48,12,"lineNumber"],[90,24,48,12],[91,14,48,12,"columnNumber"],[91,26,48,12],[92,12,48,12],[92,19,48,18],[92,20,48,19],[93,10,48,19],[94,12,48,19,"fileName"],[94,20,48,19],[94,22,48,19,"_jsxFileName"],[94,34,48,19],[95,12,48,19,"lineNumber"],[95,22,48,19],[96,12,48,19,"columnNumber"],[96,24,48,19],[97,10,48,19],[97,17,49,16],[97,18,49,17],[97,33,52,10],[97,37,52,10,"_reactJsxDevRuntime"],[97,56,52,10],[97,57,52,10,"jsxDEV"],[97,63,52,10],[97,65,52,11,"View"],[97,69,52,15],[97,70,52,15,"default"],[97,77,52,15],[98,12,52,16,"style"],[98,17,52,21],[98,19,52,23,"styles"],[98,25,52,29],[98,26,52,30,"card"],[98,30,52,35],[99,12,52,35,"children"],[99,20,52,35],[99,36,53,12],[99,40,53,12,"_reactJsxDevRuntime"],[99,59,53,12],[99,60,53,12,"jsxDEV"],[99,66,53,12],[99,68,53,13,"View"],[99,72,53,17],[99,73,53,17,"default"],[99,80,53,17],[100,14,53,18,"style"],[100,19,53,23],[100,21,53,25,"styles"],[100,27,53,31],[100,28,53,32,"optionHeader"],[100,40,53,45],[101,14,53,45,"children"],[101,22,53,45],[101,38,54,14],[101,42,54,14,"_reactJsxDevRuntime"],[101,61,54,14],[101,62,54,14,"jsxDEV"],[101,68,54,14],[101,70,54,15,"_expoVectorIcons"],[101,86,54,23],[101,87,54,23,"Ionicons"],[101,95,54,23],[102,16,54,24,"name"],[102,20,54,28],[102,22,54,29],[102,27,54,34],[103,16,54,35,"size"],[103,20,54,39],[103,22,54,41],[103,24,54,44],[104,16,54,45,"color"],[104,21,54,50],[104,23,54,51],[105,14,54,60],[106,16,54,60,"fileName"],[106,24,54,60],[106,26,54,60,"_jsxFileName"],[106,38,54,60],[107,16,54,60,"lineNumber"],[107,26,54,60],[108,16,54,60,"columnNumber"],[108,28,54,60],[109,14,54,60],[109,21,54,62],[109,22,54,63],[109,37,55,14],[109,41,55,14,"_reactJsxDevRuntime"],[109,60,55,14],[109,61,55,14,"jsxDEV"],[109,67,55,14],[109,69,55,15,"Text"],[109,73,55,19],[109,74,55,19,"default"],[109,81,55,19],[110,16,55,20,"style"],[110,21,55,25],[110,23,55,27,"styles"],[110,29,55,33],[110,30,55,34,"optionTitle"],[110,41,55,46],[111,16,55,46,"children"],[111,24,55,46],[111,26,55,47],[112,14,55,61],[113,16,55,61,"fileName"],[113,24,55,61],[113,26,55,61,"_jsxFileName"],[113,38,55,61],[114,16,55,61,"lineNumber"],[114,26,55,61],[115,16,55,61,"columnNumber"],[115,28,55,61],[116,14,55,61],[116,21,55,67],[116,22,55,68],[117,12,55,68],[118,14,55,68,"fileName"],[118,22,55,68],[118,24,55,68,"_jsxFileName"],[118,36,55,68],[119,14,55,68,"lineNumber"],[119,24,55,68],[120,14,55,68,"columnNumber"],[120,26,55,68],[121,12,55,68],[121,19,56,18],[121,20,56,19],[121,35,58,12],[121,39,58,12,"_reactJsxDevRuntime"],[121,58,58,12],[121,59,58,12,"jsxDEV"],[121,65,58,12],[121,67,58,13,"Text"],[121,71,58,17],[121,72,58,17,"default"],[121,79,58,17],[122,14,58,18,"style"],[122,19,58,23],[122,21,58,25,"styles"],[122,27,58,31],[122,28,58,32,"label"],[122,33,58,38],[123,14,58,38,"children"],[123,22,58,38],[123,24,58,39],[124,12,58,61],[125,14,58,61,"fileName"],[125,22,58,61],[125,24,58,61,"_jsxFileName"],[125,36,58,61],[126,14,58,61,"lineNumber"],[126,24,58,61],[127,14,58,61,"columnNumber"],[127,26,58,61],[128,12,58,61],[128,19,58,67],[128,20,58,68],[128,35,59,12],[128,39,59,12,"_reactJsxDevRuntime"],[128,58,59,12],[128,59,59,12,"jsxDEV"],[128,65,59,12],[128,67,59,13,"TextInput"],[128,76,59,22],[128,77,59,22,"default"],[128,84,59,22],[129,14,60,14,"style"],[129,19,60,19],[129,21,60,21,"styles"],[129,27,60,27],[129,28,60,28,"input"],[129,33,60,34],[130,14,61,14,"placeholder"],[130,25,61,25],[130,27,61,26],[130,38,61,37],[131,14,62,14,"value"],[131,19,62,19],[131,21,62,21,"walletName"],[131,31,62,32],[132,14,63,14,"onChangeText"],[132,26,63,26],[132,28,63,28,"setWalletName"],[132,41,63,42],[133,14,64,14,"placeholderTextColor"],[133,34,64,34],[133,36,64,35],[134,12,64,41],[135,14,64,41,"fileName"],[135,22,64,41],[135,24,64,41,"_jsxFileName"],[135,36,64,41],[136,14,64,41,"lineNumber"],[136,24,64,41],[137,14,64,41,"columnNumber"],[137,26,64,41],[138,12,64,41],[138,19,65,13],[138,20,65,14],[138,35,67,12],[138,39,67,12,"_reactJsxDevRuntime"],[138,58,67,12],[138,59,67,12,"jsxDEV"],[138,65,67,12],[138,67,67,13,"Text"],[138,71,67,17],[138,72,67,17,"default"],[138,79,67,17],[139,14,67,18,"style"],[139,19,67,23],[139,21,67,25,"styles"],[139,27,67,31],[139,28,67,32,"label"],[139,33,67,38],[140,14,67,38,"children"],[140,22,67,38],[140,24,67,39],[141,12,67,53],[142,14,67,53,"fileName"],[142,22,67,53],[142,24,67,53,"_jsxFileName"],[142,36,67,53],[143,14,67,53,"lineNumber"],[143,24,67,53],[144,14,67,53,"columnNumber"],[144,26,67,53],[145,12,67,53],[145,19,67,59],[145,20,67,60],[145,35,68,12],[145,39,68,12,"_reactJsxDevRuntime"],[145,58,68,12],[145,59,68,12,"jsxDEV"],[145,65,68,12],[145,67,68,13,"TextInput"],[145,76,68,22],[145,77,68,22,"default"],[145,84,68,22],[146,14,69,14,"style"],[146,19,69,19],[146,21,69,21],[146,22,69,22,"styles"],[146,28,69,28],[146,29,69,29,"input"],[146,34,69,34],[146,36,69,36,"styles"],[146,42,69,42],[146,43,69,43,"addressInput"],[146,55,69,55],[146,56,69,57],[147,14,70,14,"placeholder"],[147,25,70,25],[147,27,70,26],[147,56,70,55],[148,14,71,14,"value"],[148,19,71,19],[148,21,71,21,"walletAddress"],[148,34,71,35],[149,14,72,14,"onChangeText"],[149,26,72,26],[149,28,72,28,"setWalletAddress"],[149,44,72,45],[150,14,73,14,"placeholderTextColor"],[150,34,73,34],[150,36,73,35],[150,42,73,41],[151,14,74,14,"autoCapitalize"],[151,28,74,28],[151,30,74,29],[151,36,74,35],[152,14,75,14,"autoCorrect"],[152,25,75,25],[152,27,75,27],[152,32,75,33],[153,14,76,14,"multiline"],[153,23,76,23],[154,14,77,14,"numberOfLines"],[154,27,77,27],[154,29,77,29],[155,12,77,31],[156,14,77,31,"fileName"],[156,22,77,31],[156,24,77,31,"_jsxFileName"],[156,36,77,31],[157,14,77,31,"lineNumber"],[157,24,77,31],[158,14,77,31,"columnNumber"],[158,26,77,31],[159,12,77,31],[159,19,78,13],[159,20,78,14],[159,35,80,12],[159,39,80,12,"_reactJsxDevRuntime"],[159,58,80,12],[159,59,80,12,"jsxDEV"],[159,65,80,12],[159,67,80,13,"TouchableOpacity"],[159,83,80,29],[159,84,80,29,"default"],[159,91,80,29],[160,14,81,14,"style"],[160,19,81,19],[160,21,81,21,"styles"],[160,27,81,27],[160,28,81,28,"primaryButton"],[160,41,81,42],[161,14,82,14,"onPress"],[161,21,82,21],[161,23,82,23,"handleConnectWithAddress"],[161,47,82,48],[162,14,82,48,"children"],[162,22,82,48],[162,38,84,14],[162,42,84,14,"_reactJsxDevRuntime"],[162,61,84,14],[162,62,84,14,"jsxDEV"],[162,68,84,14],[162,70,84,15,"Text"],[162,74,84,19],[162,75,84,19,"default"],[162,82,84,19],[163,16,84,20,"style"],[163,21,84,25],[163,23,84,27,"styles"],[163,29,84,33],[163,30,84,34,"primaryButtonText"],[163,47,84,52],[164,16,84,52,"children"],[164,24,84,52],[164,26,84,53],[165,14,84,61],[166,16,84,61,"fileName"],[166,24,84,61],[166,26,84,61,"_jsxFileName"],[166,38,84,61],[167,16,84,61,"lineNumber"],[167,26,84,61],[168,16,84,61,"columnNumber"],[168,28,84,61],[169,14,84,61],[169,21,84,67],[169,22,84,68],[169,37,85,14],[169,41,85,14,"_reactJsxDevRuntime"],[169,60,85,14],[169,61,85,14,"jsxDEV"],[169,67,85,14],[169,69,85,15,"_expoVectorIcons"],[169,85,85,23],[169,86,85,23,"Ionicons"],[169,94,85,23],[170,16,85,24,"name"],[170,20,85,28],[170,22,85,29],[170,37,85,44],[171,16,85,45,"size"],[171,20,85,49],[171,22,85,51],[171,24,85,54],[172,16,85,55,"color"],[172,21,85,60],[172,23,85,61],[173,14,85,67],[174,16,85,67,"fileName"],[174,24,85,67],[174,26,85,67,"_jsxFileName"],[174,38,85,67],[175,16,85,67,"lineNumber"],[175,26,85,67],[176,16,85,67,"columnNumber"],[176,28,85,67],[177,14,85,67],[177,21,85,69],[177,22,85,70],[178,12,85,70],[179,14,85,70,"fileName"],[179,22,85,70],[179,24,85,70,"_jsxFileName"],[179,36,85,70],[180,14,85,70,"lineNumber"],[180,24,85,70],[181,14,85,70,"columnNumber"],[181,26,85,70],[182,12,85,70],[182,19,86,30],[182,20,86,31],[182,35,88,12],[182,39,88,12,"_reactJsxDevRuntime"],[182,58,88,12],[182,59,88,12,"jsxDEV"],[182,65,88,12],[182,67,88,13,"View"],[182,71,88,17],[182,72,88,17,"default"],[182,79,88,17],[183,14,88,18,"style"],[183,19,88,23],[183,21,88,25,"styles"],[183,27,88,31],[183,28,88,32,"infoBox"],[183,35,88,40],[184,14,88,40,"children"],[184,22,88,40],[184,38,89,14],[184,42,89,14,"_reactJsxDevRuntime"],[184,61,89,14],[184,62,89,14,"jsxDEV"],[184,68,89,14],[184,70,89,15,"_expoVectorIcons"],[184,86,89,23],[184,87,89,23,"Ionicons"],[184,95,89,23],[185,16,89,24,"name"],[185,20,89,28],[185,22,89,29],[185,42,89,49],[186,16,89,50,"size"],[186,20,89,54],[186,22,89,56],[186,24,89,59],[187,16,89,60,"color"],[187,21,89,65],[187,23,89,66],[188,14,89,75],[189,16,89,75,"fileName"],[189,24,89,75],[189,26,89,75,"_jsxFileName"],[189,38,89,75],[190,16,89,75,"lineNumber"],[190,26,89,75],[191,16,89,75,"columnNumber"],[191,28,89,75],[192,14,89,75],[192,21,89,77],[192,22,89,78],[192,37,90,14],[192,41,90,14,"_reactJsxDevRuntime"],[192,60,90,14],[192,61,90,14,"jsxDEV"],[192,67,90,14],[192,69,90,15,"Text"],[192,73,90,19],[192,74,90,19,"default"],[192,81,90,19],[193,16,90,20,"style"],[193,21,90,25],[193,23,90,27,"styles"],[193,29,90,33],[193,30,90,34,"infoText"],[193,38,90,43],[194,16,90,43,"children"],[194,24,90,43],[194,26,90,44],[195,14,92,14],[196,16,92,14,"fileName"],[196,24,92,14],[196,26,92,14,"_jsxFileName"],[196,38,92,14],[197,16,92,14,"lineNumber"],[197,26,92,14],[198,16,92,14,"columnNumber"],[198,28,92,14],[199,14,92,14],[199,21,92,20],[199,22,92,21],[200,12,92,21],[201,14,92,21,"fileName"],[201,22,92,21],[201,24,92,21,"_jsxFileName"],[201,36,92,21],[202,14,92,21,"lineNumber"],[202,24,92,21],[203,14,92,21,"columnNumber"],[203,26,92,21],[204,12,92,21],[204,19,93,18],[204,20,93,19],[205,10,93,19],[206,12,93,19,"fileName"],[206,20,93,19],[206,22,93,19,"_jsxFileName"],[206,34,93,19],[207,12,93,19,"lineNumber"],[207,22,93,19],[208,12,93,19,"columnNumber"],[208,24,93,19],[209,10,93,19],[209,17,94,16],[209,18,94,17],[209,33,97,10],[209,37,97,10,"_reactJsxDevRuntime"],[209,56,97,10],[209,57,97,10,"jsxDEV"],[209,63,97,10],[209,65,97,11,"View"],[209,69,97,15],[209,70,97,15,"default"],[209,77,97,15],[210,12,97,16,"style"],[210,17,97,21],[210,19,97,23,"styles"],[210,25,97,29],[210,26,97,30,"footer"],[210,32,97,37],[211,12,97,37,"children"],[211,20,97,37],[211,36,98,12],[211,40,98,12,"_reactJsxDevRuntime"],[211,59,98,12],[211,60,98,12,"jsxDEV"],[211,66,98,12],[211,68,98,13,"_expoVectorIcons"],[211,84,98,21],[211,85,98,21,"Ionicons"],[211,93,98,21],[212,14,98,22,"name"],[212,18,98,26],[212,20,98,27],[212,38,98,45],[213,14,98,46,"size"],[213,18,98,50],[213,20,98,52],[213,22,98,55],[214,14,98,56,"color"],[214,19,98,61],[214,21,98,62],[215,12,98,68],[216,14,98,68,"fileName"],[216,22,98,68],[216,24,98,68,"_jsxFileName"],[216,36,98,68],[217,14,98,68,"lineNumber"],[217,24,98,68],[218,14,98,68,"columnNumber"],[218,26,98,68],[219,12,98,68],[219,19,98,70],[219,20,98,71],[219,35,99,12],[219,39,99,12,"_reactJsxDevRuntime"],[219,58,99,12],[219,59,99,12,"jsxDEV"],[219,65,99,12],[219,67,99,13,"Text"],[219,71,99,17],[219,72,99,17,"default"],[219,79,99,17],[220,14,99,18,"style"],[220,19,99,23],[220,21,99,25,"styles"],[220,27,99,31],[220,28,99,32,"footerText"],[220,38,99,43],[221,14,99,43,"children"],[221,22,99,43],[221,24,99,44],[222,12,101,12],[223,14,101,12,"fileName"],[223,22,101,12],[223,24,101,12,"_jsxFileName"],[223,36,101,12],[224,14,101,12,"lineNumber"],[224,24,101,12],[225,14,101,12,"columnNumber"],[225,26,101,12],[226,12,101,12],[226,19,101,18],[226,20,101,19],[227,10,101,19],[228,12,101,19,"fileName"],[228,20,101,19],[228,22,101,19,"_jsxFileName"],[228,34,101,19],[229,12,101,19,"lineNumber"],[229,22,101,19],[230,12,101,19,"columnNumber"],[230,24,101,19],[231,10,101,19],[231,17,102,16],[231,18,102,17],[232,8,102,17],[233,10,102,17,"fileName"],[233,18,102,17],[233,20,102,17,"_jsxFileName"],[233,32,102,17],[234,10,102,17,"lineNumber"],[234,20,102,17],[235,10,102,17,"columnNumber"],[235,22,102,17],[236,8,102,17],[236,15,103,14],[237,6,103,15],[238,8,103,15,"fileName"],[238,16,103,15],[238,18,103,15,"_jsxFileName"],[238,30,103,15],[239,8,103,15,"lineNumber"],[239,18,103,15],[240,8,103,15,"columnNumber"],[240,20,103,15],[241,6,103,15],[241,13,104,22],[242,4,104,23],[243,6,104,23,"fileName"],[243,14,104,23],[243,16,104,23,"_jsxFileName"],[243,28,104,23],[244,6,104,23,"lineNumber"],[244,16,104,23],[245,6,104,23,"columnNumber"],[245,18,104,23],[246,4,104,23],[246,11,105,18],[246,12,105,19],[247,2,107,0],[248,2,107,1,"_s"],[248,4,107,1],[248,5,15,24,"WalletSetupScreen"],[248,22,15,41],[249,4,15,41],[249,12,16,26,"usePolkadot"],[249,36,16,37],[249,37,16,37,"usePolkadot"],[249,48,16,37],[250,2,16,37],[251,2,16,37,"_c"],[251,4,16,37],[251,7,15,24,"WalletSetupScreen"],[251,24,15,41],[252,2,109,0],[252,8,109,6,"styles"],[252,14,109,12],[252,17,109,15,"StyleSheet"],[252,27,109,25],[252,28,109,25,"default"],[252,35,109,25],[252,36,109,26,"create"],[252,42,109,32],[252,43,109,33],[253,4,110,2,"container"],[253,13,110,11],[253,15,110,13],[254,6,111,4,"flex"],[254,10,111,8],[254,12,111,10],[255,4,112,2],[255,5,112,3],[256,4,113,2,"gradient"],[256,12,113,10],[256,14,113,12],[257,6,114,4,"flex"],[257,10,114,8],[257,12,114,10],[258,4,115,2],[258,5,115,3],[259,4,116,2,"content"],[259,11,116,9],[259,13,116,11],[260,6,117,4,"flex"],[260,10,117,8],[260,12,117,10],[260,13,117,11],[261,6,118,4,"padding"],[261,13,118,11],[261,15,118,13],[261,17,118,15],[262,6,119,4,"justifyContent"],[262,20,119,18],[262,22,119,20],[263,4,120,2],[263,5,120,3],[264,4,121,2,"header"],[264,10,121,8],[264,12,121,10],[265,6,122,4,"alignItems"],[265,16,122,14],[265,18,122,16],[265,26,122,24],[266,6,123,4,"marginTop"],[266,15,123,13],[266,17,123,15],[267,4,124,2],[267,5,124,3],[268,4,125,2,"title"],[268,9,125,7],[268,11,125,9],[269,6,126,4,"fontSize"],[269,14,126,12],[269,16,126,14],[269,18,126,16],[270,6,127,4,"fontWeight"],[270,16,127,14],[270,18,127,16],[270,24,127,22],[271,6,128,4,"color"],[271,11,128,9],[271,13,128,11],[271,19,128,17],[272,6,129,4,"marginTop"],[272,15,129,13],[272,17,129,15],[272,19,129,17],[273,6,130,4,"textAlign"],[273,15,130,13],[273,17,130,15],[274,4,131,2],[274,5,131,3],[275,4,132,2,"subtitle"],[275,12,132,10],[275,14,132,12],[276,6,133,4,"fontSize"],[276,14,133,12],[276,16,133,14],[276,18,133,16],[277,6,134,4,"color"],[277,11,134,9],[277,13,134,11],[277,19,134,17],[278,6,135,4,"marginTop"],[278,15,135,13],[278,17,135,15],[278,19,135,17],[279,6,136,4,"textAlign"],[279,15,136,13],[279,17,136,15],[279,25,136,23],[280,6,137,4,"opacity"],[280,13,137,11],[280,15,137,13],[280,18,137,16],[281,6,138,4,"paddingHorizontal"],[281,23,138,21],[281,25,138,23],[282,4,139,2],[282,5,139,3],[283,4,140,2,"card"],[283,8,140,6],[283,10,140,8],[284,6,141,4,"backgroundColor"],[284,21,141,19],[284,23,141,21],[284,29,141,27],[285,6,142,4,"borderRadius"],[285,18,142,16],[285,20,142,18],[285,22,142,20],[286,6,143,4,"padding"],[286,13,143,11],[286,15,143,13],[286,17,143,15],[287,6,144,4,"shadowColor"],[287,17,144,15],[287,19,144,17],[287,25,144,23],[288,6,145,4,"shadowOffset"],[288,18,145,16],[288,20,145,18],[289,8,145,20,"width"],[289,13,145,25],[289,15,145,27],[289,16,145,28],[290,8,145,30,"height"],[290,14,145,36],[290,16,145,38],[291,6,145,40],[291,7,145,41],[292,6,146,4,"shadowOpacity"],[292,19,146,17],[292,21,146,19],[292,25,146,23],[293,6,147,4,"shadowRadius"],[293,18,147,16],[293,20,147,18],[293,22,147,20],[294,6,148,4,"elevation"],[294,15,148,13],[294,17,148,15],[295,4,149,2],[295,5,149,3],[296,4,150,2,"optionHeader"],[296,16,150,14],[296,18,150,16],[297,6,151,4,"flexDirection"],[297,19,151,17],[297,21,151,19],[297,26,151,24],[298,6,152,4,"alignItems"],[298,16,152,14],[298,18,152,16],[298,26,152,24],[299,6,153,4,"gap"],[299,9,153,7],[299,11,153,9],[299,13,153,11],[300,6,154,4,"marginBottom"],[300,18,154,16],[300,20,154,18],[301,4,155,2],[301,5,155,3],[302,4,156,2,"optionTitle"],[302,15,156,13],[302,17,156,15],[303,6,157,4,"fontSize"],[303,14,157,12],[303,16,157,14],[303,18,157,16],[304,6,158,4,"fontWeight"],[304,16,158,14],[304,18,158,16],[304,23,158,21],[305,6,159,4,"color"],[305,11,159,9],[305,13,159,11],[306,4,160,2],[306,5,160,3],[307,4,161,2,"label"],[307,9,161,7],[307,11,161,9],[308,6,162,4,"fontSize"],[308,14,162,12],[308,16,162,14],[308,18,162,16],[309,6,163,4,"fontWeight"],[309,16,163,14],[309,18,163,16],[309,23,163,21],[310,6,164,4,"color"],[310,11,164,9],[310,13,164,11],[310,19,164,17],[311,6,165,4,"marginBottom"],[311,18,165,16],[311,20,165,18],[311,21,165,19],[312,6,166,4,"marginTop"],[312,15,166,13],[312,17,166,15],[313,4,167,2],[313,5,167,3],[314,4,168,2,"input"],[314,9,168,7],[314,11,168,9],[315,6,169,4,"backgroundColor"],[315,21,169,19],[315,23,169,21],[315,32,169,30],[316,6,170,4,"borderRadius"],[316,18,170,16],[316,20,170,18],[316,22,170,20],[317,6,171,4,"padding"],[317,13,171,11],[317,15,171,13],[317,17,171,15],[318,6,172,4,"fontSize"],[318,14,172,12],[318,16,172,14],[318,18,172,16],[319,6,173,4,"color"],[319,11,173,9],[319,13,173,11],[320,4,174,2],[320,5,174,3],[321,4,175,2,"addressInput"],[321,16,175,14],[321,18,175,16],[322,6,176,4,"minHeight"],[322,15,176,13],[322,17,176,15],[322,19,176,17],[323,6,177,4,"textAlignVertical"],[323,23,177,21],[323,25,177,23],[324,4,178,2],[324,5,178,3],[325,4,179,2,"primaryButton"],[325,17,179,15],[325,19,179,17],[326,6,180,4,"backgroundColor"],[326,21,180,19],[326,23,180,21],[326,32,180,30],[327,6,181,4,"borderRadius"],[327,18,181,16],[327,20,181,18],[327,22,181,20],[328,6,182,4,"padding"],[328,13,182,11],[328,15,182,13],[328,17,182,15],[329,6,183,4,"flexDirection"],[329,19,183,17],[329,21,183,19],[329,26,183,24],[330,6,184,4,"alignItems"],[330,16,184,14],[330,18,184,16],[330,26,184,24],[331,6,185,4,"justifyContent"],[331,20,185,18],[331,22,185,20],[331,30,185,28],[332,6,186,4,"gap"],[332,9,186,7],[332,11,186,9],[332,12,186,10],[333,6,187,4,"marginTop"],[333,15,187,13],[333,17,187,15],[334,4,188,2],[334,5,188,3],[335,4,189,2,"primaryButtonText"],[335,21,189,19],[335,23,189,21],[336,6,190,4,"color"],[336,11,190,9],[336,13,190,11],[336,19,190,17],[337,6,191,4,"fontSize"],[337,14,191,12],[337,16,191,14],[337,18,191,16],[338,6,192,4,"fontWeight"],[338,16,192,14],[338,18,192,16],[339,4,193,2],[339,5,193,3],[340,4,194,2,"infoBox"],[340,11,194,9],[340,13,194,11],[341,6,195,4,"backgroundColor"],[341,21,195,19],[341,23,195,21],[341,32,195,30],[342,6,196,4,"borderRadius"],[342,18,196,16],[342,20,196,18],[342,22,196,20],[343,6,197,4,"padding"],[343,13,197,11],[343,15,197,13],[343,17,197,15],[344,6,198,4,"flexDirection"],[344,19,198,17],[344,21,198,19],[344,26,198,24],[345,6,199,4,"alignItems"],[345,16,199,14],[345,18,199,16],[345,30,199,28],[346,6,200,4,"gap"],[346,9,200,7],[346,11,200,9],[346,12,200,10],[347,6,201,4,"marginTop"],[347,15,201,13],[347,17,201,15],[347,19,201,17],[348,6,202,4,"borderWidth"],[348,17,202,15],[348,19,202,17],[348,20,202,18],[349,6,203,4,"borderColor"],[349,17,203,15],[349,19,203,17],[350,4,204,2],[350,5,204,3],[351,4,205,2,"infoText"],[351,12,205,10],[351,14,205,12],[352,6,206,4,"flex"],[352,10,206,8],[352,12,206,10],[352,13,206,11],[353,6,207,4,"fontSize"],[353,14,207,12],[353,16,207,14],[353,18,207,16],[354,6,208,4,"color"],[354,11,208,9],[354,13,208,11],[354,22,208,20],[355,6,209,4,"lineHeight"],[355,16,209,14],[355,18,209,16],[356,4,210,2],[356,5,210,3],[357,4,211,2,"footer"],[357,10,211,8],[357,12,211,10],[358,6,212,4,"flexDirection"],[358,19,212,17],[358,21,212,19],[358,26,212,24],[359,6,213,4,"alignItems"],[359,16,213,14],[359,18,213,16],[359,26,213,24],[360,6,214,4,"justifyContent"],[360,20,214,18],[360,22,214,20],[360,30,214,28],[361,6,215,4,"gap"],[361,9,215,7],[361,11,215,9],[361,12,215,10],[362,6,216,4,"marginBottom"],[362,18,216,16],[362,20,216,18],[363,4,217,2],[363,5,217,3],[364,4,218,2,"footerText"],[364,14,218,12],[364,16,218,14],[365,6,219,4,"fontSize"],[365,14,219,12],[365,16,219,14],[365,18,219,16],[366,6,220,4,"color"],[366,11,220,9],[366,13,220,11],[366,19,220,17],[367,6,221,4,"opacity"],[367,13,221,11],[367,15,221,13],[368,4,222,2],[369,2,223,0],[369,3,223,1],[369,4,223,2],[370,2,223,3],[370,6,223,3,"_c"],[370,8,223,3],[371,2,223,3,"$RefreshReg$"],[371,14,223,3],[371,15,223,3,"_c"],[371,17,223,3],[372,0,223,3],[372,3]],"functionMap":{"names":["","WalletSetupScreen","handleConnectWithAddress"],"mappings":"AAA;eCc;mCCK;GDa;CD0E"},"hasCjsExports":false},"type":"js/module"}]} \ No newline at end of file