Bitcoin Forum
May 04, 2024, 01:01:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 »  All
  Print  
Author Topic: [ANN][XIN] Mixin Network - "All Cryptocurrencies Accepted Here"  (Read 2452 times)
Graceuu
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
November 21, 2018, 11:24:13 AM
 #61

Quote
5. All the entries belong to Mixin Network after winners receive the rewards from Mixin Network. Mixin Network has the rights to utilize, publish and distribute them in all platforms if needed.

This doesn't feel right for me. Atleast if you guys would instead encourage the developers to get their project moving forward. Maybe mentor them and make the project bigger rather than own someone's idea over just a few XIN.
It's a NO-NO for me

It means Mixin Network has the right to utilize, or distribute the entries if needed. Actually, the winners of entries are expected to be applied in Mixin Network. And We have Mixin Labs which focus on moving project forward.




I insist the point that the host could utilize and distribute the entries, but they still belongs to the developers.

Yes, It belongs to the developers. sorry for the misleading.



OK, then I will try to spread it to the developers I know. Anyhow, $45,000 is really cool.

You can join the our Gitter group: https://gitte[Suspicious link removed]/Mixin-Network.
Our developer would love to help any tech problems. 

With regard to the competition, it's still not very clear for a developer that is not professional in blockchain technologies to quickly get what he need to do, which kind of a project is the so-called qualified project. Maybe he didn't even know how to make a proposal for the entry. Therefore, IMHO, it will be much better if the official staff from Mixin Network makes an explanation about the dimensions of development developers can focus on.
1714784463
Hero Member
*
Offline Offline

Posts: 1714784463

View Profile Personal Message (Offline)

Ignore
1714784463
Reply with quote  #2

1714784463
Report to moderator
Once a transaction has 6 confirmations, it is extremely unlikely that an attacker without at least 50% of the network's computation power would be able to reverse it.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714784463
Hero Member
*
Offline Offline

Posts: 1714784463

View Profile Personal Message (Offline)

Ignore
1714784463
Reply with quote  #2

1714784463
Report to moderator
1714784463
Hero Member
*
Offline Offline

Posts: 1714784463

View Profile Personal Message (Offline)

Ignore
1714784463
Reply with quote  #2

1714784463
Report to moderator
1714784463
Hero Member
*
Offline Offline

Posts: 1714784463

View Profile Personal Message (Offline)

Ignore
1714784463
Reply with quote  #2

1714784463
Report to moderator
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 21, 2018, 11:51:16 AM
 #62

How to build your own exchange based on OceanONE Powered by Mixin Network

Introduction
OceanONE is a decentralized crypto asset exchange which provides user experience comparable to that of centralized exchanges

  • Security: exchange codes are open-sourced, asset automatically gets returned to the wallet after transaction
  • Transparent: all transactions are recorded on the blockchain, all checkable and traceable
  • Lightning speed: real-time pending orders, buy orders and cancel orders, instant transfer when recharge account within Mixin Network
  • Depth: shared depth and liquidity
  • Full-currency: Support all cryptocurrencies available on Mixin Network (13 main public chains and over 50000 cryptocurrencies) trading pairs with Mixin(XIN), Bitcoin(BTC) and Omni(USDT)
  • Low fees: 0 fees for maker orders, 0.1% handling fee for taker orders, waiver of transfer fees for pending orders, buy orders and cancel orders
  • Expansion: it is easy to open one’s own exchange based on OceanONE’s API



Access

Register to be a Mixin’s Developer

1.Download Mixin Messenger, scan the code to login
https://developers.mixin.one (click right top corner)

2. Create a Mixin App for your exchange
Click “Create New App” key and follow instructions. All users created on this App would belong to you. Subsequently, you can monitor the recharge, withdrawal and transfer information of users you created and you can get refund of the withdrawal fees and transaction handling fees. Choose “ Click to generate a new secret” to form a Client Secret,choose “Click to generate a new session” to form a Client Session. You should record down these two pieces of information for usage later (please note that if you click again, new information would be created)

3. Integrated wallet
Register as Mixin Network user

Register as a Mixin Network user to use functions such as transfer, withdrawal and transaction. Refer to documents https://developers.mixin.one/api#app_apicreate_user and https://developers.mixin.one/api#documentationauthentication_token you will need Client Secret and Client Session information mentioned in step 2

Set PIN code

If the project is capable of storing PIN securely for users, then it can implement a centralized wallet based on product requirements (Ocean.ONE uses this solution, PIN is not required for each transaction, the user experience is better); another solution would be to not store user’s PIN but save the PIN locally on client’s end like what Mixin Messenger does.

Refer to document https://developers.mixin.one/api#apicreate_pin for setting up network user’s PIN.

Check Order

Method 1: Register as OceanONE user, refer to setupOceanKey method code from pool_key.go. Refer to document to check orders https://github.com/MixinNetwork/ocean.one#list-orders
Method 2: Check user orders based on user transfer record. Refer to Mixcoin code: https://github.com/over140/mixcoin/blob/master/web/src/account/snapshot.js

4. Transaction
Limit: matching engine has a limit for pending order price and units. For example, for USDT limit orders, the minumum price is 0.0001 UST, the maximum order unit is 500,000. Orders which exceed limits are considered as malicious orders, matching engine will charge handling fee on such orders and reject the orders accordingly. Please refer to validateOrder method from example js code at https://github.com/MixinNetwork/ocean.one/blob/master/example/web/src/market/index.js
Order rejection: as OceanONE’s order pending, order fulfillment and order rejection are all done through transfer, order rejection would require a transfer. OceanONE’s solution is to issue one trillion OOO (Ocean ONE Object) erc-20 tokens. Each new user is given 1000 OOO tokens which cannot be recharged or withdrawn, every order rejection would cost 0.00000001 OOO. You can also use other tokens such as CNB/CANDY to initiate a order rejection transfer, there is no such limit for the matching engine.

5. Statistics
Note that the matching engine is not responsible for data statistics. Tickets and Candles require front-end calculation based on trades. Data related to the 13 trading pairs displayed by Ocean.ONE can be fetched directly from example.ocean.one Other trading pairs require the development team to refer to codes in example and calculate by themselves

6. Front-end Interface
You can use codes from example directly or develop your own interface, bind Network users by registering with mobile phone number and email.

In order to handle large number of new user registration in a short period of time, Ocean.ONE registered a number of Network and Ocean accounts in advance and assigned one associated account to each newly registered user accordingly. Refer to GeneratePoolKey method in pool_key.go.

Example
Fox.one — — Integrated crypto asset transaction and wallet https://fox.one
Mixcoin — — Mixin Messenger trading bot (7000101524), display trading pairs according to the wallet, open-sourced: https://github.com/over140/exchange



FAQ

Why OceanONE does not display other trading pairs?
API supports all trading pairs but the website only lists some of them

How to obtain asset id ?
https://developers.mixin.one/api#apiread_assets can return your asset list, if it doesn’t shown your asset, you can charge the account a little and see it here

How is new token traded at OceanONE?
OceanONE do not list tokens or charge any fees for listing tokens. You can directly charge the tokens to Mixin Network and start trading them. For example, you can charge Mixin Messenger wallet and trade through Mixcoin, or other front-end transactions based on OceanONE matching engine, you can also use existing open-sourced code to develop the front-end trading interface yourself.

Transfer is slow
For security measures, Mixin Network’s confirmation number is more than twice of usual wallets or exchanges. When you wait patiently, you can also check the block sync height and status at Mixin Blockchain browser https://mixin.one/snapshots

The independent matching engine and wallet ensures secure asset isolation. The entire process of oder pending, order fulfillment and order rejection are recorded on blockchain through transfers. Open-sourced matching engine ensures secure, fair and convenient asset transactions for users. Come join OceanONE and earn handling fees!
seanshen2009
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
November 22, 2018, 09:49:41 AM
 #63

One question about Mixin messenger. Does it add all my data to blockchain or it adds data just when we transfer our token.
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 27, 2018, 08:20:25 AM
 #64

One question about Mixin messenger. Does it add all my data to blockchain or it adds data just when we transfer our token.

Please check here: https://mixin.one/snapshots
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 27, 2018, 08:25:33 AM
 #65

Token List Update
$BLACK by EOSBlack has been added to Mixin Messenger Powered by Mixin Network


Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
November 28, 2018, 03:42:01 AM
 #66

The only XIN/USDT pair in the world has launched in CBX exchange! A live show on CBX telegram.



Scan the QR code below
We will see you in the CBX Telegram.
chris0618
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 14, 2018, 08:55:48 AM
 #67

I want to know thank if i can participate the mixin network competition now?
morantis
Hero Member
*****
Offline Offline

Activity: 868
Merit: 503



View Profile
December 16, 2018, 08:52:11 AM
 #68

Mixin Network forms strategic partnership with ExinOne and Horizen
https://medium.com/@mixinblockboost/mixin-network-forms-strategic-partnership-with-exinone-and-horizen-94bf786a1c8e



Mixin Network is a free and lightning fast peer to peer transactional network for all digital assets. It is a public chain powered by TEE and based on ABFT-DAG technology and Bitcoin’s UTXO data structure. It solves the problem of slow transaction speed, high transaction fee in blockchain.

It helps the existing distributed ledgers, such as BTC, ETH and EOS to obtain billion of TPS, sub-second confirmation, zero transfer cost, enhanced privacy and unlimited scalability.

Mixin Network has already supported 13 public chains: Bitcoin, Bitcoin Cash, Litecoin, Ethereum, Ethereum classic, Ripple, EOS, Zcash, NEM, Dogecoin, Horizen, Dash and Sia classic, included more than 50,000 digital assets.
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 17, 2018, 02:34:29 AM
 #69

Weekly Change in Top Digital Asset Holdings of Mixin Network (12/17/2018):  
$BTC: 1306
$ETH: 1291
$EOS: 1.39M
$XIN: 301K
...

Please check the Mixin Network explorer for more info: https://mixin.one/snapshots

 301,939 XIN
 1,306 BTC
 1,395,498 EOS
 2,086,218 USDT
 101,176,435,579 CANDY
 15,079,212 PRS
 154,423,313 SC
 626,571 XRP
 1,291 ETH
 60,411,887 MAG
...
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 17, 2018, 03:02:11 AM
 #70

Mixin Content Community Update:

If Pornhub uses Mixin Network, it will be able to support payment by any cryptocurrency
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 17, 2018, 03:46:25 AM
 #71

Graceuu
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
December 17, 2018, 07:10:29 AM
 #72

And update about the 'exclusive guide from Mixin Network's judge panel'?
Just know some developers are still striving to find the directions to develop for Mixin Network's developer competition that is still ongoing.
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 17, 2018, 08:43:49 AM
 #73

And update about the 'exclusive guide from Mixin Network's judge panel'?
Just know some developers are still striving to find the directions to develop for Mixin Network's developer competition that is still ongoing.

Examples Built On Mixin Network:

Mixin Messenger(IM+Wallet): https://mixin.one/messenger

Diceos(Game): https://www.diceos.com/

Slotin(Game): http://slotin.xin/

CoinView(Investment Management Tool): https://en.coinjinja.com/coinview

OceanONE(Exchange): https://ocean.one/

Fox(Exchange): https://fox.one/en/

ExinONE(OTC): https://exinone.com/

TokenMall(Ecommerce): https://tokenmall.one/

LuckyCoin(Game): https://medium.com/mixinnetwork/full-featured-bots-in-mixin-messenger-1381843bab52
Graceuu
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
December 17, 2018, 09:27:11 AM
 #74

And update about the 'exclusive guide from Mixin Network's judge panel'?
Just know some developers are still striving to find the directions to develop for Mixin Network's developer competition that is still ongoing.

Examples Built On Mixin Network:

Mixin Messenger(IM+Wallet): https://mixin.one/messenger

Diceos(Game): https://www.diceos.com/

Slotin(Game): http://slotin.xin/

CoinView(Investment Management Tool): https://en.coinjinja.com/coinview

OceanONE(Exchange): https://ocean.one/

Fox(Exchange): https://fox.one/en/

ExinONE(OTC): https://exinone.com/

TokenMall(Ecommerce): https://tokenmall.one/

LuckyCoin(Game): https://medium.com/mixinnetwork/full-featured-bots-in-mixin-messenger-1381843bab52


Does that mean developers could imitate the examples built on Mixin Network like the Diceos, Slotin, CoinView, Fox, LuckyCoin, etc. as the entire to submit to Mixin Network?
That will be much more easier, but I guess that will not definitely stand out to be winners in this competition.
chris0618
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 17, 2018, 09:42:35 AM
 #75

thanks a lot~
Mixin Network (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 18, 2018, 07:06:12 AM
 #76

Mixin Network announced a strategic partnership with ONO, a social network powered by NOME Group that is based on blockchain technology which focuses on the value of attention and offers a free, decentralized social platform to a new generation of social network users, on Nov.14, 2018.

Cooperation on digital asset transaction, KYC, anti-money laundering, etc. will be performed by then.

Currently, with in-depth communication, Mixin Network and ONO have begun early collaboration on infrastructure, technical details and other efforts, and plans to start offering the related service in the following days.

It is for sure this cooperation will help expand the ecosystem of Mixin Network, and contribute to increasing the market share of ONO.

https://medium.com/mixinnetwork/mixin-network-partnering-up-with-ono-7cf0c3be226b
chris0618
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 20, 2018, 04:11:01 AM
 #77

Mixin team~What to Give for New Year?
chris0618
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
December 20, 2018, 06:35:13 AM
 #78

long time no see ,miss u guys.
Jennifer1023
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
December 20, 2018, 08:56:45 AM
 #79

I know that the core technology includes DAG/POS/BFT and so on,Can you tell me which one is the most important or have the maximum value in Mixin Network?
Jennifer1023
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
December 20, 2018, 09:07:56 AM
 #80

What obstacles Mixin Network are facing in Technology? Have you done something new in core technology during these two month?
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!