Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - abit

Pages: 1 ... 242 243 244 245 246 247 248 [249] 250 251 252 253 254 255 256 ... 309
3721
Bounty is all yours, where do you want the BitUSD sent?
you can send it all to "xeroc" .. I'll share a cut with @abit
Thanks  ;) my account is "abit"

3722
General Discussion / Re: [Crowd Fund] Hangout Transcripts for BitShares
« on: December 07, 2015, 06:15:58 pm »
Bump

3723
General Discussion / Re: Proposal for Having Alternate Smartcoin Designs
« on: December 07, 2015, 06:12:33 pm »
Opinions and facts must be tested.  How are the alternatives being tested?

I tend to agree with proposal to test bitAssets which pay premium or interest to holders. Setting positive interest would motivate holders and demotivate borrowers, increasing demand and reducing supply which would push the price up. Setting negative interest would reduce  demand and increase supply which would push the price down.  This could give an efficient way to keep the asset close to peg.
Why not fork a chain and test if impossible to test by a private MPA?

3724
中文 (Chinese) / Re: transwiser发行私人智能货币的计划
« on: December 05, 2015, 08:13:48 pm »
@abit
base/quote 那个参数是干嘛用的?
这个参数是core_exchange_rate里的,付transaction费时用来换算的。你可以看看我给你的例子。

Quote
另外发行一种智能资产以其他资产作为抵押而不是BTS,现在已经是实现了对吗
这个不太清楚。。如果是说bond,应该是还没实现

3725
General Discussion / Re: Network Stability Under Graphene
« on: December 05, 2015, 06:47:58 pm »
Now that I'm voted out I can share a secret  ;)

Graphene has been so rock-solid that I was able to scale back my infrastructure to running a single t2.micro (plus a physical machine at home and another t2 ready to spin up in seconds).
Even on this low-end setup CPU utilization is close to zero, RAM is safely at around 60% and no latency issues.
During the two-months I've only had 33 missed blocks, all before the vesting-pay-bug fix. I now only scale up the machines during build.

Now, some witnesses are maintaining several four-core, 8GB machines, and you might think that it's somehow more secure, stable or scalable but the thing is, they have to dump their earned BTS to pay the bill. Meanwhile, I've never sold any BTS and am still able to easily scale up if/when blockchain usage picks up.

Graphene has exceeded expectations in terms of stability and footprint so much, that we ended up overpaying the witnesses. We can easily have twice as many witnesses or slash witness pay by half. And if the Blockchain starts demanding more resources we can always reevaluate.
Just a note, while the block chain is growing fast, the witness_node consumes much more memory than the beginning.

3726
Technical Support / Re: Price feed on CryptoFresh
« on: December 04, 2015, 11:30:40 pm »
Ah.. you must be referring to the main assets list.. that does use settlement_price, not CER, but the page regenerates only twice per day because it's pretty heavy. So you may have just seen slightly stale price

These:
On OpenLedger:
Quote
PUBLISH FEED   in.abit published feed  3.87950029 KRW/BTS     7 minutes ago
PUBLISH FEED   in.abit published feed  0.00317046 EUR/BTS     7 minutes ago
On CryptoFresh:
Quote
in.abit reports a price of 4.08 KRW/BTS
block 1,498,653 - 7 minutes ago - 0.1 BTS
in.abit reports a price of 0.00334 EUR/BTS
block 1,498,653 - 7 minutes ago - 0.1 BTS

3727
中文 (Chinese) / Re: 有关锚定的句子
« on: December 04, 2015, 07:38:25 pm »
这样看来,bts死定了啊。
锚定不了的话,失败归零;锚定了又没法拉盘。

3728
中文 (Chinese) / Re: transwiser发行私人智能货币的计划
« on: December 04, 2015, 07:32:45 pm »
对参数设置的初步设想:
与BITCNY一样,但做以下两点改动:

1.喂价有效期改为1小时。
2.强制清算补偿设为2%。

欢迎吐槽。

Code: [Select]
  "force_settlement_offset_percent": 2,

这个应该要设成200,或者可能是-200。相关代码在 libraries/chain/db_update.cpp :

Code: [Select]
         auto& pays = order.balance;
         auto receives = (order.balance * mia.current_feed.settlement_price);
         receives.amount = (fc::uint128_t(receives.amount.value) *
                            (GRAPHENE_100_PERCENT - mia.options.force_settlement_offset_percent) / GRAPHENE_100_PERCENT).to_uint64();
         assert(receives <= order.balance * mia.current_feed.settlement_price);

         price settlement_price = pays / receives;

还有这段是有问题的,base和quote的asset_id不能一样,amount不能是0:
Quote
Code: [Select]
"core_exchange_rate": {
    "base": {
      "amount": 0,
      "asset_id": "1.3.0"
    },
    "quote": {
      "amount": 0,
      "asset_id": "1.3.0"
    }
  },


3729
中文 (Chinese) / Re: 请为delegate.webber投票~
« on: December 04, 2015, 03:53:35 pm »
唉,一点都不激动。
问题多多,价格低迷。

3730
However, it seems like the UIA issuer cannot collect market fee (in BTS!) from the trader who will be "receiving BTS" (a.k.a. UIA sellers) when a trade takes place. Why is that? Don't you think it's necessary for UIA issuer to be able to collect market fee from both the UIA buyer and seller, instead of the buyer only?

That would indeed be suboptimal. Can anyone confirm this is the design?

If this *is* the design, how can you expect existing exchanges to accept 50% less revenue when onboarding with bitshares?
If exchanges use exchange.bts/exchange.fiat pairs then should be no problem.

3731
General Discussion / Re: feed price should expired over 1 hour
« on: December 04, 2015, 03:43:45 pm »
now we have 17 witness, about 11 witness published price at 0.02, but the mdedian price is still 0.0216,
because there are almost 13 wintess don't update price over 1 hour
some of them are voted out, so they can't publish price any more
so you'd better use the price published in 1 hour, or exclude the unactive witness's price

Technically it can be done with a committee proposal. Here are options in bitasset_data:
Code: [Select]
    "options": {
      "feed_lifetime_sec": 86400,
      "minimum_feeds": 7,
      "force_settlement_delay_sec": 86400,
      "force_settlement_offset_percent": 0,
      "maximum_force_settlement_volume": 200,
      "short_backing_asset": "1.3.0",
      "extensions": [

      ]
    },
It seems that current setting is 24 hours.

3732
Technical Support / Price feed on CryptoFresh
« on: December 04, 2015, 03:34:49 pm »
@roadscape Look like the price feeds displayed on cryptofresh.com are 5% more than which displayed on OpenLedger.

3733
Technical Support / Issue with price feed script
« on: December 04, 2015, 03:32:25 pm »
@xeroc I'm using your latest script with this config:
Code: [Select]
...
                   "CNY" : {
                       "metric" : "weighted",
                       "sources" : ["btc38",
                                    "yunbi",
                                    "huobi",
                                    "btcchina",
                                    "okcoin",
                                   ]
                   }
...
feedSources["yunbi"]    = feedsources.Yunbi(allowFailure=True,scaleVolumeBy=0.3)
feedSources["btc38"]    = feedsources.Btc38(allowFailure=True)
feedSources["btcchina"] = feedsources.BtcChina(allowFailure=True,scaleVolumeBy=0.2)
feedSources["okcoin"]   = feedsources.Okcoin(allowFailure=True,scaleVolumeBy=0.2)
feedSources["huobi"]    = feedsources.Huobi(allowFailure=True,scaleVolumeBy=0.2)
But the price of BTS/CNY is usually 5% higher than normal (e.g. result=0.023, should be 0.022)
After I disabled bts/btc pairs of btc38 and yunbi, then the result looks fine.

Since volumes of bts/btc on btc38 and yunbi are far less than those of bts/cny (about 1:1000), I don't know why the weighted result is so far from the bts/cny price only (even though price of bts/btc is somehow higher).

3734
General Discussion / Re: BitShares 2.0 Roadmap (for the next 4-6 months)
« on: December 04, 2015, 10:02:49 am »
https://bitshares.org/roadmap.xml
"This XML file does not appear to have any style information associated with it. The document tree is shown below."
  ???

3735
据说, obit 在英文里一般用作 obituary 的简写。

Pages: 1 ... 242 243 244 245 246 247 248 [249] 250 251 252 253 254 255 256 ... 309