diff options
Diffstat (limited to 'packages/pipeline/src/models/tokens.ts')
-rw-r--r-- | packages/pipeline/src/models/tokens.ts | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/pipeline/src/models/tokens.ts b/packages/pipeline/src/models/tokens.ts deleted file mode 100644 index 96e8a31af..000000000 --- a/packages/pipeline/src/models/tokens.ts +++ /dev/null @@ -1,24 +0,0 @@ -const token = { - tableName: 'tokens', - tableProperties: { - address: { - type: 'char(66)', - }, - decimals: { - type: 'bigint', - }, - name: { - type: 'varchar', - }, - symbol: { - type: 'varchar', - }, - }, -}; -const logToTokenSchemaMapping: any = { - address: 'address', - decimals: 'decimals', - name: 'name', - symbol: 'symbol', -}; -export { token, logToTokenSchemaMapping }; |