├── .github └── workflows │ ├── build_android.yml │ ├── build_ios.yml │ ├── build_linux.yml │ ├── build_macos.yml │ └── build_windows.yml ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── adb_install.sh ├── android_background_service ├── service.go ├── service_android.go ├── worker_android.jar └── worker_android.java ├── animation ├── animation.go ├── button.go └── transform.go ├── app_db ├── app_db.go ├── ipfs_gateways.go ├── nodes.go ├── order_column │ └── order_column.go ├── schema_version │ └── schema_version.go └── wallets.go ├── app_icons ├── badge.go ├── badge.svg ├── donation.go ├── donation.svg ├── ethereum.go ├── ethereum.svg ├── filter.go ├── filter.svg ├── loading_spinner.go ├── loading_spinner.svg ├── qr_code_scanner.go ├── qr_code_scanner.svg ├── readme.txt ├── swap.go └── swap.svg ├── app_instance └── app_instance.go ├── appicon.png ├── assets ├── assets.go ├── fonts │ ├── GoNotoKurrent-Bold.ttf │ └── GoNotoKurrent-Regular.ttf ├── images │ ├── arrow_down_arc.png │ ├── arrow_down_arc_white.png │ ├── arrow_up_arc.png │ ├── arrow_up_arc_white.png │ ├── coinbase.png │ ├── coinbase_white.png │ ├── dero.jpg │ ├── dero_bg.png │ ├── dero_polygon.png │ ├── lang │ │ ├── de.png │ │ ├── en.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── it.png │ │ ├── jp.png │ │ ├── ko.png │ │ ├── nl.png │ │ ├── pt.png │ │ ├── ro.png │ │ ├── ru.png │ │ └── zh.png │ ├── manage_files.png │ ├── manage_files_white.png │ ├── token.png │ └── token_white.png └── lang │ ├── de.json │ ├── es.json │ ├── fr.json │ ├── it.json │ ├── jp.json │ ├── ko.json │ ├── nl.json │ ├── pt.json │ ├── readme.txt │ ├── ro.json │ ├── ru.json │ ├── zh_s.json │ └── zh_t.json ├── bridge_metamask ├── bridge_metamask.go └── web │ ├── dist │ ├── fonts │ │ └── Roboto-Regular.ttf │ ├── images │ │ └── metamask.png │ ├── index.css │ ├── index.css.map │ ├── index.html │ ├── index.js │ └── index.js.map │ ├── package-lock.json │ ├── package.json │ └── src │ ├── bridge.js │ ├── index.js │ └── style.js ├── caching └── caching.go ├── changes.txt ├── cmd.txt ├── components ├── button.go ├── drag_items.go ├── fit.go ├── hold_press.go ├── image.go ├── input.go ├── modal.go ├── notification.go ├── progress_bar.go └── tab_bars.go ├── containers ├── bottom_bar │ └── bottom_bar.go ├── build_tx_modal │ └── build_tx_modal.go ├── confirm_modal │ └── confirm_modal.go ├── containers.go ├── image_modal │ └── image_modal.go ├── listselect_modal │ └── listselect_modal.go ├── node_status_bar │ └── node_status_bar.go ├── notification_modal │ └── notification_modal.go ├── password_modal │ └── password_modal.go ├── prompt_modal │ └── prompt_modal.go ├── qrcode_scan_modal │ └── qrcode_scan_modal.go ├── recent_txs_modal │ └── recent_txs_modal.go └── xswd_perm_modal │ └── xswd_perm_modal.go ├── g45w_demo.gif ├── g45w_demo_old.gif ├── go.mod ├── go.sum ├── integrated_node └── integrated_node.go ├── lang ├── lang.go └── time_ago.go ├── load_state.go ├── lookup_table ├── create │ └── main.go ├── lookup_table └── lookup_table.go ├── main.go ├── make_lang_dict.py ├── multi_fetch └── multi_fetch.go ├── node_manager └── node_manager.go ├── pages ├── node │ ├── add_node_form.go │ ├── edit_node_form.go │ ├── integrated_node.go │ ├── page.go │ ├── remote_node.go │ └── select_node.go ├── pages.go ├── settings │ ├── add_ipfs_gateway.go │ ├── app_info.go │ ├── donation.go │ ├── edit_ipfs_gateway.go │ ├── ipfs_gateways.go │ ├── main.go │ └── page.go ├── wallet │ ├── add_sc_form.go │ ├── balance_tokens.go │ ├── contact_form.go │ ├── contacts.go │ ├── dex_add_liquidity.go │ ├── dex_pairs.go │ ├── dex_rem_liquidity.go │ ├── dex_sc_bridge_in.go │ ├── dex_sc_bridge_out.go │ ├── dex_swap.go │ ├── page.go │ ├── receive_form.go │ ├── register_wallet.go │ ├── sc_explorer.go │ ├── sc_folders.go │ ├── sc_function.go │ ├── sc_token.go │ ├── sc_view_code.go │ ├── scan_collection.go │ ├── send_form.go │ ├── send_options_form.go │ ├── service_names.go │ ├── settings.go │ ├── transaction.go │ ├── wallet_info.go │ ├── xswd_app.go │ └── xswd_manage.go └── wallet_select │ ├── create_wallet_disk_form.go │ ├── create_wallet_fastreg_form.go │ ├── create_wallet_form.go │ ├── create_wallet_hexseed_form.go │ ├── create_wallet_seed_form.go │ ├── page.go │ └── select_wallet.go ├── prefabs ├── divider.go ├── header.go ├── image_hover_click.go ├── info_row.go ├── input.go ├── lang_selector.go ├── listitem_select.go ├── ringsize_selector.go ├── textfield.go └── theme_selector.go ├── registration ├── fast.go └── normal.go ├── router ├── page.go └── router.go ├── sc ├── dex_sc │ ├── pair.go │ └── token.go ├── donation.bas ├── g45_sc │ ├── g45_at.go │ ├── g45_c.go │ ├── g45_fat.go │ ├── g45_nft.go │ └── json_metadata.go ├── sc.go └── unknown_sc │ └── token.go ├── settings └── settings.go ├── svg_to_iconvg └── svg_to_iconvg.go ├── theme ├── blue.go ├── dark.go ├── light.go ├── theme.go └── vars.go ├── utils ├── cpu.go ├── cpu_ios.go ├── force_active_loop.go └── utils.go └── wallet_manager ├── contacts.go ├── outgoing_txs.go ├── settings.go ├── tokens.go ├── transfers.go └── wallet.go /.github/workflows/build_android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.github/workflows/build_android.yml -------------------------------------------------------------------------------- /.github/workflows/build_ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.github/workflows/build_ios.yml -------------------------------------------------------------------------------- /.github/workflows/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.github/workflows/build_linux.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.github/workflows/build_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | __debug_bin.exe 3 | *.syso 4 | node_modules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/README.md -------------------------------------------------------------------------------- /adb_install.sh: -------------------------------------------------------------------------------- 1 | adb install ./build/g45w_android_arm64.apk -------------------------------------------------------------------------------- /android_background_service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/android_background_service/service.go -------------------------------------------------------------------------------- /android_background_service/service_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/android_background_service/service_android.go -------------------------------------------------------------------------------- /android_background_service/worker_android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/android_background_service/worker_android.jar -------------------------------------------------------------------------------- /android_background_service/worker_android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/android_background_service/worker_android.java -------------------------------------------------------------------------------- /animation/animation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/animation/animation.go -------------------------------------------------------------------------------- /animation/button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/animation/button.go -------------------------------------------------------------------------------- /animation/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/animation/transform.go -------------------------------------------------------------------------------- /app_db/app_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/app_db.go -------------------------------------------------------------------------------- /app_db/ipfs_gateways.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/ipfs_gateways.go -------------------------------------------------------------------------------- /app_db/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/nodes.go -------------------------------------------------------------------------------- /app_db/order_column/order_column.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/order_column/order_column.go -------------------------------------------------------------------------------- /app_db/schema_version/schema_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/schema_version/schema_version.go -------------------------------------------------------------------------------- /app_db/wallets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_db/wallets.go -------------------------------------------------------------------------------- /app_icons/badge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/badge.go -------------------------------------------------------------------------------- /app_icons/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/badge.svg -------------------------------------------------------------------------------- /app_icons/donation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/donation.go -------------------------------------------------------------------------------- /app_icons/donation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/donation.svg -------------------------------------------------------------------------------- /app_icons/ethereum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/ethereum.go -------------------------------------------------------------------------------- /app_icons/ethereum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/ethereum.svg -------------------------------------------------------------------------------- /app_icons/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/filter.go -------------------------------------------------------------------------------- /app_icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/filter.svg -------------------------------------------------------------------------------- /app_icons/loading_spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/loading_spinner.go -------------------------------------------------------------------------------- /app_icons/loading_spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/loading_spinner.svg -------------------------------------------------------------------------------- /app_icons/qr_code_scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/qr_code_scanner.go -------------------------------------------------------------------------------- /app_icons/qr_code_scanner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/qr_code_scanner.svg -------------------------------------------------------------------------------- /app_icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/readme.txt -------------------------------------------------------------------------------- /app_icons/swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/swap.go -------------------------------------------------------------------------------- /app_icons/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_icons/swap.svg -------------------------------------------------------------------------------- /app_instance/app_instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/app_instance/app_instance.go -------------------------------------------------------------------------------- /appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/appicon.png -------------------------------------------------------------------------------- /assets/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/assets.go -------------------------------------------------------------------------------- /assets/fonts/GoNotoKurrent-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/fonts/GoNotoKurrent-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/GoNotoKurrent-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/fonts/GoNotoKurrent-Regular.ttf -------------------------------------------------------------------------------- /assets/images/arrow_down_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/arrow_down_arc.png -------------------------------------------------------------------------------- /assets/images/arrow_down_arc_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/arrow_down_arc_white.png -------------------------------------------------------------------------------- /assets/images/arrow_up_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/arrow_up_arc.png -------------------------------------------------------------------------------- /assets/images/arrow_up_arc_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/arrow_up_arc_white.png -------------------------------------------------------------------------------- /assets/images/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/coinbase.png -------------------------------------------------------------------------------- /assets/images/coinbase_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/coinbase_white.png -------------------------------------------------------------------------------- /assets/images/dero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/dero.jpg -------------------------------------------------------------------------------- /assets/images/dero_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/dero_bg.png -------------------------------------------------------------------------------- /assets/images/dero_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/dero_polygon.png -------------------------------------------------------------------------------- /assets/images/lang/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/de.png -------------------------------------------------------------------------------- /assets/images/lang/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/en.png -------------------------------------------------------------------------------- /assets/images/lang/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/es.png -------------------------------------------------------------------------------- /assets/images/lang/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/fr.png -------------------------------------------------------------------------------- /assets/images/lang/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/it.png -------------------------------------------------------------------------------- /assets/images/lang/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/jp.png -------------------------------------------------------------------------------- /assets/images/lang/ko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/ko.png -------------------------------------------------------------------------------- /assets/images/lang/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/nl.png -------------------------------------------------------------------------------- /assets/images/lang/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/pt.png -------------------------------------------------------------------------------- /assets/images/lang/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/ro.png -------------------------------------------------------------------------------- /assets/images/lang/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/ru.png -------------------------------------------------------------------------------- /assets/images/lang/zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/lang/zh.png -------------------------------------------------------------------------------- /assets/images/manage_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/manage_files.png -------------------------------------------------------------------------------- /assets/images/manage_files_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/manage_files_white.png -------------------------------------------------------------------------------- /assets/images/token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/token.png -------------------------------------------------------------------------------- /assets/images/token_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/images/token_white.png -------------------------------------------------------------------------------- /assets/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/de.json -------------------------------------------------------------------------------- /assets/lang/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/es.json -------------------------------------------------------------------------------- /assets/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/fr.json -------------------------------------------------------------------------------- /assets/lang/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/it.json -------------------------------------------------------------------------------- /assets/lang/jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/jp.json -------------------------------------------------------------------------------- /assets/lang/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/ko.json -------------------------------------------------------------------------------- /assets/lang/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/nl.json -------------------------------------------------------------------------------- /assets/lang/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/pt.json -------------------------------------------------------------------------------- /assets/lang/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/readme.txt -------------------------------------------------------------------------------- /assets/lang/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/ro.json -------------------------------------------------------------------------------- /assets/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/ru.json -------------------------------------------------------------------------------- /assets/lang/zh_s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/zh_s.json -------------------------------------------------------------------------------- /assets/lang/zh_t.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/assets/lang/zh_t.json -------------------------------------------------------------------------------- /bridge_metamask/bridge_metamask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/bridge_metamask.go -------------------------------------------------------------------------------- /bridge_metamask/web/dist/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /bridge_metamask/web/dist/images/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/images/metamask.png -------------------------------------------------------------------------------- /bridge_metamask/web/dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/index.css -------------------------------------------------------------------------------- /bridge_metamask/web/dist/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/index.css.map -------------------------------------------------------------------------------- /bridge_metamask/web/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/index.html -------------------------------------------------------------------------------- /bridge_metamask/web/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/index.js -------------------------------------------------------------------------------- /bridge_metamask/web/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/dist/index.js.map -------------------------------------------------------------------------------- /bridge_metamask/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/package-lock.json -------------------------------------------------------------------------------- /bridge_metamask/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/package.json -------------------------------------------------------------------------------- /bridge_metamask/web/src/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/src/bridge.js -------------------------------------------------------------------------------- /bridge_metamask/web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/src/index.js -------------------------------------------------------------------------------- /bridge_metamask/web/src/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/bridge_metamask/web/src/style.js -------------------------------------------------------------------------------- /caching/caching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/caching/caching.go -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/changes.txt -------------------------------------------------------------------------------- /cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/cmd.txt -------------------------------------------------------------------------------- /components/button.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/button.go -------------------------------------------------------------------------------- /components/drag_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/drag_items.go -------------------------------------------------------------------------------- /components/fit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/fit.go -------------------------------------------------------------------------------- /components/hold_press.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/hold_press.go -------------------------------------------------------------------------------- /components/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/image.go -------------------------------------------------------------------------------- /components/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/input.go -------------------------------------------------------------------------------- /components/modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/modal.go -------------------------------------------------------------------------------- /components/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/notification.go -------------------------------------------------------------------------------- /components/progress_bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/progress_bar.go -------------------------------------------------------------------------------- /components/tab_bars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/components/tab_bars.go -------------------------------------------------------------------------------- /containers/bottom_bar/bottom_bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/bottom_bar/bottom_bar.go -------------------------------------------------------------------------------- /containers/build_tx_modal/build_tx_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/build_tx_modal/build_tx_modal.go -------------------------------------------------------------------------------- /containers/confirm_modal/confirm_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/confirm_modal/confirm_modal.go -------------------------------------------------------------------------------- /containers/containers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/containers.go -------------------------------------------------------------------------------- /containers/image_modal/image_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/image_modal/image_modal.go -------------------------------------------------------------------------------- /containers/listselect_modal/listselect_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/listselect_modal/listselect_modal.go -------------------------------------------------------------------------------- /containers/node_status_bar/node_status_bar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/node_status_bar/node_status_bar.go -------------------------------------------------------------------------------- /containers/notification_modal/notification_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/notification_modal/notification_modal.go -------------------------------------------------------------------------------- /containers/password_modal/password_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/password_modal/password_modal.go -------------------------------------------------------------------------------- /containers/prompt_modal/prompt_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/prompt_modal/prompt_modal.go -------------------------------------------------------------------------------- /containers/qrcode_scan_modal/qrcode_scan_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/qrcode_scan_modal/qrcode_scan_modal.go -------------------------------------------------------------------------------- /containers/recent_txs_modal/recent_txs_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/recent_txs_modal/recent_txs_modal.go -------------------------------------------------------------------------------- /containers/xswd_perm_modal/xswd_perm_modal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/containers/xswd_perm_modal/xswd_perm_modal.go -------------------------------------------------------------------------------- /g45w_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/g45w_demo.gif -------------------------------------------------------------------------------- /g45w_demo_old.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/g45w_demo_old.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/go.sum -------------------------------------------------------------------------------- /integrated_node/integrated_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/integrated_node/integrated_node.go -------------------------------------------------------------------------------- /lang/lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/lang/lang.go -------------------------------------------------------------------------------- /lang/time_ago.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/lang/time_ago.go -------------------------------------------------------------------------------- /load_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/load_state.go -------------------------------------------------------------------------------- /lookup_table/create/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/lookup_table/create/main.go -------------------------------------------------------------------------------- /lookup_table/lookup_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/lookup_table/lookup_table -------------------------------------------------------------------------------- /lookup_table/lookup_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/lookup_table/lookup_table.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/main.go -------------------------------------------------------------------------------- /make_lang_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/make_lang_dict.py -------------------------------------------------------------------------------- /multi_fetch/multi_fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/multi_fetch/multi_fetch.go -------------------------------------------------------------------------------- /node_manager/node_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/node_manager/node_manager.go -------------------------------------------------------------------------------- /pages/node/add_node_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/add_node_form.go -------------------------------------------------------------------------------- /pages/node/edit_node_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/edit_node_form.go -------------------------------------------------------------------------------- /pages/node/integrated_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/integrated_node.go -------------------------------------------------------------------------------- /pages/node/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/page.go -------------------------------------------------------------------------------- /pages/node/remote_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/remote_node.go -------------------------------------------------------------------------------- /pages/node/select_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/node/select_node.go -------------------------------------------------------------------------------- /pages/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/pages.go -------------------------------------------------------------------------------- /pages/settings/add_ipfs_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/add_ipfs_gateway.go -------------------------------------------------------------------------------- /pages/settings/app_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/app_info.go -------------------------------------------------------------------------------- /pages/settings/donation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/donation.go -------------------------------------------------------------------------------- /pages/settings/edit_ipfs_gateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/edit_ipfs_gateway.go -------------------------------------------------------------------------------- /pages/settings/ipfs_gateways.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/ipfs_gateways.go -------------------------------------------------------------------------------- /pages/settings/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/main.go -------------------------------------------------------------------------------- /pages/settings/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/settings/page.go -------------------------------------------------------------------------------- /pages/wallet/add_sc_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/add_sc_form.go -------------------------------------------------------------------------------- /pages/wallet/balance_tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/balance_tokens.go -------------------------------------------------------------------------------- /pages/wallet/contact_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/contact_form.go -------------------------------------------------------------------------------- /pages/wallet/contacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/contacts.go -------------------------------------------------------------------------------- /pages/wallet/dex_add_liquidity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_add_liquidity.go -------------------------------------------------------------------------------- /pages/wallet/dex_pairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_pairs.go -------------------------------------------------------------------------------- /pages/wallet/dex_rem_liquidity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_rem_liquidity.go -------------------------------------------------------------------------------- /pages/wallet/dex_sc_bridge_in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_sc_bridge_in.go -------------------------------------------------------------------------------- /pages/wallet/dex_sc_bridge_out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_sc_bridge_out.go -------------------------------------------------------------------------------- /pages/wallet/dex_swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/dex_swap.go -------------------------------------------------------------------------------- /pages/wallet/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/page.go -------------------------------------------------------------------------------- /pages/wallet/receive_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/receive_form.go -------------------------------------------------------------------------------- /pages/wallet/register_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/register_wallet.go -------------------------------------------------------------------------------- /pages/wallet/sc_explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/sc_explorer.go -------------------------------------------------------------------------------- /pages/wallet/sc_folders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/sc_folders.go -------------------------------------------------------------------------------- /pages/wallet/sc_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/sc_function.go -------------------------------------------------------------------------------- /pages/wallet/sc_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/sc_token.go -------------------------------------------------------------------------------- /pages/wallet/sc_view_code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/sc_view_code.go -------------------------------------------------------------------------------- /pages/wallet/scan_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/scan_collection.go -------------------------------------------------------------------------------- /pages/wallet/send_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/send_form.go -------------------------------------------------------------------------------- /pages/wallet/send_options_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/send_options_form.go -------------------------------------------------------------------------------- /pages/wallet/service_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/service_names.go -------------------------------------------------------------------------------- /pages/wallet/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/settings.go -------------------------------------------------------------------------------- /pages/wallet/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/transaction.go -------------------------------------------------------------------------------- /pages/wallet/wallet_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/wallet_info.go -------------------------------------------------------------------------------- /pages/wallet/xswd_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/xswd_app.go -------------------------------------------------------------------------------- /pages/wallet/xswd_manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet/xswd_manage.go -------------------------------------------------------------------------------- /pages/wallet_select/create_wallet_disk_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/create_wallet_disk_form.go -------------------------------------------------------------------------------- /pages/wallet_select/create_wallet_fastreg_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/create_wallet_fastreg_form.go -------------------------------------------------------------------------------- /pages/wallet_select/create_wallet_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/create_wallet_form.go -------------------------------------------------------------------------------- /pages/wallet_select/create_wallet_hexseed_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/create_wallet_hexseed_form.go -------------------------------------------------------------------------------- /pages/wallet_select/create_wallet_seed_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/create_wallet_seed_form.go -------------------------------------------------------------------------------- /pages/wallet_select/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/page.go -------------------------------------------------------------------------------- /pages/wallet_select/select_wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/pages/wallet_select/select_wallet.go -------------------------------------------------------------------------------- /prefabs/divider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/divider.go -------------------------------------------------------------------------------- /prefabs/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/header.go -------------------------------------------------------------------------------- /prefabs/image_hover_click.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/image_hover_click.go -------------------------------------------------------------------------------- /prefabs/info_row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/info_row.go -------------------------------------------------------------------------------- /prefabs/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/input.go -------------------------------------------------------------------------------- /prefabs/lang_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/lang_selector.go -------------------------------------------------------------------------------- /prefabs/listitem_select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/listitem_select.go -------------------------------------------------------------------------------- /prefabs/ringsize_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/ringsize_selector.go -------------------------------------------------------------------------------- /prefabs/textfield.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/textfield.go -------------------------------------------------------------------------------- /prefabs/theme_selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/prefabs/theme_selector.go -------------------------------------------------------------------------------- /registration/fast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/registration/fast.go -------------------------------------------------------------------------------- /registration/normal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/registration/normal.go -------------------------------------------------------------------------------- /router/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/router/page.go -------------------------------------------------------------------------------- /router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/router/router.go -------------------------------------------------------------------------------- /sc/dex_sc/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/dex_sc/pair.go -------------------------------------------------------------------------------- /sc/dex_sc/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/dex_sc/token.go -------------------------------------------------------------------------------- /sc/donation.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/donation.bas -------------------------------------------------------------------------------- /sc/g45_sc/g45_at.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/g45_sc/g45_at.go -------------------------------------------------------------------------------- /sc/g45_sc/g45_c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/g45_sc/g45_c.go -------------------------------------------------------------------------------- /sc/g45_sc/g45_fat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/g45_sc/g45_fat.go -------------------------------------------------------------------------------- /sc/g45_sc/g45_nft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/g45_sc/g45_nft.go -------------------------------------------------------------------------------- /sc/g45_sc/json_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/g45_sc/json_metadata.go -------------------------------------------------------------------------------- /sc/sc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/sc.go -------------------------------------------------------------------------------- /sc/unknown_sc/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/sc/unknown_sc/token.go -------------------------------------------------------------------------------- /settings/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/settings/settings.go -------------------------------------------------------------------------------- /svg_to_iconvg/svg_to_iconvg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/svg_to_iconvg/svg_to_iconvg.go -------------------------------------------------------------------------------- /theme/blue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/theme/blue.go -------------------------------------------------------------------------------- /theme/dark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/theme/dark.go -------------------------------------------------------------------------------- /theme/light.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/theme/light.go -------------------------------------------------------------------------------- /theme/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/theme/theme.go -------------------------------------------------------------------------------- /theme/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/theme/vars.go -------------------------------------------------------------------------------- /utils/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/utils/cpu.go -------------------------------------------------------------------------------- /utils/cpu_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/utils/cpu_ios.go -------------------------------------------------------------------------------- /utils/force_active_loop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/utils/force_active_loop.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/utils/utils.go -------------------------------------------------------------------------------- /wallet_manager/contacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/contacts.go -------------------------------------------------------------------------------- /wallet_manager/outgoing_txs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/outgoing_txs.go -------------------------------------------------------------------------------- /wallet_manager/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/settings.go -------------------------------------------------------------------------------- /wallet_manager/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/tokens.go -------------------------------------------------------------------------------- /wallet_manager/transfers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/transfers.go -------------------------------------------------------------------------------- /wallet_manager/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g45t345rt/g45w/HEAD/wallet_manager/wallet.go --------------------------------------------------------------------------------