Skip to content

Commit

Permalink
Cache api url should not be readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
andreespirela committed Mar 28, 2022
1 parent 8df1c28 commit 79cebb1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "verto-cache-interface",
"version": "1.2.0",
"version": "1.2.1",
"description": "A communication package with Verto Cache System",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ export class CacheInterfaceConstants {

public static readonly COMMUNITY_CONTRACT: string = 't9T7DIOGxx4VWXoCEeYYarFYeERTpWIC1V3y-BPZgKE'
public static readonly CONTRACT_CDN: string = 'https://storage.googleapis.com/verto-exchange-contracts';
public static readonly CACHE_API: string = 'https://verto-328413.uc.r.appspot.com'
public static CACHE_API: string = 'https://verto-328413.uc.r.appspot.com'

}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ export * from './calls/fetch-artwork-metadata';
export * from './calls/fetch-token-by-id';
export * from './calls/fetch-paginated';
export * from './hooks/cache-contract-hook';
export * from './constants';

0 comments on commit 79cebb1

Please sign in to comment.