<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to extract data from ethereum using Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294638#M67494</link>
    <description>&lt;P&gt;Thanks for testing. We actually use an internal API, which does not require authentication.&lt;/P&gt;&lt;P&gt;The XXXX in the snippet are not wallet, but rather keys from &lt;A href="https://infura.io/" alt="https://infura.io/" target="_blank"&gt;https://infura.io/&lt;/A&gt;. You may sign up and get a free one if you wish to.&lt;/P&gt;&lt;P&gt;The returns are in JSON.&lt;/P&gt;&lt;P&gt;I only see tRest, not tRestClient on our side, but we should have ESB license. So please describe how to find tRestClient.&lt;/P&gt;&lt;P&gt;Under tRestClient, where should I input something like "w3.eth.get_block('latest')"? If you can post some pictures, it would be great.&lt;/P&gt;&lt;P&gt;Much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Mar 2022 18:41:17 GMT</pubDate>
    <dc:creator>YLi1644627156</dc:creator>
    <dc:date>2022-03-30T18:41:17Z</dc:date>
    <item>
      <title>How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294634#M67490</link>
      <description>&lt;P&gt;Very new to Talend. My very goal is to use Talend to do the following:&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;from web3 import Web3&lt;/P&gt;&lt;P&gt;w3 = Web3(Web3.HTTPProvider('&lt;A href="https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX" alt="https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX" target="_blank"&gt;https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX&lt;/A&gt;'))&lt;/P&gt;&lt;P&gt;w3.eth.get_block('latest').items()&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;Wonder which components I need and how to achieve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open to java implementation as well, if it is easier with tJava.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294634#M67490</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2024-11-15T23:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294635#M67491</link>
      <description>&lt;P&gt;Could you give us a bit more information about this please? It looks like you will just need to use a tRestClient component for this, but information about the API would be useful.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 12:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294635#M67491</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-30T12:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294636#M67492</link>
      <description>&lt;P&gt;So in this python example, a function call need to be made to extract the data. Will RestClient allow us to make a direct call like this?&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;from web3 import Web3&lt;/P&gt;&lt;P&gt;w3 = Web3(Web3.HTTPProvider('&lt;A href="https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX" alt="https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX" target="_blank"&gt;https://mainnet.infura.io/v3/XXXXXXXXXXXXXXXXXXX&lt;/A&gt;'))&lt;/P&gt;&lt;P&gt;w3.eth.get_block('latest')&lt;/P&gt;&lt;P&gt;```&lt;/P&gt;&lt;P&gt;Alternatively, I have been testing out tSystem that calls Python. I can get the output "to console", but if I use "normal" and connect to "tLogRow", I am not getting any outputs. Am I using tSystem correctly?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 14:34:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294636#M67492</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-30T14:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294637#M67493</link>
      <description>&lt;P&gt;This is why I asked for information on the API. I presume that it will require some sort of authentication and presume it will return JSON....although it could XML. The tRestClient can handle that, but without the API specification document, it is very hard to suggest how to use it. You certainly don't need to use a tSystem to call Python. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to call the URL with the XXXXs and by substituting them with an Ethereum wallet address, but that returned nothing in a browser. So I presume that the XXXXs represent something other than an Ethereum wallet address.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 17:52:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294637#M67493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-30T17:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294638#M67494</link>
      <description>&lt;P&gt;Thanks for testing. We actually use an internal API, which does not require authentication.&lt;/P&gt;&lt;P&gt;The XXXX in the snippet are not wallet, but rather keys from &lt;A href="https://infura.io/" alt="https://infura.io/" target="_blank"&gt;https://infura.io/&lt;/A&gt;. You may sign up and get a free one if you wish to.&lt;/P&gt;&lt;P&gt;The returns are in JSON.&lt;/P&gt;&lt;P&gt;I only see tRest, not tRestClient on our side, but we should have ESB license. So please describe how to find tRestClient.&lt;/P&gt;&lt;P&gt;Under tRestClient, where should I input something like "w3.eth.get_block('latest')"? If you can post some pictures, it would be great.&lt;/P&gt;&lt;P&gt;Much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 18:41:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294638#M67494</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-30T18:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294639#M67495</link>
      <description>&lt;P&gt;OK, I have created an account and tested it. This is how it works. First, to get the tRestClient component, just type...tRestClient ....on the design window. It will appear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a job looking like this.....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PNBx0AAH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/136004i677EACEE469F9295/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PNBx0AAH.png" alt="0695b00000PNBx0AAH.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The tJavaFlex is coded like this.....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PNBxUAAX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/136815iE0BBF5E5099AA046/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PNBxUAAX.png" alt="0695b00000PNBxUAAX.png" /&gt;&lt;/span&gt;The code that is important is.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;row1.string = "{\"jsonrpc\":\"2.0\",\"method\":\"eth_blockNumber\",\"params\":[],\"id\":1}";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The rest is just commented out code. Note that the JSON here is escaped for Java. See the backslashes before quotes. This JSON is the body and will hold the parameters for your query.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The tRestClient is configured like this.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PNBzQAAX.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/138008i487418738F240FD0/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PNBzQAAX.png" alt="0695b00000PNBzQAAX.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note the HTTP Method and the Content Type. I have blocked out my code in the URL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The response to this is shown by the tLogRow which needs no configuration. It looked like this for me....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{"jsonrpc":"2.0","id":1,"result":"0xdd1895"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I presume that the "latest" referenced in your code is actually a JSON element that is returned when you have data. You should be able to collect this using a tExtractJSONFields component. You will need to use JSONPath for this.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 20:55:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294639#M67495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-30T20:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294640#M67496</link>
      <description>&lt;P&gt;This is great. Thanks rhall! &lt;/P&gt;&lt;P&gt;Somehow I don't have access to tRestClient, although I have ESB. But tRest seems to work as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One extra question, how should I parse out rawContract.value in tExtractJSONFields? I got the "$.result.transfers[*]" part handled, but under mapping, it is no longer a Jsonpath query, but a json query, and "$.rawContract.value" does not work.&lt;/P&gt;&lt;P&gt;{"id":1,"result":{"transfers":&lt;/P&gt;&lt;P&gt;[{"blockNum":"0xa97ae2","hash":"0x56a00d5fac0dcacfe1cd950c49506712ec5bf319e246701321e8a92643da349d","from":"0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be","to":"0xfd5d6417fdcf02f0627aafa9e594a67d4485642d","value":5.73621309,"erc721TokenId":null,"erc1155Metadata":null,"tokenId":null,"asset":"ETH","category":"external","rawContract":{"value":"0x4f9b1f69e1655400","address":null,"decimal":"0x12"}}]}&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 23:14:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294640#M67496</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-30T23:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294641#M67497</link>
      <description>&lt;P&gt;In this scenario you need to use the Loop JsonPath Query and your other paths have to be in relation to that. Here is a screenshot of how I have set this up to work.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PNIEHAA5.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155767iA340AF4B7E68C3ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PNIEHAA5.png" alt="0695b00000PNIEHAA5.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output from this can be seen below. Notice that I retrieved elements from different levels in the JSON....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.------------------------------------------------------------------------------------------.&lt;/P&gt;&lt;P&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#1. tLogRow_2 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|&lt;/P&gt;&lt;P&gt;+---------------------+--------------------------------------------------------------------+&lt;/P&gt;&lt;P&gt;| key &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;| value&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|&lt;/P&gt;&lt;P&gt;+---------------------+--------------------------------------------------------------------+&lt;/P&gt;&lt;P&gt;| blockNum&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;| 0xa97ae2 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|&lt;/P&gt;&lt;P&gt;| hash&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;| 0x56a00d5fac0dcacfe1cd950c49506712ec5bf319e246701321e8a92643da349d |&lt;/P&gt;&lt;P&gt;| rawContract_value &amp;nbsp;| 0x4f9b1f69e1655400 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|&lt;/P&gt;&lt;P&gt;| rawContract_decimal | 0x12 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;|&lt;/P&gt;&lt;P&gt;+---------------------+--------------------------------------------------------------------+&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 09:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294641#M67497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-31T09:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294642#M67498</link>
      <description>&lt;P&gt;This great. One last thing. Our team members have been comparing Talend again Alteryx.&lt;/P&gt;&lt;P&gt;It looks like Alteryx can automatically parse json and filled in all the column names. Is this functionality available in any of Talend components?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 19:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294642#M67498</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-31T19:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294643#M67499</link>
      <description>&lt;P&gt;In the Enterprise Edition there is the Talend Data Mapper. It will parse the JSON (and other flat file structures like XML, etc) and produce a schema you can work with. I believe you are using the Open Studio version which is limited somewhat.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 21:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294643#M67499</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-31T21:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294644#M67500</link>
      <description>&lt;P&gt;what is the data mapper component called? I have enterprise license.&lt;/P&gt;&lt;P&gt;Again I am not seeing tRestClient, how should I enable it?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 22:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294644#M67500</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-31T22:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294645#M67501</link>
      <description>&lt;P&gt;I am using Talend Studio&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 22:37:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294645#M67501</guid>
      <dc:creator>YLi1644627156</dc:creator>
      <dc:date>2022-03-31T22:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract data from ethereum using Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294646#M67502</link>
      <description>&lt;P&gt;The tRestClient component is standard in all Talend Studio products.  It doesn't need to be enabled. If you type t r e s t c l i e n t into the design window you should see it. If you don't see it, you should contact support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Data Mapper is more than a single component. The component is called tHMap. But there are several configuration stages for this component. You should look at the documentation for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;https://help.talend.com/r/en-US/8.0/data-mapper-functions-reference-guide/introduction-data-mapper-functions&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 23:08:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-extract-data-from-ethereum-using-Talend/m-p/2294646#M67502</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-31T23:08:25Z</dc:date>
    </item>
  </channel>
</rss>

