Bitcoin Forum
April 27, 2024, 03:49:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 »
  Print  
Author Topic: [ANN] [PMP] PreminePlus Launch ~ New Features! ~ Oct Signup Free Distribution!  (Read 148920 times)
reports79@bk.ru
Newbie
*
Offline Offline

Activity: 54
Merit: 0


View Profile
September 20, 2014, 01:53:45 PM
 #1121

Only one day left for the PoA Campaign!
Come claim your coins while you still can!
100PMP  - More than a monthly giveaway!
http://www.cryptotycoons.com/poa-campaigns/premineplus-proof-action-campaign/

nice
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714189751
Hero Member
*
Offline Offline

Posts: 1714189751

View Profile Personal Message (Offline)

Ignore
1714189751
Reply with quote  #2

1714189751
Report to moderator
MoneroMooo
Legendary
*
Offline Offline

Activity: 1276
Merit: 1001


View Profile
September 20, 2014, 02:22:26 PM
 #1122

I've made a small change to add a menu comnmand to copy txid from the trasnactions window.
That helps when trying to use the new in-wallet block explorer. You can directly copy a tx's txid and paste that in the block explorer. Feel free to use or modify.


From 4e5ca9d431430ea15245f4335ffeca97dd7a45a9 Mon Sep 17 00:00:00 2001
From: moneromooo <moneromooo@users.noreply.github.com>
Date: Sat, 20 Sep 2014 15:18:01 +0100
Subject: [PATCH] transactionview: add a menu command to copy txid

Useful for use with the new block explorer window
---
 src/qt/transactionview.cpp | 8 ++++++++
 src/qt/transactionview.h   | 1 +
 2 files changed, 9 insertions(+)

diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp
index 5dd55db..ef574a0 100644
--- a/src/qt/transactionview.cpp
+++ b/src/qt/transactionview.cpp
@@ -132,6 +132,7 @@ TransactionView::TransactionView(QWidget *parent) :
     QAction *copyAddressAction = new QAction(tr("Copy address"), this);
     QAction *copyLabelAction = new QAction(tr("Copy label"), this);
     QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
+    QAction *copyTXID = new QAction(tr("Copy txid"), this);
     QAction *editLabelAction = new QAction(tr("Edit label"), this);
     QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
 
@@ -139,6 +140,7 @@ TransactionView::TransactionView(QWidget *parent) :
     contextMenu->addAction(copyAddressAction);
     contextMenu->addAction(copyLabelAction);
     contextMenu->addAction(copyAmountAction);
+    contextMenu->addAction(copyTXID);
     contextMenu->addAction(editLabelAction);
     contextMenu->addAction(showDetailsAction);
 
@@ -154,6 +156,7 @@ TransactionView::TransactionView(QWidget *parent) :
     connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
     connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
     connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
+    connect(copyTXID, SIGNAL(triggered()), this, SLOT(copyTXID()));
     connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
     connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
 }
@@ -323,6 +326,11 @@ void TransactionView::copyAmount()
     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
 }
 
+void TransactionView::copyTXID()
+{
+    GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxIDRole);
+}
+
 void TransactionView::editLabel()
 {
     if(!transactionView->selectionModel() ||!model)
diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h
index 4ade3ec..57f59e7 100644
--- a/src/qt/transactionview.h
+++ b/src/qt/transactionview.h
@@ -65,6 +65,7 @@ private slots:
     void editLabel();
     void copyLabel();
     void copyAmount();
+    void copyTXID();
 
 signals:
     void doubleClicked(const QModelIndex&);
--
1.9.3

portugal
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
September 20, 2014, 03:16:20 PM
 #1123

Only one day left for the PoA Campaign!
Come claim your coins while you still can!
100PMP  - More than a monthly giveaway!
http://www.cryptotycoons.com/poa-campaigns/premineplus-proof-action-campaign/

No more extension?

Please extend... Sad
TheMightyX (OP)
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250

Vires in Numeris


View Profile
September 20, 2014, 03:59:56 PM
 #1124

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

The problem is if you don't have enough hashrate, the payouts will be quite low and so it does make sense economically to mine that Pool.
There was a new upcoming multipool that offered to support PMP as a payout option. I'll look into that.


TheMightyX (OP)
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250

Vires in Numeris


View Profile
September 20, 2014, 04:01:18 PM
Last edit: September 20, 2014, 04:11:56 PM by TheMightyX
 #1125

I've made a small change to add a menu comnmand to copy txid from the trasnactions window.
That helps when trying to use the new in-wallet block explorer. You can directly copy a tx's txid and paste that in the block explorer. Feel free to use or modify.

Code:
From 4e5ca9d431430ea15245f4335ffeca97dd7a45a9 Mon Sep 17 00:00:00 2001
From: moneromooo <moneromooo@users.noreply.github.com>
Date: Sat, 20 Sep 2014 15:18:01 +0100
Subject: [PATCH] transactionview: add a menu command to copy txid

Useful for use with the new block explorer window
---
 src/qt/transactionview.cpp | 8 ++++++++
 src/qt/transactionview.h   | 1 +
 2 files changed, 9 insertions(+)

diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp
index 5dd55db..ef574a0 100644
--- a/src/qt/transactionview.cpp
+++ b/src/qt/transactionview.cpp
@@ -132,6 +132,7 @@ TransactionView::TransactionView(QWidget *parent) :
     QAction *copyAddressAction = new QAction(tr("Copy address"), this);
     QAction *copyLabelAction = new QAction(tr("Copy label"), this);
     QAction *copyAmountAction = new QAction(tr("Copy amount"), this);
+    QAction *copyTXID = new QAction(tr("Copy txid"), this);
     QAction *editLabelAction = new QAction(tr("Edit label"), this);
     QAction *showDetailsAction = new QAction(tr("Show transaction details"), this);
 
@@ -139,6 +140,7 @@ TransactionView::TransactionView(QWidget *parent) :
     contextMenu->addAction(copyAddressAction);
     contextMenu->addAction(copyLabelAction);
     contextMenu->addAction(copyAmountAction);
+    contextMenu->addAction(copyTXID);
     contextMenu->addAction(editLabelAction);
     contextMenu->addAction(showDetailsAction);
 
@@ -154,6 +156,7 @@ TransactionView::TransactionView(QWidget *parent) :
     connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(copyAddress()));
     connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(copyLabel()));
     connect(copyAmountAction, SIGNAL(triggered()), this, SLOT(copyAmount()));
+    connect(copyTXID, SIGNAL(triggered()), this, SLOT(copyTXID()));
     connect(editLabelAction, SIGNAL(triggered()), this, SLOT(editLabel()));
     connect(showDetailsAction, SIGNAL(triggered()), this, SLOT(showDetails()));
 }
@@ -323,6 +326,11 @@ void TransactionView::copyAmount()
     GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::FormattedAmountRole);
 }
 
+void TransactionView::copyTXID()
+{
+    GUIUtil::copyEntryData(transactionView, 0, TransactionTableModel::TxIDRole);
+}
+
 void TransactionView::editLabel()
 {
     if(!transactionView->selectionModel() ||!model)
diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h
index 4ade3ec..57f59e7 100644
--- a/src/qt/transactionview.h
+++ b/src/qt/transactionview.h
@@ -65,6 +65,7 @@ private slots:
     void editLabel();
     void copyLabel();
     void copyAmount();
+    void copyTXID();
 
 signals:
     void doubleClicked(const QModelIndex&);
--
1.9.3

Very helpful as usual!
I'll add that as soon as I'm finished a side project I'm working on.
I got tired of waiting for that flake to fix the old dice site so I'm creating one myself.
This way, the team has full control over it and it is secure.

It's up and working!! Tested and deposits working correctly.

Just updating the nameservers to point to the VPS now.
I want to make some changes to the front end and then I'll be releasing it to the community.
I have another service on the way as well Cheesy


orgi666
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 20, 2014, 04:05:01 PM
 #1126

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

Multipool is not needed,you can do it yourself.Mine another coin,sell,and buy PMP.Simple.The problem is,that this coin has no trust among the comunity.Everyone is staking his free coins and waits for a miracle.Go to buy,till the price get higher,there is no problem to get this coin to 1BTC,but you loosers have to invest into it.I have started to buy PMP,and i will invest everything i can mine into it.But one person is too little.What do you think?If you just wait till the price grows,it can happen,that everybody does it=coin is dead.If you buy now for 0.001 BTC tomorrow the price can be 0.1 BTC.The more you buy,the bigger the coin,then will BIttrex or any other exchange add it without any need to vote.

So my friends,if you wanna wait do it,waiting kills coins.In the end,it can happen,you will have 500 PMP without any value.
Nullu
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
September 20, 2014, 08:00:15 PM
 #1127

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

Multipool is not needed,you can do it yourself.Mine another coin,sell,and buy PMP.Simple.The problem is,that this coin has no trust among the comunity.Everyone is staking his free coins and waits for a miracle.Go to buy,till the price get higher,there is no problem to get this coin to 1BTC,but you loosers have to invest into it.I have started to buy PMP,and i will invest everything i can mine into it.But one person is too little.What do you think?If you just wait till the price grows,it can happen,that everybody does it=coin is dead.If you buy now for 0.001 BTC tomorrow the price can be 0.1 BTC.The more you buy,the bigger the coin,then will BIttrex or any other exchange add it without any need to vote.

So my friends,if you wanna wait do it,waiting kills coins.In the end,it can happen,you will have 500 PMP without any value.

Well, yes, the coin needs buy support, and what generates buy support is excitement that the value will increase. The coin is gaining new features regularly, and I think it's a great investment for the future of the coin.

BTC - 14kYyhhWZwSJFHAjNTtyhRVSu157nE92gF
portugal
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
September 20, 2014, 10:02:06 PM
 #1128

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

Multipool is not needed,you can do it yourself.Mine another coin,sell,and buy PMP.Simple.The problem is,that this coin has no trust among the comunity.Everyone is staking his free coins and waits for a miracle.Go to buy,till the price get higher,there is no problem to get this coin to 1BTC,but you loosers have to invest into it.I have started to buy PMP,and i will invest everything i can mine into it.But one person is too little.What do you think?If you just wait till the price grows,it can happen,that everybody does it=coin is dead.If you buy now for 0.001 BTC tomorrow the price can be 0.1 BTC.The more you buy,the bigger the coin,then will BIttrex or any other exchange add it without any need to vote.

So my friends,if you wanna wait do it,waiting kills coins.In the end,it can happen,you will have 500 PMP without any value.

Well, yes, the coin needs buy support, and what generates buy support is excitement that the value will increase. The coin is gaining new features regularly, and I think it's a great investment for the future of the coin.

Hope we get listed on Bittrex so I can buy some.

Got few btc remaining in my account.
orgi666
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 20, 2014, 11:21:46 PM
 #1129

Buy on Comkort,i did.And i will buy more.
orgi666
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 20, 2014, 11:59:49 PM
 #1130

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

Multipool is not needed,you can do it yourself.Mine another coin,sell,and buy PMP.Simple.The problem is,that this coin has no trust among the comunity.Everyone is staking his free coins and waits for a miracle.Go to buy,till the price get higher,there is no problem to get this coin to 1BTC,but you loosers have to invest into it.I have started to buy PMP,and i will invest everything i can mine into it.But one person is too little.What do you think?If you just wait till the price grows,it can happen,that everybody does it=coin is dead.If you buy now for 0.001 BTC tomorrow the price can be 0.1 BTC.The more you buy,the bigger the coin,then will BIttrex or any other exchange add it without any need to vote.

So my friends,if you wanna wait do it,waiting kills coins.In the end,it can happen,you will have 500 PMP without any value.

Well, yes, the coin needs buy support, and what generates buy support is excitement that the value will increase. The coin is gaining new features regularly, and I think it's a great investment for the future of the coin.

Remember SYNC?Great coin,new features,price went up to 2 BTC.Now its around 0.7 BTC,and falling.Why?People just stake,waiting for more coins.If you know,how money work,you know,that the value depends on circulation.Not moving,dead coin without any value.I can also have have my wallet full of German Marks,but they have no value.People selling low,are the guys,who dont believe in another coins,they got some coins for free.Now they are selling,and investing into their favourite coins.Good for us,we can buy cheap.We get more coins,and the price will grow.Your stupid excitement will come,as the price gets higher.Waiting for a miracle doesnt work.Even the best dev cannot force you to buy the fucking coin,if you dont want to.
And for the devs:Try to make a store,to sell stuff in PMP,maybe mining rigs.....Remember,coins in wallet are just another dead currency.
portugal
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
September 21, 2014, 08:53:46 AM
 #1131

Buy on Comkort,i did.And i will buy more.

Thanks for the info. Smiley
Nullu
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
September 21, 2014, 10:25:39 AM
 #1132

I remember during PMC where we talked about looking for a pool that would allow you to indirectly mine PMC by mining other currencies, selling them, then buying up PMC. Are there still any POS mining pools around? They used to be quite popular.

Multipool is not needed,you can do it yourself.Mine another coin,sell,and buy PMP.Simple.The problem is,that this coin has no trust among the comunity.Everyone is staking his free coins and waits for a miracle.Go to buy,till the price get higher,there is no problem to get this coin to 1BTC,but you loosers have to invest into it.I have started to buy PMP,and i will invest everything i can mine into it.But one person is too little.What do you think?If you just wait till the price grows,it can happen,that everybody does it=coin is dead.If you buy now for 0.001 BTC tomorrow the price can be 0.1 BTC.The more you buy,the bigger the coin,then will BIttrex or any other exchange add it without any need to vote.

So my friends,if you wanna wait do it,waiting kills coins.In the end,it can happen,you will have 500 PMP without any value.

Well, yes, the coin needs buy support, and what generates buy support is excitement that the value will increase. The coin is gaining new features regularly, and I think it's a great investment for the future of the coin.

Remember SYNC?Great coin,new features,price went up to 2 BTC.Now its around 0.7 BTC,and falling.Why?People just stake,waiting for more coins.If you know,how money work,you know,that the value depends on circulation.Not moving,dead coin without any value.I can also have have my wallet full of German Marks,but they have no value.People selling low,are the guys,who dont believe in another coins,they got some coins for free.Now they are selling,and investing into their favourite coins.Good for us,we can buy cheap.We get more coins,and the price will grow.Your stupid excitement will come,as the price gets higher.Waiting for a miracle doesnt work.Even the best dev cannot force you to buy the fucking coin,if you dont want to.
And for the devs:Try to make a store,to sell stuff in PMP,maybe mining rigs.....Remember,coins in wallet are just another dead currency.


I'm well aware POS can cause downward selling pressure, but I'm also aware that a coin with new features drives upward selling pressure, as people invest in a coin hoping for it to rise.

I totally agree with you, by the way. Coins just sitting in a wallet is no good for a coin. We do need services. We do need reasons to move the coin around. To buy it more than sell it.

BTC - 14kYyhhWZwSJFHAjNTtyhRVSu157nE92gF
Falco9
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
September 21, 2014, 03:09:34 PM
 #1133

What are the dates for the giveaways.
yogibaer
Legendary
*
Offline Offline

Activity: 1131
Merit: 1001



View Profile
September 21, 2014, 03:10:57 PM
 #1134

What are the dates for the giveaways.

The beginning of October.
plopper50
Member
**
Offline Offline

Activity: 64
Merit: 10


View Profile
September 21, 2014, 05:23:20 PM
 #1135

Please add the comkort exchange to the OP so people know PreminePlus is on an exchange.

https://comkort.com/market/trade/pmp_btc
orgi666
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
September 21, 2014, 06:00:52 PM
 #1136

Please add the comkort exchange to the OP so people know PreminePlus is on an exchange.

https://comkort.com/market/trade/pmp_btc

+1
teamcryptonator
Hero Member
*****
Offline Offline

Activity: 749
Merit: 503

Blockchain Just Entered The Real World


View Profile
September 21, 2014, 09:29:05 PM
 #1137

PMP got listed on Cryptonator https://www.cryptonator.com/rates/PMP-BTC

      ███████████████████████
     ███▄ ▄▄▄▄   ▄▄▄█▀▀  █████
    ███  █▀  ▀█▀▀▀       ▐█ ███
   ███  ▄██▄▄█▀▄▄▄        █▌ ███
  ███ ▄█▀  █     ▀█▄▄     ▐█  ▐██
 ███▄█▀    █        ▀█▄▄  ▄▄▄ ██
████▀      █           ▀██▀   ▀█ ██
 ██▀█▄     █          ▄█▀▀█▄▄▄█▀██
  ██ ▀█▄   █      ▄▄█▀▀    ▐█  ██
   ██  ▀█▄█▀▀█▄▄█▀▀        █▌ ██
    ███  █▄  ▄█▀█▄▄▄      █▌███
     ███  ▀▀▀▀     ▀▀▀█▄▄▐████
      ███████████████████████

 ▄▄       ▄▄▄        ▄▄   ▄▄▄▄▄ 
  ▀█▄   ▄█▀ ▀█▄    ▄█▀ ▄█▀▀   ▀▀█▄
    ▀█▄█▀     ▀█▄▄█▀  ▐█         █▌
    ▄█▀█▄      ▄█▀    ▐█         █▌
  ▄█▀   ▀█▄  ▄█▀       █▄       ▄█
▄█▀       ▀██▀          ▀▀█▄▄▄█▀▀


Network
BLOCKCHAIN JUST ENTERED THE REAL WORLD
..Decentralized Crypto-Location Oracle Network.
.........GET WHITELISTED FOR TOKEN SALE ( Limited )..........

.WHITE PAPER.  ││  ANN Thread  Telegram   Medium   Twitter   Reddit
Nullu
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


View Profile
September 21, 2014, 09:41:47 PM
 #1138

PMP got listed on Cryptonator https://www.cryptonator.com/rates/PMP-BTC

That's great. We'll have it added to the OP, also.

BTC - 14kYyhhWZwSJFHAjNTtyhRVSu157nE92gF
portugal
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
September 22, 2014, 08:18:12 AM
 #1139

PMP got listed on Cryptonator https://www.cryptonator.com/rates/PMP-BTC

Wow!!! Smiley
minlihua
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 22, 2014, 08:30:26 AM
 #1140

What's the most innovative feature for PMP?

████→→       ● DeepOnion                                                                       ✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯✯ 
████→→       ● Tor integrated, 100% anonymous!                               
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!