├── .gitignore ├── README.md ├── nodejs ├── README.md ├── merchant.js ├── package-lock.json └── package.json └── python ├── README.md ├── merchant.py ├── requirements-webhook.txt ├── signature.py └── webhook.py /.gitignore: -------------------------------------------------------------------------------- 1 | nodejs/node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/README.md -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/nodejs/README.md -------------------------------------------------------------------------------- /nodejs/merchant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/nodejs/merchant.js -------------------------------------------------------------------------------- /nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/nodejs/package-lock.json -------------------------------------------------------------------------------- /nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/nodejs/package.json -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/python/README.md -------------------------------------------------------------------------------- /python/merchant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/python/merchant.py -------------------------------------------------------------------------------- /python/requirements-webhook.txt: -------------------------------------------------------------------------------- 1 | pycryptodome 2 | flask -------------------------------------------------------------------------------- /python/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/python/signature.py -------------------------------------------------------------------------------- /python/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binance/binance-pay-signature-examples/HEAD/python/webhook.py --------------------------------------------------------------------------------