Skip to content

Commit

Permalink
Merge pull request #28 from poap-xyz/release/v1.1.10
Browse files Browse the repository at this point in the history
Release v1.1.10
  • Loading branch information
jm42 authored May 9, 2023
2 parents 1c47c2a + 052304a commit 73aaf82
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Contributing to POAP Family

Thank you for contribute to POAP Family project. Any contribution you make will be reflected on https://poap.family.

The codebase is under MIT license. All code submitted must be licensed under these terms (2-clause BSD, ISC, etc.).
1 change: 0 additions & 1 deletion CONTRIBUTORS

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poap-xyz/poap-family",
"version": "1.1.9",
"version": "1.1.10",
"author": {
"name": "POAP",
"url": "https://poap.xyz"
Expand Down
13 changes: 9 additions & 4 deletions src/loaders/ethereum.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@ async function resolveEnsNames(addresses, limit = 300) {
const resolvedAddresses = {}
for (let i = 0; i < addresses.length; i += limit) {
const chunk = addresses.slice(i, i + limit)
const names = await ensReverseRecordsContract.getNames(chunk)
for (let i = 0; i < names.length; i++) {
if (names[i] !== '') {
resolvedAddresses[chunk[i]] = names[i]
try {
const names = await ensReverseRecordsContract.getNames(chunk)
for (let i = 0; i < names.length; i++) {
if (names[i] !== '') {
resolvedAddresses[chunk[i]] = names[i]
}
}
} catch (err) {
i = i - limit + 1
continue
}
}
return resolvedAddresses
Expand Down
6 changes: 4 additions & 2 deletions src/styles/events.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
}
}

.events .in-common .active-events {
top: 100%;
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
.events .in-common .active-events {
top: 100%;
}
}

0 comments on commit 73aaf82

Please sign in to comment.