问题标签 [blockcypher]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
asp.net-mvc - 从控制台访问 API 是有效的,但同样不适用于 MVC Web
我正在尝试从控制台应用程序访问 BlockCypher,它工作得非常好。但是当我尝试访问同一个 MVC Web 应用程序时,我没有收到来自“BlockCypher”的响应。不知道为什么。这是我正在关注的链接:
这是我正在使用的代码
请帮忙,知道我在网络上做错了什么吗?或者我错过了什么。
javascript - 如何创建比特币测试网交易 - blockcypher?
我是加密货币和区块链的新手。我需要将 testnet-bitcoins 从一个地址发送到另一个地址。我想使用 blockcypher api 来创建一个事务:
https://www.blockcypher.com/dev/bitcoin/#creating-transactions
我使用 bitcore 和 buffer 库创建了两个新地址,如下所示:
我找不到资源来帮助我了解有关测试网交易的更多信息。如果您能指出任何有价值的资源,我将不胜感激。
每当我使用有效地址(由我创建)向 blockcypher 发出请求时。我收到一个错误 - 400 Bad Request 产生的 JSON:
当我使用 Blockcypher 文档中提到的地址时,请求是有效的。
我根据 blockcypher 文档中的代码创建了交易函数。
预期:TXSkeleton 对象
实际:错误 JSON
javascript - 如何使用 bitcoinjs 签署 BlockCypher 交易
我尝试使用这里描述的 bitcoinjs 在比特币测试网上签署 BlockCypher 交易,但我不断收到错误消息:
{"error": "Couldn't deserialize request: invalid character 'x' in literal true (expecting 'r')"}
我四处搜索,找不到有关问题所在的文档。下面是我用来尝试签署交易的代码。
似乎这条线return keys.sign(new buffer.Buffer(tosign, "hex")).toString("hex");
是问题所在,但我不确定出了什么问题。
javascript - 使用bitcoinjs的Blockcypher交易签名错误
我试图使用 blockcypher 和这里描述的 bitcoinjs lib 签署比特币测试网交易,但我遇到了这个错误,我不知道我做错了什么。
在四处搜索时,我找不到问题的解决方案,我联系了 blockcypher,但他们从未回应。这是我用来签署交易的代码,有谁知道它为什么给我这个错误?
javascript - Blockcypher error Non-canonical signature: wrong length marker
Im trying to sign a bitcoin testnet transaction using blockcypher but when I go to send the transaction I get the error:
Below is the complete code im using to create and sign the transaction
This is what it returns in terms of pubkeys, signatures, tosign
As it states and error with the signature I can only think it could be this line
Would anyone know what this means? and how to solve it?
python - Blockcypher-python UnicodeError(“标签太长”)
我对Blockcypher for Python有一个讨厌的问题。一个简单的片段代码
在我的本地安装中引发此异常(我正在使用 PyCharm)
3.7.6 (tags/v3.7.6:43364a7ae0, Dec 19 2019, 00:42:30) [MSC v.1916 64 bit (AMD64)] sys.version_info(major=3, minor=7, micro=6, releaselevel ='最终',序列= 0)
回溯(最后一次调用):文件“C:\Users\xxx\AppData\Local\Programs\Python\Python37\lib\encodings\idna.py”,第 167 行,在编码中引发 UnicodeError("label too long") UnicodeError:标签太长
在Repl.it上,一切都完美无缺。
调试idna.py显示第三个标签是引发异常的标签,但我很难理解为什么我在本地安装中遇到此问题。