├── .gitignore ├── .gitmodules ├── AgamaApp-windows.md ├── LICENSE ├── README.md ├── assets ├── BitRock Installer Files │ ├── IgaunaApp-Linux.xml │ ├── IgaunaApp-OSX.xml │ └── IgaunaApp-Win.xml ├── deps │ └── confs │ │ ├── .tmpmarker │ │ ├── ANC_peers.txt │ │ ├── BLK_peers.txt │ │ ├── BTCD_peers.txt │ │ ├── BTC_peers.txt │ │ ├── BTM_peers.txt │ │ ├── CARB_peers.txt │ │ ├── DGB_peers.txt │ │ ├── DOGE_peers.txt │ │ ├── EAC_peers.txt │ │ ├── FRK_peers.txt │ │ ├── GAME_peers.txt │ │ ├── KMD_peers.txt │ │ ├── LTC_peers.txt │ │ ├── MZC_peers.txt │ │ ├── REVS_peers.txt │ │ ├── SXC_peers.txt │ │ ├── SYS_peers.txt │ │ ├── TAZ_peers.txt │ │ ├── UNO_peers.txt │ │ ├── VIA_peers.txt │ │ ├── ZEC_peers.txt │ │ ├── ZET_peers.txt │ │ └── iguana.conf ├── icons │ ├── agama_app_icon.icns │ ├── agama_app_icon.ico │ └── agama_icons │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 64x64.png │ │ ├── 96x96.png │ │ ├── agama_app_icon.icns │ │ └── agama_app_icon.ico ├── installer_imgs │ ├── Agama_installer_splash_image.png │ ├── Agama_installer_wizard_image.png │ ├── Iguana_installer_splash_image.png │ ├── Iguana_installer_wizard_image.png │ ├── supernet-agama-logo.png │ └── supernet-iguana-logo.png └── js │ ├── iguana.js │ └── startup.js ├── binary_artifacts.sh ├── binary_artifacts_mac.sh ├── check_submodule.sh ├── gui └── startup │ ├── agama-instance-error.html │ ├── app-closing.html │ ├── app-settings.html │ └── index.html ├── main.js ├── make-deb.js ├── make-patch.sh ├── make-rpm.js ├── package.json ├── private ├── mainmenu.js └── setconf.js ├── routes ├── appConfig.js ├── electrumjs │ ├── electrumServers.js │ ├── electrumjs.core.js │ ├── electrumjs.networks.js │ ├── electrumjs.txdecoder-2bytes.js │ ├── electrumjs.txdecoder-pos.js │ └── electrumjs.txdecoder.js ├── md5.js ├── nativeCoind.js ├── ports.js ├── shepherd.js └── shepherd │ ├── addCoinShortcuts.js │ ├── appInfo.js │ ├── auth.js │ ├── binsUtils.js │ ├── coindWalletKeys.js │ ├── coins.js │ ├── coinsList.js │ ├── confMaxconnections.js │ ├── config.js │ ├── daemonControl.js │ ├── dashboardUpdate.js │ ├── debugLog.js │ ├── dex │ ├── coind.js │ ├── coins.json │ ├── electrumServersList.js │ ├── mmControl.js │ └── mmRequest.js │ ├── downloadBins.js │ ├── downloadPatch.js │ ├── downloadUtil.js │ ├── downloadZcparams.js │ ├── elections.js │ ├── electrum │ ├── auth.js │ ├── balance.js │ ├── block.js │ ├── coins.js │ ├── createtx-multi.js │ ├── createtx-split.js │ ├── createtx.js │ ├── estimate.js │ ├── interest.js │ ├── keys.js │ ├── listunspent.js │ ├── merkle.js │ ├── network.js │ └── transactions.js │ ├── explorer │ ├── overview.js │ └── remoteExplorers.js │ ├── init.js │ ├── kickstart.js │ ├── log.js │ ├── paths.js │ ├── pin.js │ ├── quitDaemon.js │ └── rpc.js ├── version ├── version_build └── windeps ├── CopyWinDepsFiles.bat ├── ReadMe.md ├── x64 ├── ucrtbased.dll └── vcruntime140d.dll └── x86 ├── ucrtbased.dll └── vcruntime140d.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/.gitmodules -------------------------------------------------------------------------------- /AgamaApp-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/AgamaApp-windows.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/README.md -------------------------------------------------------------------------------- /assets/BitRock Installer Files/IgaunaApp-Linux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/BitRock Installer Files/IgaunaApp-Linux.xml -------------------------------------------------------------------------------- /assets/BitRock Installer Files/IgaunaApp-OSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/BitRock Installer Files/IgaunaApp-OSX.xml -------------------------------------------------------------------------------- /assets/BitRock Installer Files/IgaunaApp-Win.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/BitRock Installer Files/IgaunaApp-Win.xml -------------------------------------------------------------------------------- /assets/deps/confs/.tmpmarker: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/deps/confs/ANC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/ANC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/BLK_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/BLK_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/BTCD_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/BTCD_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/BTC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/BTC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/BTM_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/BTM_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/CARB_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/CARB_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/DGB_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/DGB_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/DOGE_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/DOGE_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/EAC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/EAC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/FRK_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/FRK_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/GAME_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/GAME_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/KMD_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/KMD_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/LTC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/LTC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/MZC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/MZC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/REVS_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/REVS_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/SXC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/SXC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/SYS_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/SYS_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/TAZ_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/TAZ_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/UNO_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/UNO_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/VIA_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/VIA_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/ZEC_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/ZEC_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/ZET_peers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/ZET_peers.txt -------------------------------------------------------------------------------- /assets/deps/confs/iguana.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/deps/confs/iguana.conf -------------------------------------------------------------------------------- /assets/icons/agama_app_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_app_icon.icns -------------------------------------------------------------------------------- /assets/icons/agama_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_app_icon.ico -------------------------------------------------------------------------------- /assets/icons/agama_icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/128x128.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/16x16.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/24x24.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/256x256.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/32x32.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/48x48.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/64x64.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/96x96.png -------------------------------------------------------------------------------- /assets/icons/agama_icons/agama_app_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/agama_app_icon.icns -------------------------------------------------------------------------------- /assets/icons/agama_icons/agama_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/icons/agama_icons/agama_app_icon.ico -------------------------------------------------------------------------------- /assets/installer_imgs/Agama_installer_splash_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/Agama_installer_splash_image.png -------------------------------------------------------------------------------- /assets/installer_imgs/Agama_installer_wizard_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/Agama_installer_wizard_image.png -------------------------------------------------------------------------------- /assets/installer_imgs/Iguana_installer_splash_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/Iguana_installer_splash_image.png -------------------------------------------------------------------------------- /assets/installer_imgs/Iguana_installer_wizard_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/Iguana_installer_wizard_image.png -------------------------------------------------------------------------------- /assets/installer_imgs/supernet-agama-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/supernet-agama-logo.png -------------------------------------------------------------------------------- /assets/installer_imgs/supernet-iguana-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/installer_imgs/supernet-iguana-logo.png -------------------------------------------------------------------------------- /assets/js/iguana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/assets/js/iguana.js -------------------------------------------------------------------------------- /assets/js/startup.js: -------------------------------------------------------------------------------- 1 | //startup separator for superNET iguana 2 | -------------------------------------------------------------------------------- /binary_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/binary_artifacts.sh -------------------------------------------------------------------------------- /binary_artifacts_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/binary_artifacts_mac.sh -------------------------------------------------------------------------------- /check_submodule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/check_submodule.sh -------------------------------------------------------------------------------- /gui/startup/agama-instance-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/gui/startup/agama-instance-error.html -------------------------------------------------------------------------------- /gui/startup/app-closing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/gui/startup/app-closing.html -------------------------------------------------------------------------------- /gui/startup/app-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/gui/startup/app-settings.html -------------------------------------------------------------------------------- /gui/startup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/gui/startup/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/main.js -------------------------------------------------------------------------------- /make-deb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/make-deb.js -------------------------------------------------------------------------------- /make-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/make-patch.sh -------------------------------------------------------------------------------- /make-rpm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/make-rpm.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/package.json -------------------------------------------------------------------------------- /private/mainmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/private/mainmenu.js -------------------------------------------------------------------------------- /private/setconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/private/setconf.js -------------------------------------------------------------------------------- /routes/appConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/appConfig.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumServers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumServers.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumjs.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumjs.core.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumjs.networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumjs.networks.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumjs.txdecoder-2bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumjs.txdecoder-2bytes.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumjs.txdecoder-pos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumjs.txdecoder-pos.js -------------------------------------------------------------------------------- /routes/electrumjs/electrumjs.txdecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/electrumjs/electrumjs.txdecoder.js -------------------------------------------------------------------------------- /routes/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/md5.js -------------------------------------------------------------------------------- /routes/nativeCoind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/nativeCoind.js -------------------------------------------------------------------------------- /routes/ports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/ports.js -------------------------------------------------------------------------------- /routes/shepherd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd.js -------------------------------------------------------------------------------- /routes/shepherd/addCoinShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/addCoinShortcuts.js -------------------------------------------------------------------------------- /routes/shepherd/appInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/appInfo.js -------------------------------------------------------------------------------- /routes/shepherd/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/auth.js -------------------------------------------------------------------------------- /routes/shepherd/binsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/binsUtils.js -------------------------------------------------------------------------------- /routes/shepherd/coindWalletKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/coindWalletKeys.js -------------------------------------------------------------------------------- /routes/shepherd/coins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/coins.js -------------------------------------------------------------------------------- /routes/shepherd/coinsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/coinsList.js -------------------------------------------------------------------------------- /routes/shepherd/confMaxconnections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/confMaxconnections.js -------------------------------------------------------------------------------- /routes/shepherd/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/config.js -------------------------------------------------------------------------------- /routes/shepherd/daemonControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/daemonControl.js -------------------------------------------------------------------------------- /routes/shepherd/dashboardUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dashboardUpdate.js -------------------------------------------------------------------------------- /routes/shepherd/debugLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/debugLog.js -------------------------------------------------------------------------------- /routes/shepherd/dex/coind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dex/coind.js -------------------------------------------------------------------------------- /routes/shepherd/dex/coins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dex/coins.json -------------------------------------------------------------------------------- /routes/shepherd/dex/electrumServersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dex/electrumServersList.js -------------------------------------------------------------------------------- /routes/shepherd/dex/mmControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dex/mmControl.js -------------------------------------------------------------------------------- /routes/shepherd/dex/mmRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/dex/mmRequest.js -------------------------------------------------------------------------------- /routes/shepherd/downloadBins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/downloadBins.js -------------------------------------------------------------------------------- /routes/shepherd/downloadPatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/downloadPatch.js -------------------------------------------------------------------------------- /routes/shepherd/downloadUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/downloadUtil.js -------------------------------------------------------------------------------- /routes/shepherd/downloadZcparams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/downloadZcparams.js -------------------------------------------------------------------------------- /routes/shepherd/elections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/elections.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/auth.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/balance.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/block.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/coins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/coins.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/createtx-multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/createtx-multi.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/createtx-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/createtx-split.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/createtx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/createtx.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/estimate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/estimate.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/interest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/interest.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/keys.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/listunspent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/listunspent.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/merkle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/merkle.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/network.js -------------------------------------------------------------------------------- /routes/shepherd/electrum/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/electrum/transactions.js -------------------------------------------------------------------------------- /routes/shepherd/explorer/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/explorer/overview.js -------------------------------------------------------------------------------- /routes/shepherd/explorer/remoteExplorers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/explorer/remoteExplorers.js -------------------------------------------------------------------------------- /routes/shepherd/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/init.js -------------------------------------------------------------------------------- /routes/shepherd/kickstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/kickstart.js -------------------------------------------------------------------------------- /routes/shepherd/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/log.js -------------------------------------------------------------------------------- /routes/shepherd/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/paths.js -------------------------------------------------------------------------------- /routes/shepherd/pin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/pin.js -------------------------------------------------------------------------------- /routes/shepherd/quitDaemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/quitDaemon.js -------------------------------------------------------------------------------- /routes/shepherd/rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/routes/shepherd/rpc.js -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/version -------------------------------------------------------------------------------- /version_build: -------------------------------------------------------------------------------- 1 | 0.2.0.29a-beta -------------------------------------------------------------------------------- /windeps/CopyWinDepsFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/CopyWinDepsFiles.bat -------------------------------------------------------------------------------- /windeps/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/ReadMe.md -------------------------------------------------------------------------------- /windeps/x64/ucrtbased.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/x64/ucrtbased.dll -------------------------------------------------------------------------------- /windeps/x64/vcruntime140d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/x64/vcruntime140d.dll -------------------------------------------------------------------------------- /windeps/x86/ucrtbased.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/x86/ucrtbased.dll -------------------------------------------------------------------------------- /windeps/x86/vcruntime140d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperNETorg/Agama/HEAD/windeps/x86/vcruntime140d.dll --------------------------------------------------------------------------------