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 - freedom

Pages: 1 [2] 3 4 5 6 7 8 9 ... 21
16
按照教材一步步导入,0.9.3c上显示余额15wBTS,导入2.0只有1w多
显示15W是因为你没同步数据区块吧,实际同步完应该就剩1W多

17
中文 (Chinese) / Re: BTS新节点发布
« on: May 16, 2017, 09:31:37 am »
是的,拉专线实在是太贵,在找最优方案,会越来越好的,先跑着。

18
中文 (Chinese) / BTS新节点发布
« on: May 15, 2017, 11:55:52 pm »
见证人:delegate.freedom
节点:wss://freedom.bts123.cc:15138
内存:128G
cup:24线程
带宽:10M
地点:湖南长沙
双电+UPS,目前带宽有点低,在准备增加带宽,争取做一个超牛逼的节点,给大家一个更多的节点选择

19
Stakeholder Proposals / Re: [Witness Proposal] sahkan-bitshares
« on: April 14, 2017, 02:37:52 pm »
sorry delegate.freedom RAM not 4GB,is 16GB,  36 months paid
备用服务器:128GB  32 Cores  1TSAS 

20
General Discussion / Re: A plan to revive the value of the BTS token
« on: March 16, 2017, 06:47:06 am »
 +5%

21
General Discussion / Re: how about to raise block reward?
« on: March 01, 2017, 01:49:02 am »
我能提供稳定的喂价,希望得到xeroc的支持,sorry my english...
见证人:delegate.freedom
服务器:
阿里云
2核16G
3年
只跑BTS见证人
另外还有1台备用服务器

我来自中国的茄子,我是中国BTS最大的粉丝之一,圈内无人不知。
2013年PTS发布之初就跟随BM,挖过PTS,投了大量AGS。
BTS的很多活动都有曾参与,包括mumber...虽然听不懂
在国内一直是最活跃的份子之一。经常与
bitcarb,alt,abit,ebit,xn-delegate,yao,强哥,白菜,still...
交流BTS经验,促进BTS发展~~~~~~~
.
但是my english...所以一般只活跃在国内。
我能提供稳定准确喂价,希望xero支持。3q

23
新手入门 / Re: ubuntu下安装bts2.0 见证人
« on: September 05, 2016, 03:14:01 am »
补充win7 64 sever下,做WSS节点的方法。
1、注册域名:一定要留自己的邮箱,申请证书时要用到。
2、申请证书:https://buy.wosign.com/free/#ssl     A记录解析没限制。但如果域名用cname解析就用二级域名,空的主机名不能设置cname。
3、等待通过,20分钟左右,然后下载证书。
4、解压:for Apache.zip              复制证书          2_你的域名.crt   和    3_你的域名.key     2个文件到桌面上。
5、cmd
cd desktop
copy 2_你的域名.crt /b + 3_你的域名.key /b server.pem

6、复制桌面生成的server.pem到   *\BitShares 2\bin  目录下
7、修改启动的bat文件如下并保存。
cd "%~dp0
witness_node.exe --rpc-endpoint 0.0.0.0:8090 --rpc-tls-endpoint 0.0.0.0:8089 -p server.pem
8、双击bat文件启动就可以了。

访问WSS用8089端口,WS用8090端口

至于内网没有公网IP,可以用花生壳或者nat123。

24
新手入门 / Re: ubuntu下安装bts2.0
« on: August 04, 2016, 06:29:05 am »
alt喂价安装

https://github.com/pch957/btsprice                                                                                               GITHUB
https://bitsharestalk.org/index.php/topic,20529.msg268242.html#msg268242                   论坛

代码:
pip3 install btsprice
pip3 install btsprice --upgrade
git clone https://github.com/pch957/btsprice.git
cd btsprice
python3 setup.py install --user
btsprice --config config.json

------------------------------------------
需要安装
autobahn安装0.12.1
这是btsprice的一个依赖版本过高

或者改源代码
/usr/local/lib/python3.4/dist-packages/btspusher/wamp.py

from autobahn.websocket.protocol import parseWsUr1
改成
from autobahn.websocket.util import parse_url
在把这个文件里的parseWsUrl改成parse_url
就OK了

我是改的代码
---------------------------------------------------------


建立config.json文件
地址:https://github.com/pch957/btsprice/blob/master/config.json.sample
#####################
{
    "witness": "",
    "timer_minute": 2,
    "asset_list": [
        "BTC", "SILVER", "GOLD", "TRY", "SGD", "HKD", "NZD", "CNY", "TCNY",
    "MXN", "CAD", "CHF", "AUD", "GBP", "JPY", "EUR", "USD", "KRW", "TUSD", "ARS"],
    "cli_wallet": {
        "host" : "localhost",
        "port" : 8092,
        "user" : "",
        "passwd" : "",
        "unlock" : ""
    },
    "price_limit": {
        "common": "only update price feed when the change rate is between 1% ~ 50%",
        "change_min": 1,
        "change_max": 50,
        "common": "spread bid price to price*(1+spread), ask price to price*(1-spread)",
        "common": "excute the order book, get the real price",
        "spread": 0.01,
        "common": "we use the average price in this time",
        "filter_minute": 30
    },
    "market_weight": {
        "poloniex_btc": 1,
        "yunbi_cny": 1,
        "btc38_cny": 1,
        "btc38_btc": 1,
        "bter_cny": 0
    },
    "asset_config": {
        "default": {
            "core_exchange_factor": 1.01,
            "maintenance_collateral_ratio": 1750,
            "maximum_short_squeeze_ratio": 1100
        },
        "TCNY": {"maximum_short_squeeze_ratio": 1001},
        "TUSD": {"maximum_short_squeeze_ratio": 1001}
    },
    "pusher": {
        "common": "set enable to 1, if you want to subscribe data from pusher service",
        "enable": "1",
        "user": "",
        "password": ""
    }
}
####################
注意把tcny和tusd删除掉,这个有喂价权限限制。
并修改
"witness": "",        ------------->"witness": "delegate.XXXXX",
"host" : "localhost", ------------->"host" : "127.0.0.1",
"port" : 8092,        ------------->"port" : 8095,            #这个看钱包怎么启动的端口
"unlock" : ""         ------------->"unlock" : "钱包解锁密码"
"timer_minute": 2,                   #这里是检测时间,每过2分钟检测,有变动喂价

同时,钱包要用以下启动
./programs/cli_wallet/cli_wallet -H 127.0.0.1:8095 -s ws://127.0.0.1:8090       #端口8095要对上号


-------------------
然后启动,不需要做定时任务
btsprice --config config.json


25
UI显示的问题而已,这种bug如果都不修复,那些worker还是下线吧,领着BTS的工资,做着steem的工作。

26
中文 (Chinese) / Re: Worker制度改进建议
« on: June 19, 2016, 04:30:48 am »
good idea,just do it,i'll vote you,3q

28
General Discussion / Re: Graphene GUI testing and feedback
« on: May 22, 2016, 09:14:07 am »
So, you are leaving BTS, aren't you? :'(

29
Stakeholder Proposals / pricefeeds need help
« on: May 17, 2016, 04:45:04 am »
root@iZ284fwnbhgZ:~/python-graphenelib/scripts/pricefeeds# python3 pricefeeds.py                Traceback (most recent call last):
  File "pricefeeds.py", line 38, in <module>
    import config
  File "/root/python-graphenelib/scripts/pricefeeds/config.py", line 187, in <module>
    wallet_port=port)
  File "/root/python-graphenelib/scripts/pricefeeds/feedsources.py", line 641, in __init__
    self.dex   = GrapheneExchange(conn, safe_mode=False)
  File "/root/.local/lib/python3.4/site-packages/graphenelib-0.3.10-py3.4.egg/grapheneexchange/exchange.py", line 139, in __init__
  File "/root/.local/lib/python3.4/site-packages/graphenelib-0.3.10-py3.4.egg/grapheneapi/grapheneclient.py", line 381, in __init__
  File "/root/.local/lib/python3.4/site-packages/graphenelib-0.3.10-py3.4.egg/grapheneapi/graphenews.py", line 57, in __init__
  File "/root/.local/lib/python3.4/site-packages/graphenelib-0.3.10-py3.4.egg/grapheneapi/graphenewsrpc.py", line 41, in __init__
  File "/usr/local/lib/python3.4/dist-packages/websocket/_core.py", line 489, in create_connection
    websock.connect(url, **options)
  File "/usr/local/lib/python3.4/dist-packages/websocket/_core.py", line 216, in connect
    options.pop('socket', None))
  File "/usr/local/lib/python3.4/dist-packages/websocket/_http.py", line 67, in connect
    sock = _open_socket(addrinfo_list, options.sockopt, options.timeout)
  File "/usr/local/lib/python3.4/dist-packages/websocket/_http.py", line 109, in _open_socket
    sock.connect(address)
TimeoutError: [Errno 110] Connection timed out


@xeroc

30
Stakeholder Proposals / Re: please vote witness :xman & abc123
« on: May 16, 2016, 11:40:43 am »
need you vote  @xeroc  thankyou        witness:delegate.freedom

Pages: 1 [2] 3 4 5 6 7 8 9 ... 21