如何在Tezos节点之外创建数据库?
1 个回答
- 投票数
您可以修改Conseil,以支持提取与投票相关的信息.
另一种方法是使用tzscan代码库,该代码库还使用来自Tezos的信息填充数据库节点.
最后但并非最不重要的是,您可以对/chains/main/blocks/head/context/raw/json/..
使用RPC调用来探索每个块的原始上下文.
You could modify Conseil in order to support the extraction of voting related info.
Another approach is to use the tzscan codebase, which also fills a database with information from the Tezos node.
Last but not least, you can use RPC calls to /chains/main/blocks/head/context/raw/json/..
to explore the raw context for every block.
我们想建立一个包含Tezos-Node实时数据的网站.
我们有一个正在运行的节点,我们有RPC,我们有一个mysql数据库,我们想使用Postgres来查询数据库并向网站"提供"信息.
我们只是不知道如何将数据从Tezos节点"提取"到数据库中.
一种方法是Cryptonomic的Conseil.
https://github.com/Cryptonomic/Conseil
但是他们目前不支持投票/投票RPC: