Bitcoin Forum
April 24, 2024, 02:16:38 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 6 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 ... 62 »
  Print  
Author Topic: closed  (Read 164701 times)
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
October 22, 2011, 01:37:55 PM
Last edit: July 02, 2015, 02:49:42 PM by Kumala
 #1

thread closed

Hacked Account! Don't send any money.
1713924998
Hero Member
*
Offline Offline

Posts: 1713924998

View Profile Personal Message (Offline)

Ignore
1713924998
Reply with quote  #2

1713924998
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713924998
Hero Member
*
Offline Offline

Posts: 1713924998

View Profile Personal Message (Offline)

Ignore
1713924998
Reply with quote  #2

1713924998
Report to moderator
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
November 09, 2011, 03:21:13 AM
 #2

The exchange just released the trading of geistgeld and de
vcoins.

Hacked Account! Don't send any money.
shtylman
Sr. Member
****
Offline Offline

Activity: 243
Merit: 250



View Profile
November 09, 2011, 04:45:35 PM
 #3

Do you guys plan to get a 3rd party SSL certificate? Or continue using a self signed cert?

What are you security practices?
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
November 10, 2011, 05:28:12 AM
 #4

I'm getting the 3rd party SSL, ordered it last week, but it seems to take my provider ages to get process my purchase and install it. I hope it's all done by end of this week (I should have ordered it directly form the SSL provider rather than going through my hosting provider).

In regards to security, I made some comments on the post below, that sheds some light into the practices:
https://bitcointalk.org/index.php?topic=34586.120

Obviously we also have measures in place to address:
Session Fixation
Brute Force Account attacks
Session Hijacking
CSRF (Cross Site Request Forgery)
Cross Site Scripting (XSS)
SQL, CSS, Ajax injection

We are taking the security issues very serious and constantly update our countermeasures but obviuosly we dont want to discuss them in every detail here in public.

Hacked Account! Don't send any money.
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
November 13, 2011, 03:20:48 PM
 #5

SSL:  A third party SSL certificate has been installed and configured for https://vircurex.com

New feature released:  Option trading.  Issue or buy options, we support sell-options (the issuer commits to buy from the buyer at a given price) as well as buy-options (the issuer commits to buy coins at a given price).

Hacked Account! Don't send any money.
420
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500



View Profile
September 27, 2012, 02:22:32 AM
 #6

Is this the official thread? If not where is it

Donations: 1JVhKjUKSjBd7fPXQJsBs5P3Yphk38AqPr - TIPS
the hacks, the hacks, secure your bits!
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
September 27, 2012, 05:33:34 AM
 #7

Good point. It somehow wondered off to the Alt-Chain Threads. I'll consolidate them back to this thread and update the first posting to reflect current status.

Hacked Account! Don't send any money.
420
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500



View Profile
September 27, 2012, 06:00:28 AM
 #8

Good point. It somehow wondered off to the Alt-Chain Threads. I'll consolidate them back to this thread and update the first posting to reflect current status.

if you run it please confirm me what the volume is daily for NMC/btc trades

Donations: 1JVhKjUKSjBd7fPXQJsBs5P3Yphk38AqPr - TIPS
the hacks, the hacks, secure your bits!
creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
October 24, 2012, 05:55:33 PM
 #9

I've a question. Why the LIFO order filling rather than a common sense FIFO model? If for instance I place an order to buy or sell and someone else piles on at the same price, why aren't older orders filled first? It's frustrating to set a price point and wait for an order to fill only to have someone else "piggy-back" your price point and have their newer orders filled ahead of yours.  Angry

Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
October 25, 2012, 02:00:06 AM
 #10

It is intended to be FIFO. I'll review the code and double check.

Hacked Account! Don't send any money.
creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
October 25, 2012, 02:48:08 AM
 #11

Sorry, didn't mean to be rude, I should've cooled out a little before posting. I just assumed it was FIFO, then today I waited patiently for hours for the orders to move my direction only to have people pile on at my chosen price at the last second. I didn't think anything of it, till their orders executed and my older order at the same price just sat there. Felt like I'd be fleabay sniped. Smiley

Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
October 25, 2012, 12:37:24 PM
 #12

I can confirm, the order matching is based on FIFO principle.

For those who are a familiar with coding, here the actual code to get the buy order:
          o00 = Order.where("status=0 and currency1_id=? and currency2_id=? and otype=0",cid1,cid2).order("unitprice desc").order("updated_at asc").first

As you can see, first we sort by unitprice (desc because we are looking for the buy orders) and then (in case there are multiple ones with the same unit price) we sort via updated_at (which is the timestamp when your released the order).   Same logic applies for sell orders except we go "unitprice asc" instead.

But how to explain your observation?  This article describes this in detail:
  https://bitcointalk.org/index.php?topic=88901.0

Hacked Account! Don't send any money.
creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
November 19, 2012, 06:24:47 PM
 #13

When you guys suspend trading on a currency without warning as you did today with LQC you are stealing from those that have long term option contracts purchased on your exchange. Did anyone at Vircurex even consider this? Are you offering refunds to those that purchased contracts that you've now made worthless? I fail to see how anyone can purchase contracts on your exchange with the expectation that they'll be worth anything in the future if you guys keep swapping currencies in and out of your exchange the way you have been with I0, PPC, and now LQC.

Sincerely,
Not happy.

MPOE-PR
Hero Member
*****
Offline Offline

Activity: 756
Merit: 522



View Profile
November 19, 2012, 08:48:08 PM
 #14

When you guys suspend trading on a currency without warning as you did today with LQC you are stealing from those that have long term option contracts purchased on your exchange. Did anyone at Vircurex even consider this? Are you offering refunds to those that purchased contracts that you've now made worthless? I fail to see how anyone can purchase contracts on your exchange with the expectation that they'll be worth anything in the future if you guys keep swapping currencies in and out of your exchange the way you have been with I0, PPC, and now LQC.

Sincerely,
Not happy.

Ouch.

Were the options you bought actually underwritten by Vircurex tho? I didn't even know they did that.

My Credentials  | THE BTC Stock Exchange | I have my very own anthology! | Use bitcointa.lk, it's like this one but better.
creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
November 19, 2012, 09:41:03 PM
 #15

No, they were written by another customer, but through no fault of that other customer my options involving LQC are now worthless. If Vircurex had issued a warning that they were going to discontinue LQC trading in xx days and suspended all new option contracts that'd have sucked, but I would've dealt. Instead I have a contract that expires in February that's a total loss now. You could buy contracts involving LQCs as late as this morning which would now have zero value. This is completely unprofessional.

Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
November 19, 2012, 11:32:26 PM
 #16

We will come up with a proposal for the options and contact the options holders directly.

Hacked Account! Don't send any money.
creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
November 19, 2012, 11:54:17 PM
 #17

Excellent, I'll look forward to a response to the email I sent support earlier today then.

creativex
Sr. Member
****
Offline Offline

Activity: 434
Merit: 250



View Profile
November 20, 2012, 03:41:07 PM
 #18

Vircurex resolved this situation to my satisfaction.

MPOE-PR
Hero Member
*****
Offline Offline

Activity: 756
Merit: 522



View Profile
November 20, 2012, 04:35:58 PM
 #19

Vircurex resolved this situation to my satisfaction.

Ah that's good then.

My Credentials  | THE BTC Stock Exchange | I have my very own anthology! | Use bitcointa.lk, it's like this one but better.
Kumala (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 500



View Profile
December 11, 2012, 02:15:02 PM
 #20

We activated USD/EUR trading.   

Hacked Account! Don't send any money.
Pages: [1] 2 3 4 5 6 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 ... 62 »
  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!