From b1b5e9db6feb8f8deda20e967a3720907d58bccf Mon Sep 17 00:00:00 2001 From: Enzo Cioppettini Date: Wed, 10 Apr 2024 16:52:27 -0300 Subject: [PATCH] fix erc721_burn tableName not matching the actual table name --- packages/node-sdk/paima-db/src/paima-tables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node-sdk/paima-db/src/paima-tables.ts b/packages/node-sdk/paima-db/src/paima-tables.ts index b55d3574..8fffb986 100644 --- a/packages/node-sdk/paima-db/src/paima-tables.ts +++ b/packages/node-sdk/paima-db/src/paima-tables.ts @@ -216,7 +216,7 @@ CREATE TABLE cde_erc721_burn ( `; const TABLE_DATA_CDE_ERC721_BURN: TableData = { - tableName: 'cde_erc721_data_burn', + tableName: 'cde_erc721_burn', primaryKeyColumns: ['cde_id', 'token_id'], columnData: packTuples([ ['cde_id', 'integer', 'NO', ''],