Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blur on Blast Fix #6251

Merged
merged 4 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion models/prices/blast/prices_blast_tokens.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ FROM
(
VALUES
('weth-weth','blast','WETH',0x4300000000000000000000000000000000000004,18),
('usdb-usdb','blast','USDB',0x4300000000000000000000000000000000000003,18)
('usdb-usdb','blast','USDB',0x4300000000000000000000000000000000000003,18),
('weth-weth', 'blast', 'bpETH', 0xb772d5c5f4a2eef67dfbc89aa658d2711341b8e5, 18)
jeff-dude marked this conversation as resolved.
Show resolved Hide resolved
) as temp (token_id, blockchain, symbol, contract_address, decimals)
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ WITH blur_trades AS (
, bt.nft_token_id AS nft_token_id
, UINT256 '1' AS nft_amount
, bt.price_raw
, CASE WHEN bt.order_type = 0 THEN 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 ELSE 0x0000000000a39bb272e79075ade125fd351887ac END AS currency_contract
, CASE WHEN bt.order_type = 0 THEN 0x4300000000000000000000000000000000000004 ELSE 0xb772d5c5f4a2eef67dfbc89aa658d2711341b8e5 END AS currency_contract
, bt.project_contract_address
, uint256 '0' AS platform_fee_amount_raw
, CAST(NULL AS varbinary) AS platform_fee_address
Expand Down
Loading