Chad Rossouw
Chad Rossouw
## Motivation Fixes #230 Incorrect contract address column naming for erc721_transfers. ## Solution Adjusted variable naming and column name string for erc721_transfers contract addresses from `erc20` to `erc721`. ## PR...
## Motivation fixes #231 ## Solution Changed `erc20_transfers.rs` line 104 from: ```rust log.topics()[0] == ERC20::Approval::SIGNATURE_HASH ``` to ```rust log.topics()[0] == ERC20::Transfer::SIGNATURE_HASH ``` ## PR Checklist - [ ] Added Tests...
**Description** In `erc20_transfers.rs`, the `is_erc20_transfer` function on line 101 is as follows: ```rust fn is_erc20_transfer(log: &Log) -> bool { log.topics().len() == 3 && log.data().data.len() == 32 && log.topics()[0] == ERC20::Approval::SIGNATURE_HASH...
**Description** In erc721_transfers output struct, the contract column name is `erc20` instead of `erc721`, which is incorrect. This issue occurs across both the CLI and Python bindings.
## **User description** ### SUMMARY This PR adds support for the D1 database in Superset via a new external engine package: * [**`superset-engine-d1`**](https://pypi.org/project/superset-engine-d1/) – Enables Superset to connect to D1...