diff --git a/.env.default b/.env.default index 4bda227..eb1d282 100644 --- a/.env.default +++ b/.env.default @@ -49,7 +49,7 @@ COMMS_FIXED_ADAPTER=ws-room:ws-room-service.decentraland.org/rooms/test-scene DEPLOYMENT_TTL=300000 MAX_PARCELS=4 MAX_SIZE=100 -ENS_MAX_SIZE=25 +ENS_MAX_SIZE=36 ALLOW_SDK6=false WHITELIST_URL=https://config.decentraland.org/worlds-whitelist.json NAME_VALIDATOR=DCL_NAME_CHECKER diff --git a/test/unit/limits-manager.spec.ts b/test/unit/limits-manager.spec.ts index 6489652..c64675d 100644 --- a/test/unit/limits-manager.spec.ts +++ b/test/unit/limits-manager.spec.ts @@ -21,7 +21,7 @@ describe('limits manager', function () { config = createConfigComponent({ MAX_PARCELS: '4', MAX_SIZE: '200', - ENS_MAX_SIZE: '25', + ENS_MAX_SIZE: '36', ALLOW_SDK6: 'false', WHITELIST_URL: 'http://localhost/whitelist.json' }) @@ -69,7 +69,7 @@ describe('limits manager', function () { it('responds for ENS names', async () => { expect(await limitsManager.getAllowSdk6For('cool.eth')).toBeFalsy() - expect(await limitsManager.getMaxAllowedSizeInBytesFor('cool.eth')).toBe(25n * MB_BigInt) + expect(await limitsManager.getMaxAllowedSizeInBytesFor('cool.eth')).toBe(36n * MB_BigInt) expect(await limitsManager.getMaxAllowedParcelsFor('cool.eth')).toBe(4) })