Coder Social home page Coder Social logo

sumcoinlabs / sumcoin Goto Github PK

View Code? Open in Web Editor NEW
5.0 1.0 3.0 104.95 MB

The Official Repository for Sumcoin ( Blockchain of Sumcoin Index )

Home Page: http://sumcoin.org

License: MIT License

QMake 0.01% Shell 1.68% Python 16.96% Makefile 1.07% C++ 68.38% C 8.22% HTML 0.21% Objective-C++ 0.05% M4 1.99% Assembly 0.28% Java 0.29% Sage 0.29% Roff 0.23% Scheme 0.05% CMake 0.28%
sumcoin index coinbase exchange coin cryptography cryptocurrency atm marketcap cpuminer

sumcoin's Introduction

Sumcoin Official Development Repo

Continuous Integration

What is Sumcoin?

Sumcoin (abbreviated SUM), is a cryptocurrency design of proof-of-stake consensus as a security model minting system. Sumcoin is based on Bitcoin, while introducing many important innovations to cryptocurrency field including new security model, energy efficiency, better minting model and more adaptive response to rapid change in network computation power.

Sumcoin is an Index Based Coin

!! NOTICE TO ANY EXCHANGE OR DEVELOPERS - SUMCOIN IS INDEX BASED - READ THIS BEFORE INTEGRATING!!

OBJECT IS INDEX BASED

What is Sumcoin?

Sumcoin is a cryptographic blockchain using scrypt proof-of-work algorithm. Sumcoin tracks all coins in real time and its value is an aggregate or "SUM" of all top 100 coins by market capitalization. This is done using algorithms that track and calculate the market, without human interaction. It is for those who want to gain maximum exposure to the crypto space but may only want to hold one coin for simplicity, which can also reduce risk factors.

Sumcoin Core integration/staging tree [SUM, 𝚺]

image

Use Rates API for your APP

SUM / USD

Rate API Sources

SUM / BTC / USDT

Rate API Sources

TX fees api

Fee sum/kb API

Basic principals to adhere to Index Rate with online exchange

  1. Traders/members should not be able to place Buy orders greater than the Index price
  2. Traders/members should not be able to place Sell orders less than the Index price
  3. If existing orders are present they should be automatically canceled as Index price grows more than a reasonable % amount.
  4. Each exchange should determine what quantifies what a reasonable % is. While Sumcoin devs feel no more than 1% +/- to the Index rate avoids arbitrage, this will be left to the exchanges to decide the exact tolerances of.

Specifications


Twitter Follow Sumcoin on Twitter
Specification Descriptor
Ticker Symbol SUM
Algorithm SHA-256
Maxiumum Supply 200,000,000 + POS reward of 3% annual
SegWit Activate in future
BIP58 Prefix Public 0x04, 0x88, 0xB4, 0x1C
BIP58 Prefix Private 0x04, 0x88, 0xAB, 0xE6
Magic Number 0xf1e6f9a2
BIP32 public: 0xF588B21F
BIP32 private: 0xF588ADE5
pubKeyHash: 0x3F
scriptHash: 0x7d
wif: 0xbb
Mainnet RPC Port 3332
Mainnet P2P Port 3333
Electrum Mainnet RPC Port 53332
Electrum Mainnet P2P Port 53333
Testnet RPC Port 13332
Testnet P2P Port 13333
regtest port 19444
Block Time 60 Seconds
Coinbase Transaction Maturity 100 Blocks
Confirmation 6 Blocks
Difficulty Adjustment Interval 2880 Blocks
Protocol Support IPV4, IPV6, TOR, I2P

Social and resources

https://sumcoin.org/ https://sumcoinwallet.org/ https://twitter.com/Sumcoinindex Fandom: https://cryptocurrency.fandom.com/wiki/Sumcoin

Chat

Maps

Map

BATM Setup instructions:

https://github.com/sumcoinlabs/sumcoin/wiki/Sumcoin-Core-(sumcoind)-BATM-Configuration

//---

Sumcoin integration/staging tree

Developers work in their own trees, then submit pull requests when they think their feature or bug fix is ready.

If it is a simple/trivial/non-controversial change, then one of the Sumcoin development team members simply pulls it.

If it is a more complicated or potentially controversial change, then the patch submitter will be asked to start a discussion with the devs and community.

The patch will be accepted if there is broad consensus that it is a good thing. Developers should expect to rework and resubmit patches if the code doesn't match the project's coding conventions (see doc/coding.txt) or are controversial.

The master branch is regularly built and tested, but is not guaranteed to be completely stable. Tags are created regularly to indicate new official, stable release versions of Sumcoin.

Issues

For help: Open an Issue

Block Explorers

Download versions & other Information: https://sumcoin.org

Mining Hardware

Sumcoin Algo is Sha-256

CPU, Proof of Stake

Copyright (c) 2009-2014 Bitcoin Developers Copyright (c) 2017-2023 Sumcoin Developers Copyright / Sumcoinlabs / Squawk LLC

Development process

Developers work in their own trees, then submit pull requests when they think their feature or bug fix is ready.

If it is a simple/trivial/non-controversial change, then one of the Sumcoin development team members simply pulls it.

If it is a more complicated or potentially controversial change, then the patch submitter will be asked to start a discussion with the devs and community.

The patch will be accepted if there is broad consensus that it is a good thing. Developers should expect to rework and resubmit patches if the code doesn't match the project's coding conventions (see doc/coding.txt) or are controversial.

The master branch is regularly built and tested, but is not guaranteed to be completely stable. Tags are created regularly to indicate new official, stable release versions of Sumcoin.

Linux Build Dependencies/instructions: (Also see Sumcoin Wiki for the same info)

SPECIAL NOTE if using only 1 GB RAM - File Swap info (if needed):

Create swapfile using (copy and paste in all 4 for an easy life):

sudo fallocate -l 2G /swapfile;
sudo chmod 600 /swapfile;
sudo mkswap /swapfile;
sudo swapon /swapfile;

Make it persistent

sudo nano /etc/fstab

add line:

/swapfile swap swap defaults 0 0

Dependencies (paste all 3 seperately):

### On Ubuntu 16.04 - 18.04

sudo apt-get update
sudo apt-get install git
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y software-properties-common

sudo add-apt-repository ppa:bitcoin/bitcoin

sudo apt-get update
sudo apt-get install -y libdb4.8-dev libdb4.8++-dev
sudo apt-get install -y libminiupnpc-dev
sudo apt-get install -y libzmq3-dev
sudo apt-get install -y libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
sudo apt-get install -y libqt4-dev libprotobuf-dev protobuf-compiler
### On Ubuntu 20.04

sudo apt-get update
sudo apt-get install git
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
sudo apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev
sudo apt-get install -y libboost-all-dev
sudo apt-get install -y software-properties-common

sudo snap install bitcoin-core

sudo apt-get -y install libdb-dev
sudo apt install -y libdb++-dev
sudo apt-get install -y libminiupnpc-dev
sudo apt-get install -y libzmq3-dev
sudo apt-get install -y libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler

sudo add-apt-repository ppa:rock-core/qt4
sudo apt install -y qt4-dev-tools libqt4-dev libqtcore4 libqtgui4

Next, Clone the project

git clone https://github.com/sumcoinlabs/sumcoin.git

Change directories into Sumcoin

cd sumcoin

From the Sumcoin Directory, run each command

./autogen.sh

Next choose configuration option

  • Full Build
./configure
  • Build with GUI without tests (faster)
./configure --disable-tests
  • Build without tests or GUI
./configure --disable-tests --disable-bench --without-gui
### if Ubuntu 20.04+
./configure --disable-tests --disable-bench --without-gui --with-incompatible-bdb

Make

Last, make the executables (This could take a bit)

make

It will then start compiling and take a while.

IF using a 1 GB Droplet be sure to turn OFF after you 'make'

sudo swapoff /swapfile

Run:

After this it's ready to run. The executable will be in sumcoin/src. Run with:

./sumcoind -server -daemon

Setup a configuration file to run as a node

Stop the server from sumcoin/src:

./sumcoin-cli stop

Navigate to sumcoin data dir from home dir

cd .sumcoin
touch sumcoin.conf
nano sumcoin.conf

Paste the following make your own user/password*

server=1
daemon=1
rpcuser=YOURuserNAME
rpcpassword=YOURpassword

Restart Sumcoin. You will now be running as a node each time you start

cd sumcoin/src/:./sumcoind -server -daemon

With GUI - Works for Linux terminal

cd sumcoin/src/qt/:./sumcoin-qt

Configure your settings

    1. navigate to hidden folders
    1. create sumcoin.conf file
    1. inside, set the following parameters from the list below

Testing

Testing and code review is the bottleneck for development; we get more pull requests than we can review and test. Please be patient and help out, and remember this is a security-critical project where any mistake might cost people lots of money.

Automated Testing Developers are strongly encouraged to write unit tests for new code, and to submit new unit tests for old code.

Unit tests for the core code are in src/test/. To compile and run them:

cd src; make -f makefile.unix test Unit tests for the GUI code are in src/qt/test/. To compile and run them:

qmake SUMCOIN_QT_TEST=1 -o Makefile.test sumcoin-qt.pro make -f Makefile.test ./sumcoin-qt_test

ATM Setup

How to Setup Sumcoin For General Bytes ATM's

Sumcoin Core (sumcoind) Configuration

The following example is based on the presumption that you have completed the prior steps of CAS installation on a hosted Internet server running Ubuntu 16.04 LTS, or higher, that the server is online, and the BATM has been successfully installed, configured, and tested for proper connectivity to the CAS.

A further presumption is that the sumcoind daemon has been installed, configured, and tested for proper use. This guide is merely designed to help you setup a working sumcoind daemon with a working CAS.

This is a step-by-step guide for adding sumcoind as a Hot Wallet Buy source. This is only an example and not to be construed as an endorsement for any particular exchange or wallet.

This has been tested on sumcoin Core v 0.20.2

First, open a terminal window and login to your server as root.

Create an RPC token for CAS to communicate with sumcoind: The RPC token is designed to eliminate the need for hard-coded passwords in configuration and script files. You will receive a password here ONCE. This password is required for CAS; it's your “RPC Password”. You must save it during this step.

Download rpcauth.py on GitHub (all one line):

Not required if you compile your own binaries

wget https://raw.githubusercontent.com/sumcoinlabs/sumcoin/master/share/rpcauth/rpcauth.py -O ~/.sumcoin/rpcauth.py

Modify the file permissions to allow the script to execute:

chmod +x ~/.sumcoin/rpcauth.py

Best Method

Then finally run the RPC token generator that you just installed and enabled:

Path,

root@root:~/sumcoin/share/rpcauth

./rpcauth.py AnyNameYouWantHere

Example Result

root@root:~/sumcoin/share/rpcauth$ ./rpcauth.py sumcoinatm

String to be appended to sumcoin.conf:

rpcauth=AnyNameYouWantHere:aac8dlfjsdfkjds876dfpdsfjhlsdlkfasd8plkdjf8d8984lndlkdfjsdflkjsadfkfjkhlkjhdjdfh3b90e44ddca2 Your password: T0Dx2VLjgikeTANOGosdifoIJH80Xn2E0Tcx-jdlh1GIcr8c=

Save

The name you entered above, the resulting token, AND the generated password. You'll need it in the next step. The “AnyNameYouWantHere” is the “RPC User”, and the generated password is your “RPC Password” for CAS. The token is put in the sumcoin.conf file (as described below).

A sample token is all one line and should look similiar to this:

AnyNameYouWantHere:aac8dlfjsdfkjds876dfpdsfjhlsdlkfasd8plkdjf8d8984lndlkdfjsdflkjsadfkfjkhlkjhdjdfh3b90e44ddca2

The generated password may look like:

T0Dx2VLjgikeTANOGosdifoIJH80Xn2E0Tcx-jdlh1GIcr8c=

Modify the sumcoin.conf configuration file:

While you might (under certain circumstances) might want to start the daemon exclusively from a command line, we urge you to change the following settings within sumcoind.conf and run sumcoind without parameters. Keep it simple!

Locate the Sumcoin Core configuration file.

  • sumcoin.conf in data dir -

Add (or modify) the following settings in the configuration file:

deprecatedrpc=accounts
deprecatedrpc=estimatefee
addresstype=legacy
server=1
daemon=1
rpcallowip=your_Server_IP_for_CAS

The RPC (Remote Procedure Call) uses "credentials" to communicate between programs. It's required, and can be a security issue if insecure. Depending on the RPC settings and your firewall, you might expose your wallet to the world - and that would be unwise. Research the subject before randomly changing any settings.

Add your RPC user credentials:

rpcuser=AnyNameYouWantHere
rpcpassword=DontUseThis!YouHaveBeenWarned!
-or (preferred)-
rpcauth=AnyNameYouWantHere:e5305a4d7e2c760b196882d2896f77$c5b5e7f6970f7c0544244189f45622887642dca2f36761bcecc1d8055fe8416d

Your end result should look like this Example in sumcoin.conf (Tested v0.16.1)

addresstype=legacy
deprecatedrpc=accounts
deprecatedrpc=estimatefee
server=1
daemon=1
rpcallowip=your_Server_IP_for_CAS
rpcauth=WalletName:bbc8fHC2jkeyojdlnlfnd89c1d61cee0aa70aa947e060617fd9231fac102b25cchh3jwls7bBb90e44ddca2

Use either the top method or bottom (preferred) method.

If using the first/top method, the rpcpassword is whatever you want it to be.
The “rpcuser/rpcpassword” method is deprecated because it is considered a security risk. If using the second/bottom method:
the "rpcauth" is all one line,

Replace the “rpcauth” info with the token generated in the previous step. RPC tokens (like this) are the preferred method of RPC authorization.

Start the sumcoind daemon (background process):

Once you have modified sumcoin.conf, (re)start the daemon:

root@root:./sumcoind -server -daemon

It may take several minutes for Sumcoin Core to completely start.

Sumcoin Core and CAS will not be able to communicate until Sumcoin Core has "warmed up". It may take a few minutes - or longer.

Ascertain that you have a default address. Use:

sumcoin-cli listaccounts

One of three things will be displayed:

"Sumcoin Core is still "warming up". Give it a few minutes and try again."

"Empty brackets {} indicate that no address exists. You must create one." Anything between the brackets means you can safely skip to the next part.

If you get empty brackets (result #2), then create a default Wallet Address and Account name by running:

sumcoin-cli getnewaddress "makeUpWalletNameBetweenQuotes"

You can safely skip this if you are CERTAIN one has already been created.

CAS will NOT work with Sumcoin Core unless at least one address exists!

NOTE: sumcoind will take several hours (or longer) to completely synchronize with the Sumcoin network. CAS will NOT work with sumcoind until the synchronization is COMPLETE.

Configure CAS to communicate with your sumcoin Core wallet:

Assemble the required information for CAS:

User: this is the “RPC User” you created earlier. For this example we'll just say it's “rpcuser”. Password: is the “RPCPassword” created by rpcauth.py earlier, or the one you made up (if you don't implement a token). For this example, we'll make the password just plain “rpcpw”.

Accountname:

this is the account name of your wallet. An account name is neither required nor suggested. Account usage is deprecated in sumcoind, however to view any existing accounts, type:

sumcoin-cli listaccounts

This parameter may be safely omitted if only a default account exists (""). If you choose to specify an account, select one named in the list. Whether using the default ("") or not, we'll refer to it as "walletname" in the examples below.

Next, add a new crypto-currency type to CAS:

  • Enter the “Crypto Settings” menu in the left-hand column.
  • Click on the “+ ADD” button.
  • Create a suitable description, i.e. “sumcoind SUM”.
  • Select “SUM” for the required Crypto Currency* setting.
  • Set Configuration Cash Currency* to“USD” (or whatever your local currency might be).
  • Set Buy Rate Source to whatever source you prefer.
  • Set Minimum Cash Amount PerTransaction* to zero – this enables any sale.
  • Select your Hot Wallet Buy source to “sumcoin Core - sumcoind”.
  • Enter the Parameters for the Hot Wallet Buy source as determined in the previous step:

Example (typical):

“http:walletName:rpcpw:DaemonIP:3332”

Example with a specific wallet:

“http:rpcuser:rpcpw:DaemonIP:3332:walletname”

Click on “SUBMIT” to save your settings.

Finally, test it out by selecting Test Hot Wallet Buy from the RUN SUM SETTINGS TEST.

Presuming everything was entered correctly, you should receive confirmation of success!

You should also now configure the Hot Wallet Sell using the same parameters if you implement it on a BATMThree (or other 2-way).

  ##     You're done!

Sumcoin Resources

Testing

Testing and code review is the bottleneck for development; we get more pull requests than we can review and test. Please be patient and help out, and remember this is a security-critical project where any mistake might cost people lots of money.

Automated Testing

Developers are strongly encouraged to write unit tests for new code, and to submit new unit tests for old code.

Unit tests can be compiled and run (assuming they weren't disabled in configure) with: make check

Manual Quality Assurance (QA) Testing

Large changes should have a test plan, and should be tested by somebody other than the developer who wrote the code.

  • Developers work in their own forks, then submit pull requests when they think their feature or bug fix is ready.
  • If it is a simple/trivial/non-controversial change, then one of the development team members simply pulls it.
  • If it is a more complicated or potentially controversial change, then the change may be discussed in the pull request, or the requester may be asked to start a discussion in the Sumcoin Forum for a broader community discussion.
  • The patch will be accepted if there is broad consensus that it is a good thing. Developers should expect to rework and resubmit patches if they don't match the project's coding conventions (see coding.txt) or are controversial.
  • From time to time a pull request will become outdated. If this occurs, and the pull is no longer automatically mergeable; a comment on the pull will be used to issue a warning of closure. Pull requests closed in this manner will have their corresponding issue labeled 'stagnant'.
  • For development ideas and help see here.

Branches:

develop (all pull requests should go here)

The develop branch is used by developers to merge their newly implemented features to. Pull requests should always be made to this branch (except for critical fixes), and could possibly break the code. The develop branch is therefore unstable and not guaranteed to work on any system.

master (only updated by group members)

The master branch get's updates from tested states of the develop branch. Therefore, the master branch should contain functional but experimental code.

release-* (the official releases)

The release branch is identified by it's major and minor version number e.g. release-0.6. The official release tags are always made on a release branch. Release branches will typically branch from or merge tested code from the master branch to freeze the code for release. Only critical patches can be applied through pull requests directly on this branch, all non critical features should follow the standard path through develop -> master -> release-*

sumcoin's People

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

sumcoin's Issues

sumcoin 0.16.1 test-net to 0.16.1 main-net loosing transactions/balance

When upgrading my sumcoin 0.16.1 test-net to 0.16.1 main-net I can see the wallet but none of the transactions are validated/verified anymore which means I have a "zero" balance.

I didn't use the wallet for a few months, does that mean I am too late and lost my coins?

I am using the precompiles linux binaries. However transferring the wallet.dat to an OSX environment generates the same problem: The wallet is recognised but not validated.

CONFIGURE AND RUN Sumcoin

I am now getting a message "failed to authenticate". I am in the section: CONFIGURE AND RUN Sumcoin

I have attached a photo. Thank you for your help
IMG_0364

Bug report

Expected behavior

Actual behavior

To reproduce

System information

Will not open on MAC

I installed the node from your website node it will not open. This is the message I get. I also had to uninstall my antivirus to get it to download.

This is the error message:
"Process: Sumcoin-Qt [73009]
Path: /Applications/Sumcoin-Qt.app/Contents/MacOS/Sumcoin-Qt
Identifier: org.sumcoin.Sumcoin-Qt
Version: 0.17.1 (0.17.1)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Sumcoin-Qt [73009]
User ID: 501

Date/Time: 2019-08-15 13:37:20.336 -0700
OS Version: Mac OS X 10.14.6 (18G87)
Report Version: 12
Anonymous UUID: 158FA8F9-7F1B-5753-DE31-4BACF1E2A819

Sleep/Wake UUID: 20BF8CCD-48B3-4702-B99A-51B3246B6CBB

Time Awake Since Boot: 480000 seconds
Time Since Wake: 72000 seconds

System Integrity Protection: enabled

Crashed Thread: 0

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY

Termination Reason: DYLD, [0x1] Library missing

Application Specific Information:
dyld: launch, loading dependent libraries

Dyld Error Message:
Library not loaded: @loader_path/libboost_system-mt.dylib
Referenced from: /Applications/Sumcoin-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
Reason: image not found

Binary Images:
0x10dde4000 - 0x10e81afe7 +org.sumcoin.Sumcoin-Qt (0.17.1 - 0.17.1) /Applications/Sumcoin-Qt.app/Contents/MacOS/Sumcoin-Qt
0x10e912000 - 0x10e912fff +libboost_system.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libboost_system.dylib
0x10e917000 - 0x10e926ff7 +libboost_filesystem.dylib (0) <5D6D7A16-7FD6-37A7-B861-8CD71D1BDAF0> /Applications/Sumcoin-Qt.app/Contents/Frameworks/libboost_filesystem.dylib
0x10e933000 - 0x10e940fff +libboost_thread-mt.dylib (0) <59155C51-4CEA-3DC8-9CFF-4BF015C8B118> /Applications/Sumcoin-Qt.app/Contents/Frameworks/libboost_thread-mt.dylib
0x10e948000 - 0x10e94cfff +libboost_chrono-mt.dylib (0) <04648B48-A317-343E-B8F2-875AC0BBC732> /Applications/Sumcoin-Qt.app/Contents/Frameworks/libboost_chrono-mt.dylib
0x10e955000 - 0x10ea5eff7 +QtNetwork (0) <69458827-C341-3A69-8272-C69A5C8EFFD5> /Applications/Sumcoin-Qt.app/Contents/Frameworks/QtNetwork.framework/Versions/5/QtNetwork
0x10eaaa000 - 0x10eee7ff7 +QtWidgets (0) <15224A8B-FFD9-382E-8DD8-C8C545C80589> /Applications/Sumcoin-Qt.app/Contents/Frameworks/QtWidgets.framework/Versions/5/QtWidgets
0x10f04c000 - 0x10f49eff7 +QtGui (0) <223E45A7-ECDA-3FAB-86C1-3A9CD11FFC9F> /Applications/Sumcoin-Qt.app/Contents/Frameworks/QtGui.framework/Versions/5/QtGui
0x10f5a7000 - 0x10fab3ff7 +QtCore (0) <7B0E915A-26FB-33A1-AB99-4396A27EE8E2> /Applications/Sumcoin-Qt.app/Contents/Frameworks/QtCore.framework/Versions/5/QtCore
0x10fb74000 - 0x10fbd2ff3 +QtDBus (0) <8B69382D-4DDB-395F-89DB-21B61BE1FA5E> /Applications/Sumcoin-Qt.app/Contents/Frameworks/QtDBus.framework/Versions/5/QtDBus
0x10fbf2000 - 0x10fbf8ff3 +libqrencode.4.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libqrencode.4.dylib
0x10fc00000 - 0x10fd2fff7 +libprotobuf.18.dylib (0) <21426D21-5A40-3432-AA91-B6E0100FEBDC> /Applications/Sumcoin-Qt.app/Contents/Frameworks/libprotobuf.18.dylib
0x10fdee000 - 0x10ff02fff +libdb_cxx-4.8.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libdb_cxx-4.8.dylib
0x10ff2a000 - 0x10ff68fff +libssl.1.0.0.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libssl.1.0.0.dylib
0x10ff88000 - 0x1100daf6f +libcrypto.1.0.0.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libcrypto.1.0.0.dylib
0x110148000 - 0x110150ff7 +libminiupnpc.17.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libminiupnpc.17.dylib
0x110158000 - 0x110159fff +libevent_pthreads-2.1.6.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libevent_pthreads-2.1.6.dylib
0x11015f000 - 0x11018bffb +libevent-2.1.6.dylib (0) /Applications/Sumcoin-Qt.app/Contents/Frameworks/libevent-2.1.6.dylib
0x112f2d000 - 0x112f976ef dyld (655.1.1) /usr/lib/dyld
0x7fff4495c000 - 0x7fff45711ffb com.apple.AppKit (6.9 - 1671.60.107) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff45763000 - 0x7fff45763fff com.apple.ApplicationServices (50.1 - 50.1) <84097DEB-E2FC-3901-8DD7-A670EA2274E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff47353000 - 0x7fff47798fff com.apple.CoreFoundation (6.9 - 1575.17) <57B85682-96F5-3DD9-8969-DF83D07E0295> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff485c6000 - 0x7fff485c6fff com.apple.CoreServices (946 - 946) <455AB7C9-ECB1-3B5C-8D07-AC68810A90B1> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff495f3000 - 0x7fff499a0fff com.apple.Foundation (6.9 - 1575.17) <20150BA3-74D6-3991-AD22-52735FAD0E24> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff702ed000 - 0x7fff702eeffb libSystem.B.dylib (1252.250.1) /usr/lib/libSystem.B.dylib
0x7fff705b0000 - 0x7fff70603ff7 libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
0x7fff70604000 - 0x7fff70619ff7 libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
0x7fff71ba4000 - 0x7fff7232cfd7 libobjc.A.dylib (756.2) <20942D4E-CE6F-376A-8BCD-016F88E4BFD5> /usr/lib/libobjc.A.dylib
0x7fff73200000 - 0x7fff73204ff3 libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
0x7fff73205000 - 0x7fff7320fff3 libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
0x7fff73210000 - 0x7fff73217ff7 libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
0x7fff73218000 - 0x7fff73221ff7 libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
0x7fff73222000 - 0x7fff732a6fc3 libcorecrypto.dylib (602.260.2) <01464D24-570C-3B83-9D18-467769E0FCDD> /usr/lib/system/libcorecrypto.dylib
0x7fff7332d000 - 0x7fff73366ff7 libdispatch.dylib (1008.270.1) <97273678-E94C-3C8C-89F6-2E2020F4B43B> /usr/lib/system/libdispatch.dylib
0x7fff73367000 - 0x7fff73393ff7 libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
0x7fff73394000 - 0x7fff73394ffb libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
0x7fff733a2000 - 0x7fff733a2ff7 liblaunch.dylib (1336.261.2) <2B07E27E-D404-3E98-9D28-BCA641E5C479> /usr/lib/system/liblaunch.dylib
0x7fff733a3000 - 0x7fff733a8fff libmacho.dylib (927.0.3) /usr/lib/system/libmacho.dylib
0x7fff733a9000 - 0x7fff733abffb libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
0x7fff733ac000 - 0x7fff733adff7 libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
0x7fff733ae000 - 0x7fff733c5ff3 libsystem_asl.dylib (356.200.4) /usr/lib/system/libsystem_asl.dylib
0x7fff733c6000 - 0x7fff733c6ff7 libsystem_blocks.dylib (73) /usr/lib/system/libsystem_blocks.dylib
0x7fff733c7000 - 0x7fff7344efff libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
0x7fff7344f000 - 0x7fff73452ffb libsystem_configuration.dylib (963.270.3) <2B4A836D-68A4-33E6-8D48-CD4486B03387> /usr/lib/system/libsystem_configuration.dylib
0x7fff73453000 - 0x7fff73456ff7 libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
0x7fff73457000 - 0x7fff7345dfff libsystem_darwin.dylib (1272.250.1) /usr/lib/system/libsystem_darwin.dylib
0x7fff7345e000 - 0x7fff73464ff7 libsystem_dnssd.dylib (878.270.2) /usr/lib/system/libsystem_dnssd.dylib
0x7fff73465000 - 0x7fff734b0ffb libsystem_info.dylib (517.200.9) /usr/lib/system/libsystem_info.dylib
0x7fff734b1000 - 0x7fff734d9ff7 libsystem_kernel.dylib (4903.270.47) <4195838C-EFEF-3CC9-B459-75032AF7EA1A> /usr/lib/system/libsystem_kernel.dylib
0x7fff734da000 - 0x7fff73525ff7 libsystem_m.dylib (3158.200.7) /usr/lib/system/libsystem_m.dylib
0x7fff73526000 - 0x7fff73550fff libsystem_malloc.dylib (166.270.1) <011F3AD0-8E6A-3A89-AE64-6E5F6840F30A> /usr/lib/system/libsystem_malloc.dylib
0x7fff73551000 - 0x7fff7355bff7 libsystem_networkextension.dylib (767.250.2) /usr/lib/system/libsystem_networkextension.dylib
0x7fff7355c000 - 0x7fff73563fff libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
0x7fff73564000 - 0x7fff7356dfef libsystem_platform.dylib (177.270.1) <9D1FE5E4-EB7D-3B3F-A8D1-A96D9CF1348C> /usr/lib/system/libsystem_platform.dylib
0x7fff7356e000 - 0x7fff73578ff7 libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
0x7fff73579000 - 0x7fff7357cff7 libsystem_sandbox.dylib (851.270.1) <9494594B-5199-3186-82AB-5FF8BED6EE16> /usr/lib/system/libsystem_sandbox.dylib
0x7fff7357d000 - 0x7fff7357fff3 libsystem_secinit.dylib (30.260.2) /usr/lib/system/libsystem_secinit.dylib
0x7fff73580000 - 0x7fff73587ff3 libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
0x7fff73588000 - 0x7fff7359dfff libsystem_trace.dylib (906.260.1) /usr/lib/system/libsystem_trace.dylib
0x7fff7359f000 - 0x7fff735a4ffb libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
0x7fff735a5000 - 0x7fff735d4fff libxpc.dylib (1336.261.2) <7DEE2300-6D8E-3C00-9C63-E3E80D56B0C4> /usr/lib/system/libxpc.dylib

Model: iMac13,2, BootROM 287.0.0.0.0, 4 processors, Intel Core i7, 3.4 GHz, 16 GB, SMC 2.11f14
Graphics: kHW_NVidiaGeForceGTX675MXItem, NVIDIA GeForce GTX 675MX, spdisplays_pcie_device, 1 GB
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF4), Broadcom BCM43xx 1.0 (7.21.190.33 AirPortDriverBrcm4360-1325.2)
Bluetooth: Version 6.0.14d3, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
Serial ATA Device: APPLE HDD ST1000DM003, 1 TB
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: FaceTime HD Camera (Built-in)
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: Hub
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: USB 3.0 Bus
USB Device: ASM1351
USB Device: Wacom Wireless Receiver
Thunderbolt Bus: iMac, Apple Inc., 23.4
"

wallet

Expected behavior

Actual behavior

To reproduce

System information

wallet

Expected behavior

Actual behavior

To reproduce

System information

Wallet

Expected behavior

Actual behavior

To reproduce

System information

Still not working

I have installed it line by line and I have now mounted the img again,
from a windows computer this time. I have attached some photos.

IMG_0366
IMG_0367
IMG_0368
IMG_0369
IMG_0370
IMG_0371
IMG_0372
IMG_0373

After MacOS Mojave NO SUMCOIN Wallet on my Desktop :(

Hello there ,

Today i upgraded the MacOS to MoJAVE and after that when i tried to open the desktop wallet of SUMCOIN which i downladed the newest version 3 days ago it did not respond and saying...

Sumcoin-QT cannot be opened because of a problem.Check with the developer to make sure Sumcoin-Qt works with this version of macOS. You may need to reinstall the application. Be sure to install any available updates for the application and macOS.

After that i tried 3 times the same way but the same mistake .

Guys can you pls solve that probem ASAP. I have many coins in my wallet.

Thanks
Kaan

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.