Skip to content

Commit

Permalink
🔧 Increase file size limit to 200MB
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Oct 17, 2023
1 parent 473d9fe commit ff8c822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions constant/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,4 @@ export const LIKECOIN_CHAIN_STAKING_ENDPOINT = IS_TESTNET
? 'https://likecoin-public-testnet-5.netlify.app/validators'
: 'https://dao.like.co/validators';

export const UPLOAD_FILESIZE_MAX = 100000000; // 100MB


export const UPLOAD_FILESIZE_MAX = 200 * 1024 * 1024; // 200MB
2 changes: 1 addition & 1 deletion server/constant/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export const COINGECKO_PRICE_API = 'https://api.coingecko.com/api/v3/simple/pric

export const COSMOS_RPC_ENDPOINT = configRpc || (IS_TESTNET ? 'https://node.testnet.like.co/rpc/' : 'https://mainnet-node.like.co/rpc/')

export const UPLOAD_FILESIZE_MAX = 100 * 1024 * 1024; // 100MB
export const UPLOAD_FILESIZE_MAX = 200 * 1024 * 1024; // 200MB

0 comments on commit ff8c822

Please sign in to comment.