diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-20 01:51:12 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-06 19:03:11 +0800 |
commit | d1026a64ba670a7c46ff3015cf907aee5a562de8 (patch) | |
tree | 41c88864dd296d0fb1e5c4edac94ac876e5d046f /packages/pipeline/src/postgres.ts | |
parent | dda44500c52a4b72f6a27fb2384a3f43100a1b26 (diff) | |
download | dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar.gz dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar.bz2 dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar.lz dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar.xz dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.tar.zst dexon-sol-tools-d1026a64ba670a7c46ff3015cf907aee5a562de8.zip |
Remove old code. Create function for getting contract events via etherscan
Diffstat (limited to 'packages/pipeline/src/postgres.ts')
-rw-r--r-- | packages/pipeline/src/postgres.ts | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/pipeline/src/postgres.ts b/packages/pipeline/src/postgres.ts deleted file mode 100644 index d095e5c9e..000000000 --- a/packages/pipeline/src/postgres.ts +++ /dev/null @@ -1,12 +0,0 @@ -import * as dotenv from 'dotenv'; -import { Pool, PoolConfig } from 'pg'; -dotenv.config(); -const client: PoolConfig = { - user: process.env.AURORA_USER, - database: process.env.AURORA_DB, - password: process.env.AURORA_PASSWORD, - port: parseInt(process.env.AURORA_PORT || '5432', 10), - host: process.env.AURORA_HOST, -}; -const postgresClient = new Pool(client); -export { postgresClient }; |