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

Pages: [1]
1
Technical Support / Re: Private testnet questions
« on: October 06, 2019, 08:26:57 pm »
I've done my own gateway, and own GUI and own private testnet. So it's not related to CB.
The problem is that there is no any manual how to attach coins and it blockchains to gateway.

2
Technical Support / Re: Private testnet questions
« on: October 06, 2019, 12:01:12 pm »
yes, i know it, but how to attach coin?

I found that:
Code: [Select]
{
  "coinType": "bridge.btc",
  "walletName": "BitShares 2.0",
  "name": "Bitcoin",
  "symbol": "BRIDGE.BTC",
  "walletSymbol": "BRIDGE.BTC",
  "walletType": "bitshares2",
  "transactionFee": "0.0003",
  "precision": "100000000",
  "backingCoinType": "btc",
  "supportsOutputMemos": false,
  "restricted": false,
  "depositAllowed": true,
  "requiredConfirmations": 3
}
and
Code: [Select]
{
  "coinType": "btc",
  "walletName": "BTC",
  "name": "Bitcoin",
  "symbol": "BTC",
  "walletSymbol": "BTC",
  "walletType": "btc",
  "transactionFee": "0",
  "precision": "100000000",
  "backingCoinType": null,
  "supportsOutputMemos": false,
  "restricted": false,
  "depositAllowed": true,
  "requiredConfirmations": 3
}

But i found no information regarding how to attach coin daemon via RPC or any other way.

3
Technical Support / Re: Private testnet questions
« on: October 05, 2019, 09:45:45 pm »
Ok, i understand how to build gateway and add it to UI. The other question is how to attach external coins to my gateway and get it connected to it.
I found no manuals about that. I've done gateway, but for example i wan't to add DOGE on it and make DOGE/BTS trading pair (it can exist in reality, but im working with private testnet, so i need to understand mechanics). What should i do?

4
Technical Support / Re: Private testnet questions
« on: August 11, 2019, 12:59:41 pm »
I mean when i'm talking "linking" - getting addresses for deposit coins - that should be PXC blockchain addresses. In other way there will be not possible to deposit PXC.
Somehow our test blockchain need to arrange it to test traders. As i understood - thats gateway function.

5
Technical Support / Re: Private testnet questions
« on: August 10, 2019, 09:22:53 pm »
The GUI doesn't connect to cli_wallet. You must connect it to the "rpc-endpoint" of the witness_node.

In order to "link" an external coin to an MPA you must publish a price feed for the MPA.
Or if you want to "link" a UIA to an external coin you must operate a gateway for it.

Am i understood that right that i'm just make MPA and then publish feed for that?
But what next? How to link to that blockchain and obtain deposit addresses?
I was ready pricefeed readme, but didn't not understood what to do next after i run it.

"if you want to "link" a UIA to an external coin you must operate a gateway for it."
I wan't to create "smartcoin" - for example, i wan't to list Phoenix Coin (PXC). In that case right way will be create UIA and create gateway for it? Is there any principal difference in listing smartcoins and main coins like LTC or BTC?
I was thought that to list PXC for example i need to create MPA and publish price feed for PXC. Am i wrong?
If i need to make a gateway, i need to do that for each listed coin "linked" to external blockchain (blockchain of that coin), correct?

6
Technical Support / Re: Private testnet questions
« on: August 10, 2019, 06:24:55 pm »
The GUI doesn't connect to cli_wallet. You must connect it to the "rpc-endpoint" of the witness_node.

In order to "link" an external coin to an MPA you must publish a price feed for the MPA.
Or if you want to "link" a UIA to an external coin you must operate a gateway for it.

Am i understood that right that i'm just make MPA and then publish feed for that?
But what next? How to link to that blockchain and obtain deposit addresses?
I was ready pricefeed readme, but didn't not understood what to do next after i run it.

7
Technical Support / Re: Private testnet questions
« on: August 10, 2019, 06:22:29 pm »
Hi there, once more time,
i'm still RND testnet for myself. I've managed Bitshares API for explorer and elastic search for it, i'm setup oxarbitrage blockexplorer for my testnet
Code: [Select]
https://github.com/oxarbitrage/open-explorer/And after i've changes ES/UDF/Backend URL, i get strange situation - explorer is showing me accounts, it balances, fees, but doesn't show dynamic content, like transactions history, active and standby witness, active users, current block and so on....
In the same time, API have same data - for example Governance -> Witnesses

What could be wrong?

8
Technical Support / Private testnet questions
« on: August 02, 2019, 03:43:31 pm »
Hello there, got few more questions regarding private testnet running.

1. Fullnode API server.
I was read that GUI need to connect to full API node.
I made a node without
Code: [Select]
partital-operations and
Code: [Select]
max-ops-per-accountI also read there
https://github.com/bitshares/bitshares-core/wiki/Wallet_Full-Nodes_Witness_Nodes
That i need to start cli_wallet  with
Code: [Select]
-h 127.0.0.1:8091 key to allow it connections from outside.
I did it, but my GUI won't connect to That node. I also tried 0.0.0.0 instead of 127.0.0.1
P.S.: i'm running private testsnet and in bitsharesjs and bitsharesjs-ws i've changed chain ID to my one.
2. How to list assets on testnet.
I was read about MPA and UIA. And i understand it. But for example. If i wan't list Bitcoin, how to link MPA to Bitcoin Blockchain?

9
Technical Support / Re: Test network questions
« on: July 24, 2019, 05:56:44 pm »
Code: [Select]
unlocked >>> gethelp vote_for_witness

Vote for a given witness.

An account can publish a list of all witnesses they approve of. This
command allows you to add or remove witnesses from this list. Each
account's vote is weighted according to the number of shares of the core
asset owned by that account at the time the votes are tallied.

Parameters:
    voting_account: the name or id of the account who is voting with their
        shares (type: string)
    witness: the name or id of the witness' owner account (type: string)
    approve: true if you wish to vote in favor of that witness, false to
        remove your vote in favor of that witness (type: bool)
    broadcast: true if you wish to broadcast the transaction (type: bool)

Returns
    the signed transaction changing your vote for the given witness
Thank you, totally forget about that option!  :)

10
Technical Support / Re: Test network questions
« on: July 24, 2019, 04:20:09 pm »
i see that only 5 out 14 witness are active
how to vote for witness from console to become their active?

In cli_wallet, use the vote_for_witness command.

thank you, sir!

Is there any important if all witness on one node or it on different nodes?

I also found this sample in documentation:
Code: [Select]
unlocked >>> vote_for_witness nathan nathan true true
Am i right that first "nathan" is a wallet name and second is witness name?
and what syntax would be correct there, like if "alex" wallet name and witness name is "init0" correct syntax is
Code: [Select]
unlocked >>> vote_for_witness alex init0 true trueor i'm wrong?
I also trying to connect UI to running node, but it drops connection in connection process. Firewall is disabled on node VPS and i have no idea why it happens.

11
Technical Support / Re: Test network questions
« on: July 23, 2019, 10:05:34 pm »
i see that only 5 out 14 witness are active
how to vote for witness from console to become their active?

12
Technical Support / Re: Test network questions
« on: July 23, 2019, 01:52:47 pm »
i have 14 active witness on testnet.
Should i add more?

13
Technical Support / Test network questions
« on: July 17, 2019, 09:17:36 am »
Hi there, i'm playing with test net and got some question.
If i produce 10k blocks, chain according to line #53 of config.ini ask me about checkpoint.
As i understood, i should stop chain, add checkpoint to config.ini and start it again, but it not a big time and do that each day is wrong - i mean stop chain and add more and more checkpoints.
Yes i can change that value and make time window more bigger, but it not the as i think.

In some future i'm planning to run graphene(bitshares like) blockchain for data exchange. And second question is about how to move it to production and manage same problem - as far i can see, on bitshares node you don't have to add checkpoints....

Pages: [1]