{"id":24657591,"url":"https://github.com/arowpay/arowpay-nodejs","last_synced_at":"2026-04-05T20:37:24.009Z","repository":{"id":57183834,"uuid":"244189997","full_name":"arowpay/arowpay-nodejs","owner":"arowpay","description":"Arowpay offers an easy way to integrate a checkout system for numerous cryptocurrencies.","archived":false,"fork":false,"pushed_at":"2020-03-08T23:04:35.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-26T04:49:01.408Z","etag":null,"topics":["arowpay","bitcoin","blockchain","cryptocurrencies","cryptocurrency","ethereum","nodejs","payment","payment-gateway","tether","usdt","wallet"],"latest_commit_sha":null,"homepage":"https://www.arowpay.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arowpay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-01T17:09:34.000Z","updated_at":"2024-04-29T04:42:56.000Z","dependencies_parsed_at":"2022-08-23T01:30:35.237Z","dependency_job_id":null,"html_url":"https://github.com/arowpay/arowpay-nodejs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arowpay%2Farowpay-nodejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arowpay%2Farowpay-nodejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arowpay%2Farowpay-nodejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arowpay%2Farowpay-nodejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arowpay","download_url":"https://codeload.github.com/arowpay/arowpay-nodejs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244734096,"owners_count":20501014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arowpay","bitcoin","blockchain","cryptocurrencies","cryptocurrency","ethereum","nodejs","payment","payment-gateway","tether","usdt","wallet"],"created_at":"2025-01-26T00:19:51.520Z","updated_at":"2025-12-31T00:03:43.012Z","avatar_url":"https://github.com/arowpay.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# arowpay-nodejs\n\n\u003e NPM module for acquiring payments from the Arowpay API without form authentication hassle.\n\n## Install\n\n```sh\nnpm install arowpay-nodejs\n```\n\n## Requirements\nThis package builds upon the fact that a correct pair of appkey and appsecret are provided. You can generate these [Here](https://docs.arowpay.com/ipnsetting.html)\n\n## Usage\nHow to initialize the module with the correct data.\n\n```javascript\nconst arowpay = require('arowpay-nodejs');\n\nconst options = {\n\tappkey: \"\", \n\tappsecret: \"\"\n};\n\nconst payments = new arowpay(options, (err, result) =\u003e {\n\tif(err) throw err;\n\tconsole.log(result); \n\t// Configured successfully\n});\n```\n\n## Create a callback address\nBy specifying the sending currency, a unique deposit address will be returned to you.\n```javascript\n//BTC ETH USDTERC20\nconst options = {currency:\"BTC\",custom:\"customStrings\"}\npayments.callApi(\"getCallbackAddress\",options, (err, result) =\u003e {\n\tif(err) throw err;\n\tconsole.log(result);\n});\n```\n\n## Validate IPNs\nCheck the data structure on https://docs.arowpay.com/ipn.html\n\nA demo IPN sent to callback url\n````\nHTTP Header:\nContent-Type:application/json\nnonce:102221\ntimestamp:1581582671\nappkey:yourappkey\nsignature:632667547e7cd3e0466547863e1207a8c0c0c549\n\nHTTP Body Content :\n{\"txid\":\"c85d2669ac777574762640c36e66592df946aa90615952797d62c9070cebbeb5\",\"address\":\"1PJb6kLcZjUeq4fkKJ6ubDnEbx8ELJyRfd\",\"amount\":\"0.0051\",\"currency\":\"BTC\",\"time\":1581582672,\"custom\":\"yourcustomstrings\"}\n````\nValidate\n```javascript\nconst validateresult = payments.validateIPN(appkey,signature,nonce,timestamp,txid,amount,currency);\nif(validateresult == true){\n\t//valid IPN , process the vars\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farowpay%2Farowpay-nodejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farowpay%2Farowpay-nodejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farowpay%2Farowpay-nodejs/lists"}