1.0.1 • Published 2 years ago

mt-sdk v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago
var MtSdk = require("mt-sdk");

var client = new MtSdk({
  appkey: "your appkey",
  secret: "your secret",
});


let now = Date.parse(new Date()) / 1000;
client
  .execute("orderList", {
    ts: now,
    startTime: now - 3600,
    endTime: now,
    page: 1,
    limit: 20,
    actId: 33,
    queryTimeType: 1,
  })
  .then((res) => {
    console.log(res);
  });

  client.execute("miniCode", { sid: "s8fy8vnlgdfgd023klvbk3", actId: 33 }).then(res=>{
  console.log(res)
});
1.0.1

2 years ago

1.0.0

2 years ago

0.0.1

3 years ago