Skip to content

Commit

Permalink
Merge pull request #29 from pdet/main
Browse files Browse the repository at this point in the history
Bump Version + description of scrooge
  • Loading branch information
carlopi authored Jul 7, 2024
2 parents 0cc6bbb + 64bdf1a commit bc373a6
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions extensions/scrooge/description.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
extension:
name: scrooge
description: Provides functionality for financial data-analysis
description: Provides functionality for financial data-analysis. Including data scanners for the Ethereum Blockchain and Yahoo Finance.
version: 0.0.1
language: C++
build: cmake
Expand All @@ -10,4 +10,23 @@ extension:

repo:
github: pdet/Scrooge-McDuck
ref: 9520aeba138a6bb43f766ed4f78accac026bfae0
ref: fc7ef9c9c6aad1406cddd6e98d919a154e5aa1d6

docs:
hello_world: |
-- Set the RPC Provider
set eth_node_url= 'https://mempool.merkle.io/rpc/eth/pk_mbs_0b647b195065b3294a5254838a33d062';
-- Query Transfer events of USDT from blocks 20034078 - 20034100 while parallelizing on one block per thread
FROM read_eth(
'USDT',
'Transfer',
20034078,
20034100,
blocks_per_thread=1
);
extended_description: |
Scrooge McDuck is a third-party financial extension for DuckDB.
This extension's main goal is to support a set of aggregation functions and data scanners for financial data.
It currently supports access to the logs of Ethereum nodes and stock information from Yahoo Finance.
More information on the supported scanners and functions can be found on Scrooge's [wiki page](https://github.com/pdet/Scrooge-McDuck/wiki).
You can also find a ROI example of Ether on the [following blogpost](https://pdet-blog.github.io/2024/06/30/ethereum.html)

0 comments on commit bc373a6

Please sign in to comment.