blockchain.php 950 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @Created by PhpStorm
  4. * @author: Kirin
  5. * @day: 2025/2/19
  6. * @time: 10:50
  7. */
  8. // +----------------------------------------------------------------------
  9. // | 区块链配置
  10. // +----------------------------------------------------------------------
  11. return [
  12. // BSC
  13. 'bsc' => [
  14. 'node' => 'omniscient-icy-dew.bsc.quiknode.pro/efd8465113691a992370197ae68b81439dcd1e9d',
  15. 'tokens' => [
  16. 'usdt' => [
  17. // 'address' => '0x55d398326f99059fF775485246999027B3197955',//USDT合约地址
  18. 'address' => '0x8f5f8daC38461E5b1A6b230D30433f8A593CCD57',//USDT测试合约地址
  19. // 'decimal' => 18,
  20. 'decimal' => 18,
  21. 'private_key' => '',
  22. 'extract' => true,
  23. 'charge' => true,
  24. 'recharge_address' => '0x784d0518bE4250F9c0dA7435f0C934f68F13Bb4C',
  25. 'type' => 'bep20',
  26. ],
  27. ],
  28. ]
  29. ];