Merged
Conversation
Filipino Transalation
burdagay
reviewed
Feb 15, 2018
tl-tl/exchange.md
Outdated
| @@ -1,83 +1,85 @@ | |||
| # Document for Exchange Developers | |||
| # Dokumento para sa Mga Nag-develop ng Exchange | |||
There was a problem hiding this comment.
I think its alright to use Developer. Use this for consistency since the term developer is repeatedly used below.
tl-tl/exchange.md
Outdated
| This document is intended to guide exchange developers to set up NEO nodes on the exchange server and complete related program development for NEO assets transactions. Before reading, maker sure you have read [NEO White Paper](index.html) and understand the NEO background knowledge and technologies. | ||
|
|
||
| In general, an exchange needs to do the following: | ||
| Ang dokumentong ito ay inilaan upang gabayan ang mga developer ng exhange upang mag set-up ng NEO node sa exchange server at kumpletuhing kaugnay na pag-unlad ng programa para sa mga transaksyong asset ng NEO. Bago magbasa, siguraduhin na nabasa mo ang [NEO White Paper] (index.html) at nauunawaan NEO background na kaalaman at teknolohiya. |
There was a problem hiding this comment.
set-up ng NEO node to set-up ng mga NEO node
tl-tl/exchange.md
Outdated
| Para sa karagdagang impormasyon, sumangguni sa [CLI Command Reference](node/cli.html). | ||
|
|
||
| - Provides APIs to retrieve blockchain data from nodes. The interfaces are provided through [JSON-RPC](http://www.jsonrpc.org/specification),and the underlying communications use HTTP/HTTPS protocols. | ||
| -Magbigay ng mga API upang mabawi ang blockchain data mula sa mga node. Ang mga interface ay ipinagkakaloob [JSON-RPC](http://www.jsonrpc.org/specification),at ang kalakip na mga komunikasyon ay gumagamit ng HTTP / HTTPS protocol. |
tl-tl/exchange.md
Outdated
| ### Pagbubuo ng mga Address sa Deposito | ||
|
|
||
| A wallet can store multiple addresses. The exchange needs to generate a deposit address for each user. | ||
| Ang isang wallet ay maaaring mag-imbak ng maramihang mga address. Ang palitan ay kailangang bumuo ng isang addres sa deposito para sa bawat gumagamit. |
tl-tl/exchange.md
Outdated
| - When the user deposit (NEO/NEO GAS) for the first time, the program dynamically generates a NEO address. The advantage is that there is no need to generate addresses at fixed time intervals, while the disadvantage is you can not backup the wallet. | ||
|
|
||
| To develop the program to dynamically generate addresses, use the NEO-CLI API [getnewaddress Method](node/api/getnewaddress.html). The created address is returned. | ||
| -Upang bumuo ng programa patungong dynamically binuong mga address,, gamitin ang NEO-CLI API [getnewaddress Method](node/api/getnewaddress.html). Ang nagawa na address ay ibinalik. |
tl-tl/exchange.md
Outdated
| - The exchange creates a batch of NEO addresses in advance. When the user charges (NEO/NEO GAS) for the first time, the exchange assigns a NEO address to him or her. The advantage is the convenience to backup the wallet, while the disadvantage is the need to generate NEO addresses manually. | ||
| To generate addresses in batch, run the NEO- CLI command `create address [n]`. The addresses are exported automatically to the address.txt file. | ||
| [n] is optional. Its default value is 1. For example, to generate 100 addresses at a time, enter `create address 100`. | ||
| - Ang palitan ay lumilikha ng batch ng NEO address nang maaga. Kapag ang mga singil ng gumagamit (NEO / NEO GAS) sa unang pagkakataon, ang palitan ay nagtatalaga ng isang NEO address sa kanya. Ang kalamangan ay ang kaginhawaan na i-backup ang wallet, habang ang kawalan ay ang pangangailangan upang bumuo ng mga address NEO nang manu-mano. |
There was a problem hiding this comment.
Please improve this phrase Kapag ang mga singil ng gumagamit (NEO / NEO GAS) sa unang pagkakataon
tl-tl/exchange.md
Outdated
| - Sa palitan, ang paglipat sa pagitan ng mga gumagamit ay hindi dapat maitala sa pamamagitan ng blockchain. Sa pangkalahatan, ang balanse ng user ay binago nang direkta sa database. Tanging ang mga deposito at withdrawals ay dapat na maitatala sa blockchain. | ||
|
|
||
| #### Deposit Records | ||
| #### Mga rekord ng deposito |
tl-tl/exchange.md
Outdated
| 1. Sa NEO-CLI, patakbuhin ang `open wallet <path>` upang buksan ang wallet. | ||
|
|
||
| 2. Record the user withdrawal transaction and modify the user balance. | ||
| 2. I-rekord ang transaksyon ng pag-withdraw ng gumagamit at baguhin ang balanse gumagamit |
There was a problem hiding this comment.
we can use user instead of gugamgamit -> balanse ng user
Author
|
I fixed the errors. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Filipino Transalation