Bitcoin Forum
June 10, 2023, 12:16:18 AM *
News: Latest Bitcoin Core release: 25.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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 ... 97 »
  Print  
Author Topic: [ANN] XAYA 🌟True Blockchain Gaming 🌟 Fully Decentralized Games  (Read 94788 times)
domob
Legendary
*
Offline Offline

Activity: 1128
Merit: 1150


View Profile WWW
July 14, 2017, 05:38:48 PM
 #461

I know it has been quiet here ... but we've been working hard on getting the project forward.  I'm very excited to share with everyone now an important improvement that we've made to the original game-channels concept, which will further boost Chimaera's ability for trustless off-chain games:

Improved Game Channels

Scalability is a critical difficulty for blockchains in general.  If one tries to put entire game worlds (like Huntercoin and Chimaera) onto a blockchain, this is even more true.  Therefore, off-chain solutions are critical for the future development and success of these projects.

A possible concept for off-chain interactions are game channels [1].  In the simplest case, they can be used to perform two-player, turn-based games.  It is possible to generalise the concept to other situations, but for the purpose of this post, we will consider this situation for simplicity.  (The same ways to generalise the concept as described in [1] can be applied, though.)

Roughly speaking, such a game works like this:

  • Both players send a transaction to the public blockchain which locks the prize money contributed by either player and fixes the conditions of their game as well as a key pair for each player.
  • The actual moves in the game are sent privately between the two players, signed by their keys.
  • Ideally, both players agree on the final outcome, and sign a release transaction together that pays the locked funds to the winning party.
  • In case of a dispute (one of the players stops to send moves, sends an invalid move or claims that the opponent did any of that), a special "dispute transaction" is sent and mined into the public blockchain.  This transaction publishes all moves, so that the "general public" can verify the claim and determine who is correct.
  • The disputed player gets a certain window of time to respond to the dispute, and may resolve it by sending a valid next move (again to the public blockchain).  In this case, the game continues privately between the two players as before.
  • If no dispute resolution is mined before the deadline, the dispute is deemed successful by the network and the locked funds are paid to the disputing player.

In theory, this system enforces that the game is performed fairly and in a trustless manner.  No-one can abuse it to "steal" the locked funds without properly winning the game (or if the opponent stops to respond).

However, an attacker might repeatedly wait with sending a next move, let the opponent dispute, and then resolve the dispute.  This is not a "rational" behaviour, but it could be used to annoy players on the network and bloat the blockchain in a bid to discredit any project built on top of game channels.  This kind of behaviour would also force (both) players to repeatedly pay transaction fees to the miners for including their dispute and resolution transactions.

We believe that there is an evolution to game channels that fixes this issue.  Before we can describe this protocol, let us introduce "ephemeral timestamps" first -- the core technology that enables the improved game channels.

[1] http://www.ledgerjournal.org/ojs/index.php/ledger/article/view/15

Ephemeral Timestamps

Ephemeral timestamps are a feature of a blockchain-based P2P network, which can satisfy these properties:

  • Nodes in the network can submit an arbitrary piece of data D for "ephemeral timestamping".  This gives them a timestamp for the current time T.
  • At a later stage, the timestamps obtained can be used to prove to the network that another node knew (or could have known if it would have cared) D at time T.  Such proofs can, in particular, be used in the consensus rules for transaction verification.
  • Such timestamps only need space in the blockchain when actually used later.  If not used, they burden the network only temporarily (processing cost and storage), but can be discarded after some time (thus "ephemeral").
  • Similarly, timestamps are free for nodes to send.  Only using them later requires a transaction fee.  Nevertheless, miners still have an incentive to process all timestamps (or at least nodes can incentivise miners to process theirs).

The actual implementation of this feature looks like this:

  • A timestamp request sent to the network contains the data D a node wants to store, as well as an entry promising a certain fee upon usage of the timestamp in the future.
  • Nodes on the network (in particular, miners) keep a memory pool for timestamp requests in addition to transactions.
  • When building a block, the miner selects timestamp requests it likes (for a rational miner those with the highest fee promise), and creates a Merkle tree with them.  The Merkle root hash is included into the block.
  • The full Merkle tree, on the other hand, is not part of the core block data.  Thus, at this point, the timestamps are not directly part of the blockchain, and do not cost any blockchain space (except for the constant overhead from the root hash).
  • However, nodes expect blocks that are not too old to be accompanied with the full Merkle tree when they receive them over the network.  Otherwise, the block will be considered invalid.  (Roughly speaking, this should apply to all blocks the node receives while running "fully synced".  During the initial blockchain sync or when catching up after being shut down for some time, the node accepts blocks without the Merkle tree.)

    Note that this does not cause issues with blockchain reorgs, either, if the time interval for which it is kept is not too short.  There is no fundamental harm in requiring the data to be kept for a day or a week (it is still ephemeral and won't lead to eternal blockchain growth), so that one can set the keep-time long enough to never see a reorg beyond that time.
  • To actually use a timestamp, a node has to send a transaction that includes the Merkle branch linking the data it timestamped to one of the blocks in the chain.  This transaction also needs to pay at least the fee promised in the timestamp request to the miner that originally confirmed the request, otherwise it is invalid.  It may also need to pay an extra fee on top for confirming the transaction itself, of course.

Finally, let us discuss how this implementation satisfies the claims:

  • Since the full Merkle tree of timestamping data is sent around the network at the time when the block was originally propagated, every node in the network that follows the regular rules sees all data.  This guarantees in particular that it was able to know the timestamped data around the time the block was created.  (This assumes that no partitioning-attack is going on and that propagation of a new block throughout the network is relatively fast.  Both assumptions should be valid for a healthy P2P network.)
  • The full Merkle tree can be discarded after some time, so that timestamp requests only burden the network temporarily and are not immediately part of the blockchain.
  • When the timestamps actually need to become part of the blockchain to prove something for consensus purposes, the node is forced to pay an appropriate fee.  This incentivises miners to actually include high-promising requests into the ephemeral Merkle tree, since it creates at least some probabilistic expectation of earning the fee later.  (See the next section for some more discussion about the incentive structure.)

The Incentive with Fee Promises

Let us now discuss the incentive structure provided to miners by the "fee promises" attached to timestamping requests.  It is of course very important to give miners an incentive to include requests into their blocks, and it is not directly clear that this is possible without actually paying a fee for the mere request alone.  However, we believe that the system described above provides sufficient incentive for miners.

The idea is this: Even if a time-stamping request does not by itself pay the miner a fee, there is a certain probability p that the user creating the request will actually want to use it later (as otherwise it would be pointless to create the request in the first place).  p can actually be measured in a real system by the miners and/or the network.  Then, since the user needs to pay at least the promised fee F to the original miner upon usage of the timestamp, the miner can (on average) expect a gain of p F for confirming the request.

It can of course be that p is quite low, but this just means that the fee promise F needs to be high enough to compensate the marginal cost that the miner has (e.  g., in longer propagation time of its block).  Furthermore, we believe that this cost will be rather low, since the processing of timestamp requests should not be very expensive to the miner and the network.

However, one potential issue remains: Even if there is some overall average probability p that each request will be used later and thus actually pays fees, a particular user could still send an unlimited number of timestamp requests for free with the intent to just DoS the network and never pay any fees.  If this turns out to be a problem, we can solve it by limiting the rate at which individual users can send requests: We can require that each time-stamping request must be signed by the private key of an output holding some minimum amount M of coins, and allow each such output to be used only for one request in each block.  With a maximum number C of coins in existence, this implies a hard cap of C / M timestamp requests per block.  Thus, as long as there are at least some legitimate users in the system (which have a non-zero probability of using their timestamps later on), p will be bounded from below and thus provide a non-zero incentive to miners for including every timestamp request.

(Instead of a strict rule that each output may only do a single request per block, one could also leave the decision to the miners.  By requiring deposited coins, one adds "valuable identities" to the requests.  With that, miners themselves can decide upon the rate of requests they accept from each such identity, and how they limit spam.)

Finally, note that if the ephemeral timestamps are used in a setup for game channels as described in the introduction, then the security deposits come for free: In this situation, one might require each timestamp to be linked to one of the game-opening transactions and signed by one of the keys published by the players.  This leads to a similar effect on adding a "valuable identity" and preventing abuse, while not requiring any additional effort on the side of the users.

Game Channels Again

Let us now finally come back to the topic of game channels, and discuss how ephemeral timestamps as discussed above can be used to improve them.  The idea here is pretty simple: For creating and resolving disputes, we no longer require nodes to get certain transactions mined.  Instead, they should send the corresponding data as timestamp requests.  By doing so, there is no actual cost in fees as long as all disputes get resolved.  Overall, the dispute process between Alice and Bob looks like this:

  • As already mentioned, if Bob stops to send his next move to Alice or sends only an invalid move, Alice sends a timestamp request with the history of the game, showing that she last made a move and is now waiting for Bob.
  • Since this data is published to the whole network, Bob will certainly receive it as long as he is still paying interest to the game.  In this case, he can send his next move in a dispute resolution to be timestamped as well.  To be valid, the resolution needs to be timestamped at most N blocks after Alice's dispute.
  • If all is well, Alice has now received a next move from Bob, and the game can continue privately.
  • If Bob does not send a resolution in time or if his move is actually invalid, Alice may send a claim transaction to the network after, say, 2 N blocks.  This transaction uses her original dispute timestamp to prove that she opened the dispute sufficiently long ago.  She pays the required fees out of pocket for this transaction.
  • Alice might try to cheat Bob out of the prize money by sending a claim even though Bob sent his next move.  In this case, Bob can create a counter-claim with his timestamp.  If the move was valid and sent in time (which can both be judged by the network), then he can prove that Alice' claim was fraudulent.  In this case, he gets the prize money unlocked and paid out by the network.
  • If, on the other hand, Alice' claim was right, she gets the prize money paid out after a certain amount of time in which no valid counter-claim is received.

This procedure ensures, in particular, that as long as a player is honest himself, he need not pay any fees except if successfully making a claim or counter-claim.  In this case, he also gets the prize money for sure, which then ideally pays for the fees and some.  So a dishonest player can never actually cause damage to the honest player, except for delaying the game to a certain limit.

There is one tiny issue that remains, though: If a player determines that her chance of actually winning the game is very small based on the current state, she may decide to stop responding instead.  This doesn't cause any extra loss for her and the opponent will get the prize, but will need to wait a bit longer for it and also needs to pay some more in fees.  This, however, is probably not a very bad situation, and we believe that it won't be a big problem in practice.  (Since, as mentioned, it is at least ensured that an honest player can never have any actual loss, and gets at least the prize money minus fees if the opponent misbehaves.)

Use your Namecoin identity as OpenID: https://nameid.org/
Donations: 1domobKsPZ5cWk2kXssD8p8ES1qffGUCm | NMC: NCdomobcmcmVdxC5yxMitojQ4tvAtv99pY
BM-GtQnWM3vcdorfqpKXsmfHQ4rVYPG5pKS | GPG 0xA7330737
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
1686356178
Hero Member
*
Offline Offline

Posts: 1686356178

View Profile Personal Message (Offline)

Ignore
1686356178
Reply with quote  #2

1686356178
Report to moderator
Fabricus
Member
**
Offline Offline

Activity: 98
Merit: 16


View Profile
July 20, 2017, 04:34:43 PM
 #462

Thanks for the update on the project... any news re a possible ICO or the snapshot? The main issue here is that I was holding my huntercoin on Poloniex (which stated they will support the Chimaera Snapshot) but as time goes by it looks like the odd of getting any chimaera coin thanks to the snapshot are rapidly decreasing to 0 so can the team of HUC / CHI make a comment to reinsure the investors or should we consider our investments lost?
muleroaa
Hero Member
*****
Offline Offline

Activity: 924
Merit: 526


GIF by SOCIFI


View Profile
July 20, 2017, 07:43:56 PM
 #463

Any more info on the release date of Chimaera or further specific timelines?

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

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
▓████████████████████████████████▓
███████████████████████▒░███████████
▄█████████████████▒░      ███████████▄
█████████████░░          ░████████████
█████████░              ░█████████████
██████████▓░░          ░██████████████
██████████████▓░       ███████████████
▀███████████████▒     ░██████████████▀
████████████████▒   ░███████████████
████████████████░ ░███████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
 ▀▀▀████████▀▀▀
.
JOIN OUR
TELEGRAM
AliasVicturus
Jr. Member
*
Offline Offline

Activity: 48
Merit: 1

Chimaera - Think it, Build it, PLAY IT


View Profile WWW
July 20, 2017, 08:35:21 PM
 #464

The Chimaera team is working very hard on the project.
What we can say now is that we will be updating everyone this month.
A new website is in the making where you'll learn more details about Chimaera.

The Huntercoin snapshot: you no longer need to keep hold of your coins, it was only for coins held at the specified block.

Regarding Poloniex, it was stated by Tristan (from Poloniex) that they would allow CHI coins to be redeemed if they were held in poloniex at the snapshot block.

Patrique

DECENTRALISED AUTONOMOUS UNIVERSES
YoyodyneSystems
Legendary
*
Offline Offline

Activity: 1386
Merit: 1023



View Profile
July 21, 2017, 05:20:02 AM
Last edit: July 31, 2017, 07:36:06 AM by YoyodyneSystems
 #465

I am looking forward to this project. I expect a slew of new coins to come out on Poloniex in the coming months now that the Bitcoin drama is going to be calming down. Would not be surprised to see Chimaera listed.
muleroaa
Hero Member
*****
Offline Offline

Activity: 924
Merit: 526


GIF by SOCIFI


View Profile
July 21, 2017, 02:03:49 PM
 #466

The Chimaera team is working very hard on the project.
What we can say now is that we will be updating everyone this month.
A new website is in the making where you'll learn more details about Chimaera.

The Huntercoin snapshot: you no longer need to keep hold of your coins, it was only for coins held at the specified block.

Regarding Poloniex, it was stated by Tristan (from Poloniex) that they would allow CHI coins to be redeemed if they were held in poloniex at the snapshot block.

Patrique

Nice, should be soon enough. Looking foward to it!

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

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
▓████████████████████████████████▓
███████████████████████▒░███████████
▄█████████████████▒░      ███████████▄
█████████████░░          ░████████████
█████████░              ░█████████████
██████████▓░░          ░██████████████
██████████████▓░       ███████████████
▀███████████████▒     ░██████████████▀
████████████████▒   ░███████████████
████████████████░ ░███████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
 ▀▀▀████████▀▀▀
.
JOIN OUR
TELEGRAM
beyinsi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
July 27, 2017, 09:38:53 PM
 #467

when will u update https://chimaera.io/ ?

We are looking at first half/ July for the website to be updated, with pre token sale info hopefully at the end of July / early August.
Sinone
Member
**
Offline Offline

Activity: 597
Merit: 10


View Profile
July 28, 2017, 01:56:12 AM
 #468

ok...besides the site #update - poloniex still support has been a ghost recently - supposed to return a wallet id to provide those CHI that many people got during the funding on HUC,. those blocks were completed at 16800000 something like nobody ever seen yet.
Do you get confirmation from poloniex about when they will be able to provide those wallet addresses.?
cryptor47
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
July 28, 2017, 03:58:41 PM
 #469

Looking forward to this project from the developers of HunterCoin as it was one of the most profitable coins from me ever, not to mention that it was launched fairly and with transparency.
I say, take your time and do it right!
Fabricus
Member
**
Offline Offline

Activity: 98
Merit: 16


View Profile
July 31, 2017, 12:51:39 PM
 #470

Quick thought, whatever the product it's all about the time to market momentum (imagine apple launching the iPhone after the competition Wink) and in regard to the current context (ICO being regulated, crypto world focused on the BTC fork / politics, etc.) I'd say they don't have 'all the time in the world' to launch the project...

Just my opinion but I'd say you should deliver something pretty quickly or suffer the consequences of a market that has radically evolved (away from your project)...

Plus it's been a while since the snapshot and I suppose investors are getting impatient to have some solid update on their money status (aka the chimaera project ;-)) - Of course I'm amongst these investors so I might be biased in my opinion but I'd like to share it :p
ryumaster
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
July 31, 2017, 04:24:19 PM
Last edit: July 31, 2017, 05:26:50 PM by ryumaster
 #471

Hi all, we've updated the website with some more info whilst we finalise the presale details: https://chimaera.io
jeffthebaker
Legendary
*
Offline Offline

Activity: 1526
Merit: 1034


View Profile
July 31, 2017, 11:54:22 PM
 #472

Hi all, we've updated the website with some more info whilst we finalise the presale details: https://chimaera.io

Great to see some more information put into place. I've been watching this thread closely since the first announcement and I'm very excited to participate in this project.

However, I would like to know how you guys are going to approach competition that has recently popped up? There seem to be several similar currencies that are being announced around this time (drox is the most similar). Will you guys get established developers on board? How will you guys bring the content here versus elsewhere?
RenegadeMind
Copper Member
Hero Member
*****
Offline Offline

Activity: 1380
Merit: 504


THINK IT, BUILD IT, PLAY IT! --- XAYA


View Profile WWW
August 01, 2017, 12:23:07 AM
 #473

I've been watching this thread closely since the first announcement and I'm very excited to participate in this project.

You and me both. I was one of the first Huntercoin players, and loved it. This is very much next level stuff.


However, I would like to know how you guys are going to approach competition that has recently popped up?

Good question. (I've been working with the team [jumped at the chance!], so I can't say much. That's up to Andrew and Bas to put out.)

There seem to be several similar currencies that are being announced around this time (drox is the most similar).

I read up on that. I don't think that Droxne is competing in the same space. I've also seen a couple others, but what the different technologies are doing isn't the same, so all these projects seem to occupy different spaces, as far as I can see.

Have a closer, slow read of the Chimaera web site. It's doing some very cool stuff. 

Will you guys get established developers on board?

What was the first fork of Bitcoin? Wink (Check the team in the first post.)


muleroaa
Hero Member
*****
Offline Offline

Activity: 924
Merit: 526


GIF by SOCIFI


View Profile
August 01, 2017, 12:53:11 AM
 #474

Hi all, we've updated the website with some more info whilst we finalise the presale details: https://chimaera.io

The site looks really slick, looking forward to see this develop.

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

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
▓████████████████████████████████▓
███████████████████████▒░███████████
▄█████████████████▒░      ███████████▄
█████████████░░          ░████████████
█████████░              ░█████████████
██████████▓░░          ░██████████████
██████████████▓░       ███████████████
▀███████████████▒     ░██████████████▀
████████████████▒   ░███████████████
████████████████░ ░███████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
 ▀▀▀████████▀▀▀
.
JOIN OUR
TELEGRAM
snailbrain (OP)
Legendary
*
Offline Offline

Activity: 1807
Merit: 1020



View Profile
August 01, 2017, 07:01:32 AM
 #475

Hi all, we've updated the website with some more info whilst we finalise the presale details: https://chimaera.io

Great to see some more information put into place. I've been watching this thread closely since the first announcement and I'm very excited to participate in this project.

However, I would like to know how you guys are going to approach competition that has recently popped up? There seem to be several similar currencies that are being announced around this time (drox is the most similar). Will you guys get established developers on board? How will you guys bring the content here versus elsewhere?

I don't think droxne or anyone else is doing the same thing that i can see?

i think the use of the term 'gaming platform' is being used differently Smiley

cryptor47
Full Member
***
Offline Offline

Activity: 252
Merit: 100


View Profile
August 05, 2017, 06:59:13 PM
 #476

Website looks great. I'm looking forward to this project and will likely chip in (only did 1 ICO before worth investing) when more details are provided.
Hoping devs manage to provide, looks huge.
YoyodyneSystems
Legendary
*
Offline Offline

Activity: 1386
Merit: 1023



View Profile
August 10, 2017, 04:13:21 AM
 #477

Getting eager!
Rumhurius
Legendary
*
Offline Offline

Activity: 1672
Merit: 1046


Here we go again


View Profile
August 11, 2017, 11:17:06 PM
 #478

I hope polo will be still arround if this airdrop taking place.

prolly in 2020 :/

beyinsi
Hero Member
*****
Offline Offline

Activity: 742
Merit: 501


View Profile
August 13, 2017, 10:57:50 PM
 #479

Hi all, we've updated the website with some more info whilst we finalise the presale details: https://chimaera.io

Great to see some more information put into place. I've been watching this thread closely since the first announcement and I'm very excited to participate in this project.

However, I would like to know how you guys are going to approach competition that has recently popped up? There seem to be several similar currencies that are being announced around this time (drox is the most similar). Will you guys get established developers on board? How will you guys bring the content here versus elsewhere?

I don't think droxne or anyone else is doing the same thing that i can see?

i think the use of the term 'gaming platform' is being used differently Smiley

When will ICO happen? Whats chi roadmap? etc
give us some info...
Jimmy2011
Hero Member
*****
Offline Offline

Activity: 589
Merit: 500



View Profile
August 15, 2017, 06:06:52 AM
 #480


One of the difficulties for game on blockchain is the scaling issue, so how do you think of building game on tangle, that is a DAG structure. Please refer to iota.org , thanks.


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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 ... 97 »
  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!