From 207b9034934b4bbc144b7a3b258951c84dd8cd61 Mon Sep 17 00:00:00 2001 From: vincentwschau <99756290+vincentwschau@users.noreply.github.com> Date: Thu, 30 Nov 2023 16:08:24 -0600 Subject: [PATCH] Add fees to fills Athena DDL table. (#824) --- .../services/roundtable/src/lib/athena-ddl-tables/fills.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/indexer/services/roundtable/src/lib/athena-ddl-tables/fills.ts b/indexer/services/roundtable/src/lib/athena-ddl-tables/fills.ts index af1c910d0e..08bb98e7e7 100644 --- a/indexer/services/roundtable/src/lib/athena-ddl-tables/fills.ts +++ b/indexer/services/roundtable/src/lib/athena-ddl-tables/fills.ts @@ -22,7 +22,8 @@ const RAW_TABLE_COLUMNS: string = ` \`transactionHash\` string, \`createdAt\` string, \`createdAtHeight\` bigint, - \`clientMetadata\` bigint + \`clientMetadata\` bigint, + \`fee\` string `; const TABLE_COLUMNS: string = ` "id", @@ -39,7 +40,8 @@ const TABLE_COLUMNS: string = ` "transactionHash", ${castToTimestamp('createdAt')}, "createdAtHeight", - "clientMetadata" + "clientMetadata", + "fee" `; export function generateRawTable(tablePrefix: string, rdsExportIdentifier: string): string {