diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-09-20 01:51:12 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:23:29 +0800 |
commit | cd73a047efbc1b7afa884ef27a1cc4991e20efd8 (patch) | |
tree | 4355fd034ec22a5e5412aca1876ee09a9d848eb4 /packages/pipeline/src/postgres.ts | |
parent | 57e7119c0d4f1ab7dd1d4c0118e72dc1706e2151 (diff) | |
download | dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.gz dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.bz2 dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.lz dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.xz dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.tar.zst dexon-sol-tools-cd73a047efbc1b7afa884ef27a1cc4991e20efd8.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 }; |