BitShares Forum

Main => General Discussion => Topic started by: 029xue on December 27, 2014, 12:31:05 pm

Title: Help about create user asset
Post by: 029xue on December 27, 2014, 12:31:05 pm
I seems met a problem in creating user asset.

I've looked wiki page http://wiki.bitshares.org/index.php/BitShares/UserAssets and also did a search on forum but no lucky, so I write here to ask any help.

I get description from 0.4.27.2 console like below:
Code: [Select]
wallet_asset_create <symbol> <asset_name> <issuer_name> [description] [data] [maximum_share_supply] [precision] [is_market_issued]

I then created a user asset using below command:
Code: [Select]
wallet_asset_create BITXXX BITXXX my_bts_name "My comments" 10000000000 100 null false

After the command executed, I can see a successful log in console (forget to capture the output at that time).

From command "blockchina_list_assets", I can also see my created asset list there.

The problem is, I saw my created asset has "ISSUED=0.00" and "SUPPLY=0.00", why was this happend? How can I use/send some of it to others??


BTW, blockchina_list_assets list all the assets and I did saw a lot of assets has same problem there:

Code: [Select]
133   XFUCUN 幸福村                   幸福村积分                                    lsx                             0.00 %    0. XFUCUN                   
64    XIAOMI mi                       stock of mi.com                                 jiba                            0.00 %    0.00 XIAOMI   
69    VIRGIN VIRGIN                                                                  rom                             0.00 %    0.00 VIRGIN                 
32    VND    Vietnam Dong             Vietnam Dong                                    ninja                           0.00 %    0.000000 VND               
33    VTC    Shares in Venture Ca...                                                 bitx                            0.00 %    0.000000 VTC     
63    TAOBAO taobao                  stock of taobao.com                             tou                             0.00 %    0.00 TAOBAO                 
73    TENCENTtencent                                                                 rom                             0.00 %    0.00 TENCENT               
281   TENPAY 财付通                    财付通,在线支付专家,带给您安全...             alibaba-inc                     0.00 %    0.00 TENPAY 
275   REBATE rebate                  rebate                                          coupon                          0.00 %    0. REBATE                   
272   REFUND refund                  refund                                          coupon                          0.00 %    0. REFUND                   
130   RENMINBICNY                     CNY                                             bitrenminbi                     0.00 %    0.00 RENMINBI               
273   RETURN return                  return                                          coupon                          0.00 %    0. RETURN   
Title: Re: Help about create user asset
Post by: alt on December 27, 2014, 02:14:05 pm
you need to run this command to  issue your asset

Code: [Select]
wallet_asset_issue 1000000 BITXXX my_bts_name
Title: Re: Help about create user asset
Post by: 029xue on December 27, 2014, 03:04:39 pm
you need to run this command to  issue your asset

Code: [Select]
wallet_asset_issue 1000000 BITXXX my_bts_name

Wow, it dose work. Thanks very much!