-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major improvements of MagicEden Spells (#1310)
* Major improvements of MagicEden Spells * Update magiceden_solana_schema.yml * Update alter_table_properties.sql * update incremental filter * Update magiceden_events.sql
- Loading branch information
Showing
8 changed files
with
250 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{{ | ||
config( | ||
alias='fees') | ||
}} | ||
|
||
SELECT blockchain, | ||
project, | ||
version, | ||
block_time, | ||
token_id, | ||
NULL::string as collection, | ||
platform_fee_amount_raw, | ||
platform_fee_amount, | ||
platform_fee_amount_usd, | ||
platform_fee_percentage, | ||
royalty_fee_amount_raw, | ||
royalty_fee_amount, | ||
royalty_fee_amount_usd, | ||
royalty_fee_percentage, | ||
NULL::string as royalty_fee_receive_address, | ||
royalty_fee_currency_symbol, | ||
token_standard, | ||
trade_type, | ||
number_of_items, | ||
NULL::string as trade_category, | ||
evt_type, | ||
seller, | ||
buyer, | ||
NULL::string as nft_contract_address, | ||
project_contract_address, | ||
NULL::string as aggregator_name, | ||
NULL::string as aggregator_address, | ||
block_number, | ||
tx_hash, | ||
NULL::string as tx_from, | ||
NULL::string as tx_to, | ||
unique_trade_id | ||
FROM {{ ref('magiceden_solana_events') }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.