PrivateConfig.js.sample 363 B

12345678910111213
  1. class PrivateConfig {}
  2. // 币安的配置,需要开通提币权限并绑定所在服务器的IP
  3. PrivateConfig.binanceAPIKey = ''
  4. PrivateConfig.binanceSecretKey = ''
  5. // 币安的BSC充值地址
  6. PrivateConfig.exchangeAddress = ''
  7. // 你的钱包地址
  8. PrivateConfig.address = ''
  9. // 你的钱包私钥
  10. PrivateConfig.privateKey = ''
  11. module.exports = PrivateConfig