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

Api changes for contract version 0.1.0. #126

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion api/queries/pitch_distribution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ with dedup_events as (
DISTINCT ON(transaction_hash, log_index) *
FROM wyrm_labels
WHERE label='moonworm-alpha'
AND address='0xde191e8c352BA59F95cf19f0931cCbBcc7B60934'
AND address='0x9270df8d907A99E5024dc3532657a5cF9C7A4889'
AND log_index IS NOT NULL
), SessionResolved as (
SELECT
Expand Down
2 changes: 1 addition & 1 deletion api/queries/player_stats.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ with dedup_events as (
DISTINCT ON(transaction_hash, log_index) *
FROM wyrm_labels
WHERE label='moonworm-alpha'
AND address='0xde191e8c352BA59F95cf19f0931cCbBcc7B60934'
AND address='0x9270df8d907A99E5024dc3532657a5cF9C7A4889'
AND log_index IS NOT NULL
), SessionResolved as (
SELECT
Expand Down
2 changes: 1 addition & 1 deletion api/queries/swing_distribution.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ with dedup_events as (
DISTINCT ON(transaction_hash, log_index) *
FROM wyrm_labels
WHERE label='moonworm-alpha'
AND address='0xde191e8c352BA59F95cf19f0931cCbBcc7B60934'
AND address='0x9270df8d907A99E5024dc3532657a5cF9C7A4889'
AND log_index IS NOT NULL
), SessionResolved as (
SELECT
Expand Down
2 changes: 1 addition & 1 deletion api/src/narrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const wyrm = defineChain({
});

// Contract address
const FullcountContractAddress = "0xde191e8c352BA59F95cf19f0931cCbBcc7B60934";
const FullcountContractAddress = "0x9270df8d907A99E5024dc3532657a5cF9C7A4889";

// ABIs
const FullcountSessionABI = [
Expand Down
Loading