BlockchainDevTokyo / referral_link

Public repository for coinmarketfi
https://coinmarketfi.com
MIT License
0 stars 0 forks source link

Technical research #1

Closed dinhnhat0401 closed 2 years ago

dinhnhat0401 commented 2 years ago

Problems:

Link: https://www.ref.finance/ https://pancakeswap.finance/pools

v3kthp commented 2 years ago

Các tool của near:

v3kthp commented 2 years ago

Tạo ví testnet trên https://wallet.testnet.near.org/ Trong ví có sẵn 200 near

v3kthp commented 2 years ago

run sample use near-api-js https://docs.near.org/vi/docs/api/naj-quick-reference Đang bị lỗi khi chạy nodejs :( "Error: Cannot find module 'near-api-js'"

v3kthp commented 2 years ago

Đã connect thành công tới ví và lấy được accountId và balance

const near = await nearAPI.connect({ keyStore, ...nearConfig }); -> tạo kết nối tới near service

const walletConnection = new nearAPI.WalletConnection(near); -> tạo kết nối tới ví near

walletConnection.getAccountId() -> accountId của near, dùng thay thế cho public key

utils.format.formatNearAmount((await (await walletConnection.account()).getAccountBalance()).total) -> lấy total của balance của ví Ngoài total ra thì còn có thể lấy được 1 vài thông tin khác từ balance export interface AccountBalance { total: string; stateStaked: string; staked: string; available: string; }

dinhnhat0401 commented 2 years ago

Note 2021/01/05

v3kthp commented 2 years ago