Skip to content
View YasunoriMATSUOKA's full-sized avatar

Organizations

@nemtus @next-web-technology @proof-of-your-life
Block or Report

Block or report YasunoriMATSUOKA

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. nem-library-sample-code nem-library-sample-code Public

    NEM, NIS1のSDKのnem-libraryのサンプルコード集です。

    TypeScript

  2. nem-web-wallet nem-web-wallet Public

    NEM NIS1 web wallet. This app never saves your private key. But it only uses in memory. Please save your private key in other safe place to avoid tragedy of self GOX.

    TypeScript

  3. ccxtZaifFetchTicker.js ccxtZaifFetchTicker.js
    1
    const ccxt = require('ccxt');
    2
    const zaif = new ccxt.zaif();
    3
    (async () => {
    4
        const ticker = await zaif.fetchTicker('XEM/JPY');
    5
        console.log(ticker);
  4. ccxtMultipleExchangesFetchTicker.js ccxtMultipleExchangesFetchTicker.js
    1
    const ccxt = require('ccxt');
    2
    const defaultFetchTicker = async (exchange, ticker) => {
    3
        const exchangeObject = new ccxt[exchange];
    4
        const tickerInfo = await exchangeObject.fetchTicker(ticker);
    5
        console.log(tickerInfo);