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

Pages: [1]
1
Technical Support / Re: Archlinux package?
« on: August 25, 2017, 10:19:30 pm »
I was about to make a new post then I saw your message xD
Brand new docker magic
The pull request and instructions (section Usage with docker-compose): https://github.com/bitshares/bitshares-core/pull/376
(see EDIT)

I'm an arch user so I'd gladly help for the package too

[EDIT]
There are already good images in this repo https://github.com/crazybits/docker-compose-files/tree/master/bitshares I'll write instructions for them if they don't exist already.
For a start just do:
Code: [Select]
git clone https://github.com/crazybits/docker-compose-files.git
cd docker-compose-files/bitshares
docker-compose -f docker-compose_start.yml up
This should get a node up and running with webwallet access

If you have curl you can just do
Code: [Select]
curl -Lo docker-compose.yml 'https://raw.github.com/crazybits/docker-compose-files/master/bitshares/docker-compose_start.yml'
docker-compose up
in a new directory

If you have wget you can just do
Code: [Select]
wget 'https://raw.github.com/crazybits/docker-compose-files/master/bitshares/docker-compose_start.yml' -O docker-compose.yml
docker-compose up
in a new directory

2
General Discussion / Bitshares <-> Ethereum Decentralized smart bridge
« on: August 11, 2017, 09:48:08 am »
Hey,

Maybe we can do an autonomously regulated peer2peer ethereum bridge using only graphene.

Practical users
Bridge peer: one that want to make profit on his ETH/bitETH by collecting bridge fees.
User: one that want to have a bitETH bitshares asset that can be easily traded for real ETH on a 1:1+(free market fees) basis.

What it needs:
common
- bitETH: an ETH pegged smart coin
- A way to lock a bitETH collateral that does not belong to you for a limited time to initiate the bridge process
- A way to associate a collateral to ethereum addresses
- A way to have a bridge offer (fees) market with one offer associated to one collateral

bitshares -> ethereum
- A way to lock a bitETH collateral deposited by the user that is the amount of ETH it wants + the fees
- A way to watch the ethereum chain to check that the bridge peer is indeed sending the ETHs at the right address, if the bridge peer sends the right amount or more of ETH the collateral is given to the bridge peer, if not, it is returned to the user.
(I feel the fees makes little sense in that case)

ethereum -> bitshares
- A way to lock a bitETH collateral deposited by the bridge user that is the amount of ETH it wants to bridge that can be locked by another user
- A way to watch the ethereum chain to check that the user is indeed sending it's ETH+fees at the right address, if the user sends the right amount or more of ETH the collateral is given to the user, if not, it is unlocked for an other user to initiate a bridge transaction.

Actually there is 3 types of user:
1) One that want to exchange his bitETH for ETH
2) One that want to make profit on his bitETH/ETH pair by collecting fees
3) One that want to exchange his ETH for bitETH

Theoretically user 1 and 3 should set their fees to 0% to pay the less fees and bypass user 2

Solutions:
- Witnesses could check the ethereum network for a low resources cost using trusted third party ethereum nodes (infura, etc..)

Questions:
- I know only a bit about graphene, is this possible at all?
- Is bitETH feasible, would there be incentives for people to short it into existence?

Of course if this works this opens up the door to +5% all +5% erc20 coins I think :P

I'm not the best writer and this is in no way complete. Please do ask questions if it's not clear or correct me if I'm missing things!

Any ideas?

Pages: [1]