Files
pezkuwi-mobile-app/frontend/.metro-cache/cache/e4/15b362164e25f2e672a290fc2c5c215cc6e50dfc98fe2ffaed580dc1d3e80660571b04
T
2025-11-07 20:14:32 +00:00

1 line
46 KiB
Plaintext

{"dependencies":[{"name":"@babel/runtime/helpers/asyncToGenerator","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"YisBBiy2Xm9DEVdFebZ2nbgAHBo=","exportNames":["*"],"imports":1}},{"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","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":41},"end":{"line":11,"column":22,"index":158}}],"key":"KyzuX10g6ixS9UfynhmjlvCIG3g=","exportNames":["*"],"imports":1}},{"name":"@expo/vector-icons","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":12,"column":0,"index":159},"end":{"line":12,"column":46,"index":205}}],"key":"ow7vkrqkIckRjlSi/+MhMmRYtUE=","exportNames":["*"],"imports":1}},{"name":"react-native-qrcode-svg","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":206},"end":{"line":13,"column":45,"index":251}}],"key":"hoyYC/72wI3ym3vQVHGM/Nfx4bI=","exportNames":["*"],"imports":1}},{"name":"expo-clipboard","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":252},"end":{"line":14,"column":44,"index":296}}],"key":"6x7AVkUt6ftsEMcdJ1GZ85GuvaY=","exportNames":["*"],"imports":1}},{"name":"../constants/colors","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":297},"end":{"line":15,"column":41,"index":338}}],"key":"s+ozDTH/Nrh+c9crVrqJODmnbz0=","exportNames":["*"],"imports":1}},{"name":"../constants/theme","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0,"index":339},"end":{"line":16,"column":79,"index":418}}],"key":"wYsGrLzOZoewJzHaXfZf3q7qjsE=","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/components/ReceiveModal.tsx\";\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 function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return ReceiveModal;\n }\n });\n var _babelRuntimeHelpersAsyncToGenerator = require(_dependencyMap[0], \"@babel/runtime/helpers/asyncToGenerator\");\n var _asyncToGenerator = _interopDefault(_babelRuntimeHelpersAsyncToGenerator);\n require(_dependencyMap[1], \"react\");\n var _reactNative = require(_dependencyMap[2], \"react-native\");\n var _expoVectorIcons = require(_dependencyMap[3], \"@expo/vector-icons\");\n var _reactNativeQrcodeSvg = require(_dependencyMap[4], \"react-native-qrcode-svg\");\n var QRCode = _interopDefault(_reactNativeQrcodeSvg);\n var _expoClipboard = require(_dependencyMap[5], \"expo-clipboard\");\n var Clipboard = _interopNamespace(_expoClipboard);\n var _constantsColors = require(_dependencyMap[6], \"../constants/colors\");\n var Colors = _interopDefault(_constantsColors);\n var _constantsTheme = require(_dependencyMap[7], \"../constants/theme\");\n var _reactJsxDevRuntime = require(_dependencyMap[8], \"react/jsx-dev-runtime\");\n function ReceiveModal(_ref) {\n var visible = _ref.visible,\n onClose = _ref.onClose,\n token = _ref.token;\n // Mock wallet address - in production, this would come from user's wallet\n var walletAddress = 'pezkuwi1a2b3c4d5e6f7g8h9i0j';\n var network = 'Optimism';\n var handleCopyAddress = /*#__PURE__*/function () {\n var _ref2 = (0, _asyncToGenerator.default)(function* () {\n yield Clipboard.setStringAsync(walletAddress);\n _reactNative.Alert.alert('Copied!', 'Wallet address copied to clipboard');\n });\n return function handleCopyAddress() {\n return _ref2.apply(this, arguments);\n };\n }();\n var handleShareAddress = /*#__PURE__*/function () {\n var _ref3 = (0, _asyncToGenerator.default)(function* () {\n try {\n yield _reactNative.Share.share({\n message: `My ${token.symbol} wallet address:\\n${walletAddress}\\n\\nNetwork: ${network}`,\n title: `${token.symbol} Wallet Address`\n });\n } catch (error) {\n console.error('Error sharing:', error);\n }\n });\n return function handleShareAddress() {\n return _ref3.apply(this, arguments);\n };\n }();\n return /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Modal, {\n visible: visible,\n transparent: true,\n animationType: \"slide\",\n onRequestClose: onClose,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.overlay,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.modalContainer,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.closeButton,\n onPress: onClose,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"close\",\n size: 28,\n color: Colors.default.textDark\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 61,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 60,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Image, {\n source: token.icon,\n style: styles.tokenIcon\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 65,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.title,\n children: [\"Receive \", token.symbol]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 68,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.qrCard,\n children: /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(QRCode.default, {\n value: walletAddress,\n size: 200\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 72,\n columnNumber: 13\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 71,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.addressContainer,\n onPress: handleCopyAddress,\n activeOpacity: 0.7,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.addressText,\n children: walletAddress\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 81,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"copy-outline\",\n size: 20,\n color: Colors.default.primary\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 82,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 76,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.tapToCopy,\n children: \"Tap to copy\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 84,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.networkBadge,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"globe-outline\",\n size: 20,\n color: \"#007AFF\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 88,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.networkText,\n children: [network, \" Network\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 89,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 87,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.TouchableOpacity, {\n style: styles.shareButton,\n onPress: handleShareAddress,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"share-outline\",\n size: 20,\n color: Colors.default.textDark\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 94,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.shareButtonText,\n children: \"Share Address\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 95,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 93,\n columnNumber: 11\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.View, {\n style: styles.warningBox,\n children: [/*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_expoVectorIcons.Ionicons, {\n name: \"warning-outline\",\n size: 24,\n color: \"#F59E0B\"\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 100,\n columnNumber: 13\n }, this), /*#__PURE__*/(0, _reactJsxDevRuntime.jsxDEV)(_reactNative.Text, {\n style: styles.warningText,\n children: [\"Only send \", token.symbol, \" to this address on \", network, \" network\"]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 101,\n columnNumber: 13\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 99,\n columnNumber: 11\n }, this)]\n }, void 0, true, {\n fileName: _jsxFileName,\n lineNumber: 58,\n columnNumber: 9\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 57,\n columnNumber: 7\n }, this)\n }, void 0, false, {\n fileName: _jsxFileName,\n lineNumber: 51,\n columnNumber: 5\n }, this);\n }\n _c = ReceiveModal;\n var styles = _reactNative.StyleSheet.create({\n overlay: {\n flex: 1,\n backgroundColor: 'rgba(0, 0, 0, 0.5)',\n justifyContent: 'center',\n alignItems: 'center',\n padding: _constantsTheme.Spacing.lg\n },\n modalContainer: {\n width: '100%',\n maxWidth: 400,\n backgroundColor: '#FFFFFF',\n borderRadius: _constantsTheme.BorderRadius.xl,\n padding: _constantsTheme.Spacing.xl,\n ..._constantsTheme.Shadow.medium\n },\n closeButton: {\n position: 'absolute',\n top: _constantsTheme.Spacing.md,\n right: _constantsTheme.Spacing.md,\n zIndex: 1\n },\n tokenIcon: {\n width: 60,\n height: 60,\n alignSelf: 'center',\n marginTop: _constantsTheme.Spacing.md\n },\n title: {\n fontSize: _constantsTheme.Typography.sizes.xxl,\n fontWeight: _constantsTheme.Typography.weights.bold,\n color: Colors.default.textDark,\n textAlign: 'center',\n marginTop: _constantsTheme.Spacing.sm,\n marginBottom: _constantsTheme.Spacing.lg\n },\n qrCard: {\n backgroundColor: '#FFFFFF',\n borderRadius: _constantsTheme.BorderRadius.lg,\n padding: _constantsTheme.Spacing.lg,\n alignItems: 'center',\n justifyContent: 'center',\n ..._constantsTheme.Shadow.small,\n alignSelf: 'center'\n },\n addressContainer: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n backgroundColor: Colors.default.background,\n borderRadius: _constantsTheme.BorderRadius.md,\n paddingHorizontal: _constantsTheme.Spacing.md,\n paddingVertical: _constantsTheme.Spacing.sm,\n marginTop: _constantsTheme.Spacing.lg\n },\n addressText: {\n fontSize: _constantsTheme.Typography.sizes.sm,\n fontFamily: 'monospace',\n color: Colors.default.textDark,\n marginRight: _constantsTheme.Spacing.sm\n },\n tapToCopy: {\n fontSize: _constantsTheme.Typography.sizes.xs,\n color: Colors.default.textLight,\n textAlign: 'center',\n marginTop: _constantsTheme.Spacing.xs\n },\n networkBadge: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n backgroundColor: '#E3F2FD',\n borderRadius: _constantsTheme.BorderRadius.md,\n paddingHorizontal: _constantsTheme.Spacing.md,\n paddingVertical: _constantsTheme.Spacing.sm,\n marginTop: _constantsTheme.Spacing.lg,\n alignSelf: 'center'\n },\n networkText: {\n fontSize: _constantsTheme.Typography.sizes.md,\n fontWeight: _constantsTheme.Typography.weights.semibold,\n color: '#007AFF',\n marginLeft: _constantsTheme.Spacing.xs\n },\n shareButton: {\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n backgroundColor: Colors.default.background,\n borderRadius: _constantsTheme.BorderRadius.md,\n paddingVertical: _constantsTheme.Spacing.md,\n marginTop: _constantsTheme.Spacing.lg\n },\n shareButtonText: {\n fontSize: _constantsTheme.Typography.sizes.md,\n fontWeight: _constantsTheme.Typography.weights.semibold,\n color: Colors.default.textDark,\n marginLeft: _constantsTheme.Spacing.sm\n },\n warningBox: {\n flexDirection: 'row',\n alignItems: 'center',\n backgroundColor: '#FEF3C7',\n borderRadius: _constantsTheme.BorderRadius.md,\n padding: _constantsTheme.Spacing.md,\n marginTop: _constantsTheme.Spacing.lg\n },\n warningText: {\n flex: 1,\n fontSize: _constantsTheme.Typography.sizes.sm,\n color: '#92400E',\n marginLeft: _constantsTheme.Spacing.sm\n }\n });\n var _c;\n $RefreshReg$(_c, \"ReceiveModal\");\n});","lineCount":363,"map":[[28,2,29,15,"Object"],[28,8,29,15],[28,9,29,15,"defineProperty"],[28,23,29,15],[28,24,29,15,"exports"],[28,31,29,15],[29,4,29,15,"enumerable"],[29,14,29,15],[30,4,29,15,"get"],[30,7,29,15],[30,18,29,15,"get"],[30,19,29,15],[31,6,29,15],[31,13,29,15,"ReceiveModal"],[31,25,29,15],[32,4,29,15],[33,2,29,15],[34,2,109,1],[34,6,109,1,"_babelRuntimeHelpersAsyncToGenerator"],[34,42,109,1],[34,45,109,1,"require"],[34,52,109,1],[34,53,109,1,"_dependencyMap"],[34,67,109,1],[35,2,109,1],[35,6,109,1,"_asyncToGenerator"],[35,23,109,1],[35,26,109,1,"_interopDefault"],[35,41,109,1],[35,42,109,1,"_babelRuntimeHelpersAsyncToGenerator"],[35,78,109,1],[36,2,1,0,"require"],[36,9,1,0],[36,10,1,0,"_dependencyMap"],[36,24,1,0],[37,2,2,0],[37,6,2,0,"_reactNative"],[37,18,2,0],[37,21,2,0,"require"],[37,28,2,0],[37,29,2,0,"_dependencyMap"],[37,43,2,0],[38,2,12,0],[38,6,12,0,"_expoVectorIcons"],[38,22,12,0],[38,25,12,0,"require"],[38,32,12,0],[38,33,12,0,"_dependencyMap"],[38,47,12,0],[39,2,13,0],[39,6,13,0,"_reactNativeQrcodeSvg"],[39,27,13,0],[39,30,13,0,"require"],[39,37,13,0],[39,38,13,0,"_dependencyMap"],[39,52,13,0],[40,2,13,0],[40,6,13,0,"QRCode"],[40,12,13,0],[40,15,13,0,"_interopDefault"],[40,30,13,0],[40,31,13,0,"_reactNativeQrcodeSvg"],[40,52,13,0],[41,2,14,0],[41,6,14,0,"_expoClipboard"],[41,20,14,0],[41,23,14,0,"require"],[41,30,14,0],[41,31,14,0,"_dependencyMap"],[41,45,14,0],[42,2,14,0],[42,6,14,0,"Clipboard"],[42,15,14,0],[42,18,14,0,"_interopNamespace"],[42,35,14,0],[42,36,14,0,"_expoClipboard"],[42,50,14,0],[43,2,15,0],[43,6,15,0,"_constantsColors"],[43,22,15,0],[43,25,15,0,"require"],[43,32,15,0],[43,33,15,0,"_dependencyMap"],[43,47,15,0],[44,2,15,0],[44,6,15,0,"Colors"],[44,12,15,0],[44,15,15,0,"_interopDefault"],[44,30,15,0],[44,31,15,0,"_constantsColors"],[44,47,15,0],[45,2,16,0],[45,6,16,0,"_constantsTheme"],[45,21,16,0],[45,24,16,0,"require"],[45,31,16,0],[45,32,16,0,"_dependencyMap"],[45,46,16,0],[46,2,16,79],[46,6,16,79,"_reactJsxDevRuntime"],[46,25,16,79],[46,28,16,79,"require"],[46,35,16,79],[46,36,16,79,"_dependencyMap"],[46,50,16,79],[47,2,29,15],[47,11,29,24,"ReceiveModal"],[47,23,29,36,"ReceiveModal"],[47,24,29,36,"_ref"],[47,28,29,36],[47,30,29,85],[48,4,29,85],[48,8,29,39,"visible"],[48,15,29,46],[48,18,29,46,"_ref"],[48,22,29,46],[48,23,29,39,"visible"],[48,30,29,46],[49,6,29,48,"onClose"],[49,13,29,55],[49,16,29,55,"_ref"],[49,20,29,55],[49,21,29,48,"onClose"],[49,28,29,55],[50,6,29,57,"token"],[50,11,29,62],[50,14,29,62,"_ref"],[50,18,29,62],[50,19,29,57,"token"],[50,24,29,62],[51,4,30,2],[52,4,31,2],[52,8,31,8,"walletAddress"],[52,21,31,21],[52,24,31,24],[52,53,31,53],[53,4,32,2],[53,8,32,8,"network"],[53,15,32,15],[53,18,32,18],[53,28,32,28],[54,4,34,2],[54,8,34,8,"handleCopyAddress"],[54,25,34,25],[55,6,34,25],[55,10,34,25,"_ref2"],[55,15,34,25],[55,22,34,25,"_asyncToGenerator"],[55,39,34,25],[55,40,34,25,"default"],[55,47,34,25],[55,49,34,28],[55,62,34,40],[56,8,35,4],[56,14,35,10,"Clipboard"],[56,23,35,19],[56,24,35,20,"setStringAsync"],[56,38,35,34],[56,39,35,35,"walletAddress"],[56,52,35,48],[56,53,35,49],[57,8,36,4,"Alert"],[57,20,36,9],[57,21,36,9,"Alert"],[57,26,36,9],[57,27,36,10,"alert"],[57,32,36,15],[57,33,36,16],[57,42,36,25],[57,44,36,27],[57,80,36,63],[57,81,36,64],[58,6,37,2],[58,7,37,3],[59,6,37,3],[59,22,34,8,"handleCopyAddress"],[59,39,34,25,"handleCopyAddress"],[59,40,34,25],[60,8,34,25],[60,15,34,25,"_ref2"],[60,20,34,25],[60,21,34,25,"apply"],[60,26,34,25],[60,33,34,25,"arguments"],[60,42,34,25],[61,6,34,25],[62,4,34,25],[62,7,37,3],[63,4,39,2],[63,8,39,8,"handleShareAddress"],[63,26,39,26],[64,6,39,26],[64,10,39,26,"_ref3"],[64,15,39,26],[64,22,39,26,"_asyncToGenerator"],[64,39,39,26],[64,40,39,26,"default"],[64,47,39,26],[64,49,39,29],[64,62,39,41],[65,8,40,4],[65,12,40,8],[66,10,41,6],[66,16,41,12,"Share"],[66,28,41,17],[66,29,41,17,"Share"],[66,34,41,17],[66,35,41,18,"share"],[66,40,41,23],[66,41,41,24],[67,12,42,8,"message"],[67,19,42,15],[67,21,42,17],[67,27,42,23,"token"],[67,32,42,28],[67,33,42,29,"symbol"],[67,39,42,35],[67,60,42,56,"walletAddress"],[67,73,42,69],[67,89,42,85,"network"],[67,96,42,92],[67,98,42,94],[68,12,43,8,"title"],[68,17,43,13],[68,19,43,15],[68,22,43,18,"token"],[68,27,43,23],[68,28,43,24,"symbol"],[68,34,43,30],[69,10,44,6],[69,11,44,7],[69,12,44,8],[70,8,45,4],[70,9,45,5],[70,10,45,6],[70,17,45,13,"error"],[70,22,45,18],[70,24,45,20],[71,10,46,6,"console"],[71,17,46,13],[71,18,46,14,"error"],[71,23,46,19],[71,24,46,20],[71,40,46,36],[71,42,46,38,"error"],[71,47,46,43],[71,48,46,44],[72,8,47,4],[73,6,48,2],[73,7,48,3],[74,6,48,3],[74,22,39,8,"handleShareAddress"],[74,40,39,26,"handleShareAddress"],[74,41,39,26],[75,8,39,26],[75,15,39,26,"_ref3"],[75,20,39,26],[75,21,39,26,"apply"],[75,26,39,26],[75,33,39,26,"arguments"],[75,42,39,26],[76,6,39,26],[77,4,39,26],[77,7,48,3],[78,4,50,2],[78,24,51,4],[78,28,51,4,"_reactJsxDevRuntime"],[78,47,51,4],[78,48,51,4,"jsxDEV"],[78,54,51,4],[78,56,51,5,"_reactNative"],[78,68,51,10],[78,69,51,10,"Modal"],[78,74,51,10],[79,6,52,6,"visible"],[79,13,52,13],[79,15,52,15,"visible"],[79,22,52,23],[80,6,53,6,"transparent"],[80,17,53,17],[81,6,54,6,"animationType"],[81,19,54,19],[81,21,54,20],[81,28,54,27],[82,6,55,6,"onRequestClose"],[82,20,55,20],[82,22,55,22,"onClose"],[82,29,55,30],[83,6,55,30,"children"],[83,14,55,30],[83,29,57,6],[83,33,57,6,"_reactJsxDevRuntime"],[83,52,57,6],[83,53,57,6,"jsxDEV"],[83,59,57,6],[83,61,57,7,"_reactNative"],[83,73,57,11],[83,74,57,11,"View"],[83,78,57,11],[84,8,57,12,"style"],[84,13,57,17],[84,15,57,19,"styles"],[84,21,57,25],[84,22,57,26,"overlay"],[84,29,57,34],[85,8,57,34,"children"],[85,16,57,34],[85,31,58,8],[85,35,58,8,"_reactJsxDevRuntime"],[85,54,58,8],[85,55,58,8,"jsxDEV"],[85,61,58,8],[85,63,58,9,"_reactNative"],[85,75,58,13],[85,76,58,13,"View"],[85,80,58,13],[86,10,58,14,"style"],[86,15,58,19],[86,17,58,21,"styles"],[86,23,58,27],[86,24,58,28,"modalContainer"],[86,38,58,43],[87,10,58,43,"children"],[87,18,58,43],[87,34,60,10],[87,38,60,10,"_reactJsxDevRuntime"],[87,57,60,10],[87,58,60,10,"jsxDEV"],[87,64,60,10],[87,66,60,11,"_reactNative"],[87,78,60,27],[87,79,60,27,"TouchableOpacity"],[87,95,60,27],[88,12,60,28,"style"],[88,17,60,33],[88,19,60,35,"styles"],[88,25,60,41],[88,26,60,42,"closeButton"],[88,37,60,54],[89,12,60,55,"onPress"],[89,19,60,62],[89,21,60,64,"onClose"],[89,28,60,72],[90,12,60,72,"children"],[90,20,60,72],[90,35,61,12],[90,39,61,12,"_reactJsxDevRuntime"],[90,58,61,12],[90,59,61,12,"jsxDEV"],[90,65,61,12],[90,67,61,13,"_expoVectorIcons"],[90,83,61,21],[90,84,61,21,"Ionicons"],[90,92,61,21],[91,14,61,22,"name"],[91,18,61,26],[91,20,61,27],[91,27,61,34],[92,14,61,35,"size"],[92,18,61,39],[92,20,61,41],[92,22,61,44],[93,14,61,45,"color"],[93,19,61,50],[93,21,61,52,"Colors"],[93,27,61,58],[93,28,61,58,"default"],[93,35,61,58],[93,36,61,59,"textDark"],[94,12,61,68],[95,14,61,68,"fileName"],[95,22,61,68],[95,24,61,68,"_jsxFileName"],[95,36,61,68],[96,14,61,68,"lineNumber"],[96,24,61,68],[97,14,61,68,"columnNumber"],[97,26,61,68],[98,12,61,68],[98,19,61,70],[99,10,61,71],[100,12,61,71,"fileName"],[100,20,61,71],[100,22,61,71,"_jsxFileName"],[100,34,61,71],[101,12,61,71,"lineNumber"],[101,22,61,71],[102,12,61,71,"columnNumber"],[102,24,61,71],[103,10,61,71],[103,17,62,28],[103,18,62,29],[103,33,65,10],[103,37,65,10,"_reactJsxDevRuntime"],[103,56,65,10],[103,57,65,10,"jsxDEV"],[103,63,65,10],[103,65,65,11,"_reactNative"],[103,77,65,16],[103,78,65,16,"Image"],[103,83,65,16],[104,12,65,17,"source"],[104,18,65,23],[104,20,65,25,"token"],[104,25,65,30],[104,26,65,31,"icon"],[104,30,65,36],[105,12,65,37,"style"],[105,17,65,42],[105,19,65,44,"styles"],[105,25,65,50],[105,26,65,51,"tokenIcon"],[106,10,65,61],[107,12,65,61,"fileName"],[107,20,65,61],[107,22,65,61,"_jsxFileName"],[107,34,65,61],[108,12,65,61,"lineNumber"],[108,22,65,61],[109,12,65,61,"columnNumber"],[109,24,65,61],[110,10,65,61],[110,17,65,63],[110,18,65,64],[110,33,68,10],[110,37,68,10,"_reactJsxDevRuntime"],[110,56,68,10],[110,57,68,10,"jsxDEV"],[110,63,68,10],[110,65,68,11,"_reactNative"],[110,77,68,15],[110,78,68,15,"Text"],[110,82,68,15],[111,12,68,16,"style"],[111,17,68,21],[111,19,68,23,"styles"],[111,25,68,29],[111,26,68,30,"title"],[111,31,68,36],[112,12,68,36,"children"],[112,20,68,36],[112,23,68,37],[112,33,68,45],[112,35,68,46,"token"],[112,40,68,51],[112,41,68,52,"symbol"],[112,47,68,58],[113,10,68,58],[114,12,68,58,"fileName"],[114,20,68,58],[114,22,68,58,"_jsxFileName"],[114,34,68,58],[115,12,68,58,"lineNumber"],[115,22,68,58],[116,12,68,58,"columnNumber"],[116,24,68,58],[117,10,68,58],[117,17,68,65],[117,18,68,66],[117,33,71,10],[117,37,71,10,"_reactJsxDevRuntime"],[117,56,71,10],[117,57,71,10,"jsxDEV"],[117,63,71,10],[117,65,71,11,"_reactNative"],[117,77,71,15],[117,78,71,15,"View"],[117,82,71,15],[118,12,71,16,"style"],[118,17,71,21],[118,19,71,23,"styles"],[118,25,71,29],[118,26,71,30,"qrCard"],[118,32,71,37],[119,12,71,37,"children"],[119,20,71,37],[119,35,72,12],[119,39,72,12,"_reactJsxDevRuntime"],[119,58,72,12],[119,59,72,12,"jsxDEV"],[119,65,72,12],[119,67,72,13,"QRCode"],[119,73,72,19],[119,74,72,19,"default"],[119,81,72,19],[120,14,72,20,"value"],[120,19,72,25],[120,21,72,27,"walletAddress"],[120,34,72,41],[121,14,72,42,"size"],[121,18,72,46],[121,20,72,48],[122,12,72,52],[123,14,72,52,"fileName"],[123,22,72,52],[123,24,72,52,"_jsxFileName"],[123,36,72,52],[124,14,72,52,"lineNumber"],[124,24,72,52],[125,14,72,52,"columnNumber"],[125,26,72,52],[126,12,72,52],[126,19,72,54],[127,10,72,55],[128,12,72,55,"fileName"],[128,20,72,55],[128,22,72,55,"_jsxFileName"],[128,34,72,55],[129,12,72,55,"lineNumber"],[129,22,72,55],[130,12,72,55,"columnNumber"],[130,24,72,55],[131,10,72,55],[131,17,73,16],[131,18,73,17],[131,33,76,10],[131,37,76,10,"_reactJsxDevRuntime"],[131,56,76,10],[131,57,76,10,"jsxDEV"],[131,63,76,10],[131,65,76,11,"_reactNative"],[131,77,76,27],[131,78,76,27,"TouchableOpacity"],[131,94,76,27],[132,12,77,12,"style"],[132,17,77,17],[132,19,77,19,"styles"],[132,25,77,25],[132,26,77,26,"addressContainer"],[132,42,77,43],[133,12,78,12,"onPress"],[133,19,78,19],[133,21,78,21,"handleCopyAddress"],[133,38,78,39],[134,12,79,12,"activeOpacity"],[134,25,79,25],[134,27,79,27],[134,30,79,31],[135,12,79,31,"children"],[135,20,79,31],[135,36,81,12],[135,40,81,12,"_reactJsxDevRuntime"],[135,59,81,12],[135,60,81,12,"jsxDEV"],[135,66,81,12],[135,68,81,13,"_reactNative"],[135,80,81,17],[135,81,81,17,"Text"],[135,85,81,17],[136,14,81,18,"style"],[136,19,81,23],[136,21,81,25,"styles"],[136,27,81,31],[136,28,81,32,"addressText"],[136,39,81,44],[137,14,81,44,"children"],[137,22,81,44],[137,24,81,46,"walletAddress"],[138,12,81,59],[139,14,81,59,"fileName"],[139,22,81,59],[139,24,81,59,"_jsxFileName"],[139,36,81,59],[140,14,81,59,"lineNumber"],[140,24,81,59],[141,14,81,59,"columnNumber"],[141,26,81,59],[142,12,81,59],[142,19,81,66],[142,20,81,67],[142,35,82,12],[142,39,82,12,"_reactJsxDevRuntime"],[142,58,82,12],[142,59,82,12,"jsxDEV"],[142,65,82,12],[142,67,82,13,"_expoVectorIcons"],[142,83,82,21],[142,84,82,21,"Ionicons"],[142,92,82,21],[143,14,82,22,"name"],[143,18,82,26],[143,20,82,27],[143,34,82,41],[144,14,82,42,"size"],[144,18,82,46],[144,20,82,48],[144,22,82,51],[145,14,82,52,"color"],[145,19,82,57],[145,21,82,59,"Colors"],[145,27,82,65],[145,28,82,65,"default"],[145,35,82,65],[145,36,82,66,"primary"],[146,12,82,74],[147,14,82,74,"fileName"],[147,22,82,74],[147,24,82,74,"_jsxFileName"],[147,36,82,74],[148,14,82,74,"lineNumber"],[148,24,82,74],[149,14,82,74,"columnNumber"],[149,26,82,74],[150,12,82,74],[150,19,82,76],[150,20,82,77],[151,10,82,77],[152,12,82,77,"fileName"],[152,20,82,77],[152,22,82,77,"_jsxFileName"],[152,34,82,77],[153,12,82,77,"lineNumber"],[153,22,82,77],[154,12,82,77,"columnNumber"],[154,24,82,77],[155,10,82,77],[155,17,83,28],[155,18,83,29],[155,33,84,10],[155,37,84,10,"_reactJsxDevRuntime"],[155,56,84,10],[155,57,84,10,"jsxDEV"],[155,63,84,10],[155,65,84,11,"_reactNative"],[155,77,84,15],[155,78,84,15,"Text"],[155,82,84,15],[156,12,84,16,"style"],[156,17,84,21],[156,19,84,23,"styles"],[156,25,84,29],[156,26,84,30,"tapToCopy"],[156,35,84,40],[157,12,84,40,"children"],[157,20,84,40],[157,22,84,41],[158,10,84,52],[159,12,84,52,"fileName"],[159,20,84,52],[159,22,84,52,"_jsxFileName"],[159,34,84,52],[160,12,84,52,"lineNumber"],[160,22,84,52],[161,12,84,52,"columnNumber"],[161,24,84,52],[162,10,84,52],[162,17,84,58],[162,18,84,59],[162,33,87,10],[162,37,87,10,"_reactJsxDevRuntime"],[162,56,87,10],[162,57,87,10,"jsxDEV"],[162,63,87,10],[162,65,87,11,"_reactNative"],[162,77,87,15],[162,78,87,15,"View"],[162,82,87,15],[163,12,87,16,"style"],[163,17,87,21],[163,19,87,23,"styles"],[163,25,87,29],[163,26,87,30,"networkBadge"],[163,38,87,43],[164,12,87,43,"children"],[164,20,87,43],[164,36,88,12],[164,40,88,12,"_reactJsxDevRuntime"],[164,59,88,12],[164,60,88,12,"jsxDEV"],[164,66,88,12],[164,68,88,13,"_expoVectorIcons"],[164,84,88,21],[164,85,88,21,"Ionicons"],[164,93,88,21],[165,14,88,22,"name"],[165,18,88,26],[165,20,88,27],[165,35,88,42],[166,14,88,43,"size"],[166,18,88,47],[166,20,88,49],[166,22,88,52],[167,14,88,53,"color"],[167,19,88,58],[167,21,88,59],[168,12,88,68],[169,14,88,68,"fileName"],[169,22,88,68],[169,24,88,68,"_jsxFileName"],[169,36,88,68],[170,14,88,68,"lineNumber"],[170,24,88,68],[171,14,88,68,"columnNumber"],[171,26,88,68],[172,12,88,68],[172,19,88,70],[172,20,88,71],[172,35,89,12],[172,39,89,12,"_reactJsxDevRuntime"],[172,58,89,12],[172,59,89,12,"jsxDEV"],[172,65,89,12],[172,67,89,13,"_reactNative"],[172,79,89,17],[172,80,89,17,"Text"],[172,84,89,17],[173,14,89,18,"style"],[173,19,89,23],[173,21,89,25,"styles"],[173,27,89,31],[173,28,89,32,"networkText"],[173,39,89,44],[174,14,89,44,"children"],[174,22,89,44],[174,25,89,46,"network"],[174,32,89,53],[174,34,89,54],[174,44,89,62],[175,12,89,62],[176,14,89,62,"fileName"],[176,22,89,62],[176,24,89,62,"_jsxFileName"],[176,36,89,62],[177,14,89,62,"lineNumber"],[177,24,89,62],[178,14,89,62,"columnNumber"],[178,26,89,62],[179,12,89,62],[179,19,89,68],[179,20,89,69],[180,10,89,69],[181,12,89,69,"fileName"],[181,20,89,69],[181,22,89,69,"_jsxFileName"],[181,34,89,69],[182,12,89,69,"lineNumber"],[182,22,89,69],[183,12,89,69,"columnNumber"],[183,24,89,69],[184,10,89,69],[184,17,90,16],[184,18,90,17],[184,33,93,10],[184,37,93,10,"_reactJsxDevRuntime"],[184,56,93,10],[184,57,93,10,"jsxDEV"],[184,63,93,10],[184,65,93,11,"_reactNative"],[184,77,93,27],[184,78,93,27,"TouchableOpacity"],[184,94,93,27],[185,12,93,28,"style"],[185,17,93,33],[185,19,93,35,"styles"],[185,25,93,41],[185,26,93,42,"shareButton"],[185,37,93,54],[186,12,93,55,"onPress"],[186,19,93,62],[186,21,93,64,"handleShareAddress"],[186,39,93,83],[187,12,93,83,"children"],[187,20,93,83],[187,36,94,12],[187,40,94,12,"_reactJsxDevRuntime"],[187,59,94,12],[187,60,94,12,"jsxDEV"],[187,66,94,12],[187,68,94,13,"_expoVectorIcons"],[187,84,94,21],[187,85,94,21,"Ionicons"],[187,93,94,21],[188,14,94,22,"name"],[188,18,94,26],[188,20,94,27],[188,35,94,42],[189,14,94,43,"size"],[189,18,94,47],[189,20,94,49],[189,22,94,52],[190,14,94,53,"color"],[190,19,94,58],[190,21,94,60,"Colors"],[190,27,94,66],[190,28,94,66,"default"],[190,35,94,66],[190,36,94,67,"textDark"],[191,12,94,76],[192,14,94,76,"fileName"],[192,22,94,76],[192,24,94,76,"_jsxFileName"],[192,36,94,76],[193,14,94,76,"lineNumber"],[193,24,94,76],[194,14,94,76,"columnNumber"],[194,26,94,76],[195,12,94,76],[195,19,94,78],[195,20,94,79],[195,35,95,12],[195,39,95,12,"_reactJsxDevRuntime"],[195,58,95,12],[195,59,95,12,"jsxDEV"],[195,65,95,12],[195,67,95,13,"_reactNative"],[195,79,95,17],[195,80,95,17,"Text"],[195,84,95,17],[196,14,95,18,"style"],[196,19,95,23],[196,21,95,25,"styles"],[196,27,95,31],[196,28,95,32,"shareButtonText"],[196,43,95,48],[197,14,95,48,"children"],[197,22,95,48],[197,24,95,49],[198,12,95,62],[199,14,95,62,"fileName"],[199,22,95,62],[199,24,95,62,"_jsxFileName"],[199,36,95,62],[200,14,95,62,"lineNumber"],[200,24,95,62],[201,14,95,62,"columnNumber"],[201,26,95,62],[202,12,95,62],[202,19,95,68],[202,20,95,69],[203,10,95,69],[204,12,95,69,"fileName"],[204,20,95,69],[204,22,95,69,"_jsxFileName"],[204,34,95,69],[205,12,95,69,"lineNumber"],[205,22,95,69],[206,12,95,69,"columnNumber"],[206,24,95,69],[207,10,95,69],[207,17,96,28],[207,18,96,29],[207,33,99,10],[207,37,99,10,"_reactJsxDevRuntime"],[207,56,99,10],[207,57,99,10,"jsxDEV"],[207,63,99,10],[207,65,99,11,"_reactNative"],[207,77,99,15],[207,78,99,15,"View"],[207,82,99,15],[208,12,99,16,"style"],[208,17,99,21],[208,19,99,23,"styles"],[208,25,99,29],[208,26,99,30,"warningBox"],[208,36,99,41],[209,12,99,41,"children"],[209,20,99,41],[209,36,100,12],[209,40,100,12,"_reactJsxDevRuntime"],[209,59,100,12],[209,60,100,12,"jsxDEV"],[209,66,100,12],[209,68,100,13,"_expoVectorIcons"],[209,84,100,21],[209,85,100,21,"Ionicons"],[209,93,100,21],[210,14,100,22,"name"],[210,18,100,26],[210,20,100,27],[210,37,100,44],[211,14,100,45,"size"],[211,18,100,49],[211,20,100,51],[211,22,100,54],[212,14,100,55,"color"],[212,19,100,60],[212,21,100,61],[213,12,100,70],[214,14,100,70,"fileName"],[214,22,100,70],[214,24,100,70,"_jsxFileName"],[214,36,100,70],[215,14,100,70,"lineNumber"],[215,24,100,70],[216,14,100,70,"columnNumber"],[216,26,100,70],[217,12,100,70],[217,19,100,72],[217,20,100,73],[217,35,101,12],[217,39,101,12,"_reactJsxDevRuntime"],[217,58,101,12],[217,59,101,12,"jsxDEV"],[217,65,101,12],[217,67,101,13,"_reactNative"],[217,79,101,17],[217,80,101,17,"Text"],[217,84,101,17],[218,14,101,18,"style"],[218,19,101,23],[218,21,101,25,"styles"],[218,27,101,31],[218,28,101,32,"warningText"],[218,39,101,44],[219,14,101,44,"children"],[219,22,101,44],[219,25,101,45],[219,37,102,24],[219,39,102,25,"token"],[219,44,102,30],[219,45,102,31,"symbol"],[219,51,102,37],[219,53,102,38],[219,75,102,58],[219,77,102,59,"network"],[219,84,102,66],[219,86,102,67],[219,96,103,12],[220,12,103,12],[221,14,103,12,"fileName"],[221,22,103,12],[221,24,103,12,"_jsxFileName"],[221,36,103,12],[222,14,103,12,"lineNumber"],[222,24,103,12],[223,14,103,12,"columnNumber"],[223,26,103,12],[224,12,103,12],[224,19,103,18],[224,20,103,19],[225,10,103,19],[226,12,103,19,"fileName"],[226,20,103,19],[226,22,103,19,"_jsxFileName"],[226,34,103,19],[227,12,103,19,"lineNumber"],[227,22,103,19],[228,12,103,19,"columnNumber"],[228,24,103,19],[229,10,103,19],[229,17,104,16],[229,18,104,17],[230,8,104,17],[231,10,104,17,"fileName"],[231,18,104,17],[231,20,104,17,"_jsxFileName"],[231,32,104,17],[232,10,104,17,"lineNumber"],[232,20,104,17],[233,10,104,17,"columnNumber"],[233,22,104,17],[234,8,104,17],[234,15,105,14],[235,6,105,15],[236,8,105,15,"fileName"],[236,16,105,15],[236,18,105,15,"_jsxFileName"],[236,30,105,15],[237,8,105,15,"lineNumber"],[237,18,105,15],[238,8,105,15,"columnNumber"],[238,20,105,15],[239,6,105,15],[239,13,106,12],[240,4,106,13],[241,6,106,13,"fileName"],[241,14,106,13],[241,16,106,13,"_jsxFileName"],[241,28,106,13],[242,6,106,13,"lineNumber"],[242,16,106,13],[243,6,106,13,"columnNumber"],[243,18,106,13],[244,4,106,13],[244,11,107,11],[244,12,107,12],[245,2,109,0],[246,2,109,1,"_c"],[246,4,109,1],[246,7,29,24,"ReceiveModal"],[246,19,29,36],[247,2,111,0],[247,6,111,6,"styles"],[247,12,111,12],[247,15,111,15,"StyleSheet"],[247,27,111,25],[247,28,111,25,"StyleSheet"],[247,38,111,25],[247,39,111,26,"create"],[247,45,111,32],[247,46,111,33],[248,4,112,2,"overlay"],[248,11,112,9],[248,13,112,11],[249,6,113,4,"flex"],[249,10,113,8],[249,12,113,10],[249,13,113,11],[250,6,114,4,"backgroundColor"],[250,21,114,19],[250,23,114,21],[250,43,114,41],[251,6,115,4,"justifyContent"],[251,20,115,18],[251,22,115,20],[251,30,115,28],[252,6,116,4,"alignItems"],[252,16,116,14],[252,18,116,16],[252,26,116,24],[253,6,117,4,"padding"],[253,13,117,11],[253,15,117,13,"Spacing"],[253,30,117,20],[253,31,117,20,"Spacing"],[253,38,117,20],[253,39,117,21,"lg"],[254,4,118,2],[254,5,118,3],[255,4,119,2,"modalContainer"],[255,18,119,16],[255,20,119,18],[256,6,120,4,"width"],[256,11,120,9],[256,13,120,11],[256,19,120,17],[257,6,121,4,"maxWidth"],[257,14,121,12],[257,16,121,14],[257,19,121,17],[258,6,122,4,"backgroundColor"],[258,21,122,19],[258,23,122,21],[258,32,122,30],[259,6,123,4,"borderRadius"],[259,18,123,16],[259,20,123,18,"BorderRadius"],[259,35,123,30],[259,36,123,30,"BorderRadius"],[259,48,123,30],[259,49,123,31,"xl"],[259,51,123,33],[260,6,124,4,"padding"],[260,13,124,11],[260,15,124,13,"Spacing"],[260,30,124,20],[260,31,124,20,"Spacing"],[260,38,124,20],[260,39,124,21,"xl"],[260,41,124,23],[261,6,125,4],[261,9,125,7,"Shadow"],[261,24,125,13],[261,25,125,13,"Shadow"],[261,31,125,13],[261,32,125,14,"medium"],[262,4,126,2],[262,5,126,3],[263,4,127,2,"closeButton"],[263,15,127,13],[263,17,127,15],[264,6,128,4,"position"],[264,14,128,12],[264,16,128,14],[264,26,128,24],[265,6,129,4,"top"],[265,9,129,7],[265,11,129,9,"Spacing"],[265,26,129,16],[265,27,129,16,"Spacing"],[265,34,129,16],[265,35,129,17,"md"],[265,37,129,19],[266,6,130,4,"right"],[266,11,130,9],[266,13,130,11,"Spacing"],[266,28,130,18],[266,29,130,18,"Spacing"],[266,36,130,18],[266,37,130,19,"md"],[266,39,130,21],[267,6,131,4,"zIndex"],[267,12,131,10],[267,14,131,12],[268,4,132,2],[268,5,132,3],[269,4,133,2,"tokenIcon"],[269,13,133,11],[269,15,133,13],[270,6,134,4,"width"],[270,11,134,9],[270,13,134,11],[270,15,134,13],[271,6,135,4,"height"],[271,12,135,10],[271,14,135,12],[271,16,135,14],[272,6,136,4,"alignSelf"],[272,15,136,13],[272,17,136,15],[272,25,136,23],[273,6,137,4,"marginTop"],[273,15,137,13],[273,17,137,15,"Spacing"],[273,32,137,22],[273,33,137,22,"Spacing"],[273,40,137,22],[273,41,137,23,"md"],[274,4,138,2],[274,5,138,3],[275,4,139,2,"title"],[275,9,139,7],[275,11,139,9],[276,6,140,4,"fontSize"],[276,14,140,12],[276,16,140,14,"Typography"],[276,31,140,24],[276,32,140,24,"Typography"],[276,42,140,24],[276,43,140,25,"sizes"],[276,48,140,30],[276,49,140,31,"xxl"],[276,52,140,34],[277,6,141,4,"fontWeight"],[277,16,141,14],[277,18,141,16,"Typography"],[277,33,141,26],[277,34,141,26,"Typography"],[277,44,141,26],[277,45,141,27,"weights"],[277,52,141,34],[277,53,141,35,"bold"],[277,57,141,39],[278,6,142,4,"color"],[278,11,142,9],[278,13,142,11,"Colors"],[278,19,142,17],[278,20,142,17,"default"],[278,27,142,17],[278,28,142,18,"textDark"],[278,36,142,26],[279,6,143,4,"textAlign"],[279,15,143,13],[279,17,143,15],[279,25,143,23],[280,6,144,4,"marginTop"],[280,15,144,13],[280,17,144,15,"Spacing"],[280,32,144,22],[280,33,144,22,"Spacing"],[280,40,144,22],[280,41,144,23,"sm"],[280,43,144,25],[281,6,145,4,"marginBottom"],[281,18,145,16],[281,20,145,18,"Spacing"],[281,35,145,25],[281,36,145,25,"Spacing"],[281,43,145,25],[281,44,145,26,"lg"],[282,4,146,2],[282,5,146,3],[283,4,147,2,"qrCard"],[283,10,147,8],[283,12,147,10],[284,6,148,4,"backgroundColor"],[284,21,148,19],[284,23,148,21],[284,32,148,30],[285,6,149,4,"borderRadius"],[285,18,149,16],[285,20,149,18,"BorderRadius"],[285,35,149,30],[285,36,149,30,"BorderRadius"],[285,48,149,30],[285,49,149,31,"lg"],[285,51,149,33],[286,6,150,4,"padding"],[286,13,150,11],[286,15,150,13,"Spacing"],[286,30,150,20],[286,31,150,20,"Spacing"],[286,38,150,20],[286,39,150,21,"lg"],[286,41,150,23],[287,6,151,4,"alignItems"],[287,16,151,14],[287,18,151,16],[287,26,151,24],[288,6,152,4,"justifyContent"],[288,20,152,18],[288,22,152,20],[288,30,152,28],[289,6,153,4],[289,9,153,7,"Shadow"],[289,24,153,13],[289,25,153,13,"Shadow"],[289,31,153,13],[289,32,153,14,"small"],[289,37,153,19],[290,6,154,4,"alignSelf"],[290,15,154,13],[290,17,154,15],[291,4,155,2],[291,5,155,3],[292,4,156,2,"addressContainer"],[292,20,156,18],[292,22,156,20],[293,6,157,4,"flexDirection"],[293,19,157,17],[293,21,157,19],[293,26,157,24],[294,6,158,4,"alignItems"],[294,16,158,14],[294,18,158,16],[294,26,158,24],[295,6,159,4,"justifyContent"],[295,20,159,18],[295,22,159,20],[295,30,159,28],[296,6,160,4,"backgroundColor"],[296,21,160,19],[296,23,160,21,"Colors"],[296,29,160,27],[296,30,160,27,"default"],[296,37,160,27],[296,38,160,28,"background"],[296,48,160,38],[297,6,161,4,"borderRadius"],[297,18,161,16],[297,20,161,18,"BorderRadius"],[297,35,161,30],[297,36,161,30,"BorderRadius"],[297,48,161,30],[297,49,161,31,"md"],[297,51,161,33],[298,6,162,4,"paddingHorizontal"],[298,23,162,21],[298,25,162,23,"Spacing"],[298,40,162,30],[298,41,162,30,"Spacing"],[298,48,162,30],[298,49,162,31,"md"],[298,51,162,33],[299,6,163,4,"paddingVertical"],[299,21,163,19],[299,23,163,21,"Spacing"],[299,38,163,28],[299,39,163,28,"Spacing"],[299,46,163,28],[299,47,163,29,"sm"],[299,49,163,31],[300,6,164,4,"marginTop"],[300,15,164,13],[300,17,164,15,"Spacing"],[300,32,164,22],[300,33,164,22,"Spacing"],[300,40,164,22],[300,41,164,23,"lg"],[301,4,165,2],[301,5,165,3],[302,4,166,2,"addressText"],[302,15,166,13],[302,17,166,15],[303,6,167,4,"fontSize"],[303,14,167,12],[303,16,167,14,"Typography"],[303,31,167,24],[303,32,167,24,"Typography"],[303,42,167,24],[303,43,167,25,"sizes"],[303,48,167,30],[303,49,167,31,"sm"],[303,51,167,33],[304,6,168,4,"fontFamily"],[304,16,168,14],[304,18,168,16],[304,29,168,27],[305,6,169,4,"color"],[305,11,169,9],[305,13,169,11,"Colors"],[305,19,169,17],[305,20,169,17,"default"],[305,27,169,17],[305,28,169,18,"textDark"],[305,36,169,26],[306,6,170,4,"marginRight"],[306,17,170,15],[306,19,170,17,"Spacing"],[306,34,170,24],[306,35,170,24,"Spacing"],[306,42,170,24],[306,43,170,25,"sm"],[307,4,171,2],[307,5,171,3],[308,4,172,2,"tapToCopy"],[308,13,172,11],[308,15,172,13],[309,6,173,4,"fontSize"],[309,14,173,12],[309,16,173,14,"Typography"],[309,31,173,24],[309,32,173,24,"Typography"],[309,42,173,24],[309,43,173,25,"sizes"],[309,48,173,30],[309,49,173,31,"xs"],[309,51,173,33],[310,6,174,4,"color"],[310,11,174,9],[310,13,174,11,"Colors"],[310,19,174,17],[310,20,174,17,"default"],[310,27,174,17],[310,28,174,18,"textLight"],[310,37,174,27],[311,6,175,4,"textAlign"],[311,15,175,13],[311,17,175,15],[311,25,175,23],[312,6,176,4,"marginTop"],[312,15,176,13],[312,17,176,15,"Spacing"],[312,32,176,22],[312,33,176,22,"Spacing"],[312,40,176,22],[312,41,176,23,"xs"],[313,4,177,2],[313,5,177,3],[314,4,178,2,"networkBadge"],[314,16,178,14],[314,18,178,16],[315,6,179,4,"flexDirection"],[315,19,179,17],[315,21,179,19],[315,26,179,24],[316,6,180,4,"alignItems"],[316,16,180,14],[316,18,180,16],[316,26,180,24],[317,6,181,4,"justifyContent"],[317,20,181,18],[317,22,181,20],[317,30,181,28],[318,6,182,4,"backgroundColor"],[318,21,182,19],[318,23,182,21],[318,32,182,30],[319,6,183,4,"borderRadius"],[319,18,183,16],[319,20,183,18,"BorderRadius"],[319,35,183,30],[319,36,183,30,"BorderRadius"],[319,48,183,30],[319,49,183,31,"md"],[319,51,183,33],[320,6,184,4,"paddingHorizontal"],[320,23,184,21],[320,25,184,23,"Spacing"],[320,40,184,30],[320,41,184,30,"Spacing"],[320,48,184,30],[320,49,184,31,"md"],[320,51,184,33],[321,6,185,4,"paddingVertical"],[321,21,185,19],[321,23,185,21,"Spacing"],[321,38,185,28],[321,39,185,28,"Spacing"],[321,46,185,28],[321,47,185,29,"sm"],[321,49,185,31],[322,6,186,4,"marginTop"],[322,15,186,13],[322,17,186,15,"Spacing"],[322,32,186,22],[322,33,186,22,"Spacing"],[322,40,186,22],[322,41,186,23,"lg"],[322,43,186,25],[323,6,187,4,"alignSelf"],[323,15,187,13],[323,17,187,15],[324,4,188,2],[324,5,188,3],[325,4,189,2,"networkText"],[325,15,189,13],[325,17,189,15],[326,6,190,4,"fontSize"],[326,14,190,12],[326,16,190,14,"Typography"],[326,31,190,24],[326,32,190,24,"Typography"],[326,42,190,24],[326,43,190,25,"sizes"],[326,48,190,30],[326,49,190,31,"md"],[326,51,190,33],[327,6,191,4,"fontWeight"],[327,16,191,14],[327,18,191,16,"Typography"],[327,33,191,26],[327,34,191,26,"Typography"],[327,44,191,26],[327,45,191,27,"weights"],[327,52,191,34],[327,53,191,35,"semibold"],[327,61,191,43],[328,6,192,4,"color"],[328,11,192,9],[328,13,192,11],[328,22,192,20],[329,6,193,4,"marginLeft"],[329,16,193,14],[329,18,193,16,"Spacing"],[329,33,193,23],[329,34,193,23,"Spacing"],[329,41,193,23],[329,42,193,24,"xs"],[330,4,194,2],[330,5,194,3],[331,4,195,2,"shareButton"],[331,15,195,13],[331,17,195,15],[332,6,196,4,"flexDirection"],[332,19,196,17],[332,21,196,19],[332,26,196,24],[333,6,197,4,"alignItems"],[333,16,197,14],[333,18,197,16],[333,26,197,24],[334,6,198,4,"justifyContent"],[334,20,198,18],[334,22,198,20],[334,30,198,28],[335,6,199,4,"backgroundColor"],[335,21,199,19],[335,23,199,21,"Colors"],[335,29,199,27],[335,30,199,27,"default"],[335,37,199,27],[335,38,199,28,"background"],[335,48,199,38],[336,6,200,4,"borderRadius"],[336,18,200,16],[336,20,200,18,"BorderRadius"],[336,35,200,30],[336,36,200,30,"BorderRadius"],[336,48,200,30],[336,49,200,31,"md"],[336,51,200,33],[337,6,201,4,"paddingVertical"],[337,21,201,19],[337,23,201,21,"Spacing"],[337,38,201,28],[337,39,201,28,"Spacing"],[337,46,201,28],[337,47,201,29,"md"],[337,49,201,31],[338,6,202,4,"marginTop"],[338,15,202,13],[338,17,202,15,"Spacing"],[338,32,202,22],[338,33,202,22,"Spacing"],[338,40,202,22],[338,41,202,23,"lg"],[339,4,203,2],[339,5,203,3],[340,4,204,2,"shareButtonText"],[340,19,204,17],[340,21,204,19],[341,6,205,4,"fontSize"],[341,14,205,12],[341,16,205,14,"Typography"],[341,31,205,24],[341,32,205,24,"Typography"],[341,42,205,24],[341,43,205,25,"sizes"],[341,48,205,30],[341,49,205,31,"md"],[341,51,205,33],[342,6,206,4,"fontWeight"],[342,16,206,14],[342,18,206,16,"Typography"],[342,33,206,26],[342,34,206,26,"Typography"],[342,44,206,26],[342,45,206,27,"weights"],[342,52,206,34],[342,53,206,35,"semibold"],[342,61,206,43],[343,6,207,4,"color"],[343,11,207,9],[343,13,207,11,"Colors"],[343,19,207,17],[343,20,207,17,"default"],[343,27,207,17],[343,28,207,18,"textDark"],[343,36,207,26],[344,6,208,4,"marginLeft"],[344,16,208,14],[344,18,208,16,"Spacing"],[344,33,208,23],[344,34,208,23,"Spacing"],[344,41,208,23],[344,42,208,24,"sm"],[345,4,209,2],[345,5,209,3],[346,4,210,2,"warningBox"],[346,14,210,12],[346,16,210,14],[347,6,211,4,"flexDirection"],[347,19,211,17],[347,21,211,19],[347,26,211,24],[348,6,212,4,"alignItems"],[348,16,212,14],[348,18,212,16],[348,26,212,24],[349,6,213,4,"backgroundColor"],[349,21,213,19],[349,23,213,21],[349,32,213,30],[350,6,214,4,"borderRadius"],[350,18,214,16],[350,20,214,18,"BorderRadius"],[350,35,214,30],[350,36,214,30,"BorderRadius"],[350,48,214,30],[350,49,214,31,"md"],[350,51,214,33],[351,6,215,4,"padding"],[351,13,215,11],[351,15,215,13,"Spacing"],[351,30,215,20],[351,31,215,20,"Spacing"],[351,38,215,20],[351,39,215,21,"md"],[351,41,215,23],[352,6,216,4,"marginTop"],[352,15,216,13],[352,17,216,15,"Spacing"],[352,32,216,22],[352,33,216,22,"Spacing"],[352,40,216,22],[352,41,216,23,"lg"],[353,4,217,2],[353,5,217,3],[354,4,218,2,"warningText"],[354,15,218,13],[354,17,218,15],[355,6,219,4,"flex"],[355,10,219,8],[355,12,219,10],[355,13,219,11],[356,6,220,4,"fontSize"],[356,14,220,12],[356,16,220,14,"Typography"],[356,31,220,24],[356,32,220,24,"Typography"],[356,42,220,24],[356,43,220,25,"sizes"],[356,48,220,30],[356,49,220,31,"sm"],[356,51,220,33],[357,6,221,4,"color"],[357,11,221,9],[357,13,221,11],[357,22,221,20],[358,6,222,4,"marginLeft"],[358,16,222,14],[358,18,222,16,"Spacing"],[358,33,222,23],[358,34,222,23,"Spacing"],[358,41,222,23],[358,42,222,24,"sm"],[359,4,223,2],[360,2,224,0],[360,3,224,1],[360,4,224,2],[361,2,224,3],[361,6,224,3,"_c"],[361,8,224,3],[362,2,224,3,"$RefreshReg$"],[362,14,224,3],[362,15,224,3,"_c"],[362,17,224,3],[363,0,224,3],[363,3]],"functionMap":{"names":["<global>","ReceiveModal","handleCopyAddress","handleShareAddress"],"mappings":"AAA;eC4B;4BCK;GDG;6BEE;GFS;CD6D"},"hasCjsExports":false},"type":"js/module"}]}