Skip to content

Commit

Permalink
fix: api path being used for csv download
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepinkman9900 committed Dec 9, 2023
1 parent 86c8e6d commit 821eac9
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions lib/api/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -477,19 +477,24 @@ export const RESOURCES = {

// API V1
csv_export_txs: {
path: '/api/v1/transactions-csv',
// path: '/api/v1/transactions-csv',
path: '/transactions-csv',
},
csv_export_internal_txs: {
path: '/api/v1/internal-transactions-csv',
// path: '/api/v1/internal-transactions-csv',
path: '/internal-transactions-csv',
},
csv_export_token_transfers: {
path: '/api/v1/token-transfers-csv',
// path: '/api/v1/token-transfers-csv',
path: '/token-transfers-csv',
},
csv_export_logs: {
path: '/api/v1/logs-csv',
// path: '/api/v1/logs-csv',
path: '/logs-csv',
},
graphql: {
path: '/api/v1/graphql',
// path: '/api/v1/graphql',
path: '/graphql',
},
};

Expand Down

0 comments on commit 821eac9

Please sign in to comment.