Skip to content

chore(deps): update dependency ethers to v6.13.7 #451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-functional": "^9.0.0",
"ethers": "6.13.5",
"ethers": "6.13.7",
"globals": "^16.0.0",
"husky": "9.1.7",
"prettier": "3.5.3",
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -850,7 +850,7 @@ __metadata:
eslint: "npm:^9.13.0"
eslint-config-prettier: "npm:^10.0.0"
eslint-plugin-functional: "npm:^9.0.0"
ethers: "npm:6.13.5"
ethers: "npm:6.13.7"
globals: "npm:^16.0.0"
husky: "npm:9.1.7"
jsonwebtoken: "npm:^9.0.2"
@@ -5207,9 +5207,9 @@ __metadata:
languageName: node
linkType: hard

"ethers@npm:6.13.5":
version: 6.13.5
resolution: "ethers@npm:6.13.5"
"ethers@npm:6.13.7":
version: 6.13.7
resolution: "ethers@npm:6.13.7"
dependencies:
"@adraffy/ens-normalize": "npm:1.10.1"
"@noble/curves": "npm:1.2.0"
@@ -5218,7 +5218,7 @@ __metadata:
aes-js: "npm:4.0.0-beta.5"
tslib: "npm:2.7.0"
ws: "npm:8.17.1"
checksum: 10c0/64bc7b8907de199392b8a88c15c9a085892919cff7efa2e5326abc7fe5c426001726c51d91e10c74e5fc5e2547188297ce4127f6e52ea42a97ade0b2ae474677
checksum: 10c0/bb693e8714c6082ee2c1d2af8a209bbc10d83ca4a686de368e169bf1dc804e926be58280c4bdaf0c2e9a4d021317f0db694ecfa4040381728ca46d45427db2a7
languageName: node
linkType: hard


Unchanged files with check annotations Beta

Success = 'success',
}
export const createRequestBody = ({

Check warning on line 5 in src/utils/webhooks.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")

Check warning on line 5 in src/utils/webhooks.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")
status,
account,
paymentGateway,
* @param {string} options.clientKey - the public client key
* @returns Promise that will be resolved by loading script
*/
export const loadLibrary = async ({ clientKey }: { clientKey: string }) => {

Check warning on line 11 in src/utils/load-library.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")

Check warning on line 11 in src/utils/load-library.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")
if (
(typeof document !== 'undefined' &&
document.querySelector(
export const composePassportItem = async (
payload: Uint8Array | string,
{

Check warning on line 9 in src/utils/compose-passport-item.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")

Check warning on line 9 in src/utils/compose-passport-item.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")
config,
client,
}: {
* This endpoint is expected to be called with the following parameters:
* ?id={MEMBERSHIP_ID}&eoa={USER_EOA}&email.customer_name={USER_NAME}&email.customer_email_address={USER_EMAIL_ADDRESS}&dummy={OPTIONAL_BOOLEAN}
*/
export const get: ({

Check warning on line 122 in src/api/payment-key.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")

Check warning on line 122 in src/api/payment-key.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")
config,
propertyAddress,
chainId,
* This endpoint is expected to be called with the following parameters:
* ?params={ABI_ENCODED_PARAMS}
*/
export const post: ({

Check warning on line 44 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")

Check warning on line 44 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyDeep" (actual: "Mutable")
chainId,
rpcUrl,
webhookOnFulfillment,
const params = whenNotError(paramsSaved, (p) =>
tryCatch(
(v: string) => AbiCoder.defaultAbiCoder().decode(abi, v).map(String),
(err: Error) => new Error(err.message ?? err),

Check warning on line 153 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyShallow" (actual: "Mutable")

Check warning on line 153 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyShallow" (actual: "Mutable")
)(p),
)
console.log(8, { params })
(encryptedText) =>
tryCatch(
(v: string) => jsonwebtoken.verify(v, SALT ?? '') as string,
(err: Error) => new Error(err.message ?? err),

Check warning on line 208 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyShallow" (actual: "Mutable")

Check warning on line 208 in src/api/fulfillment.ts

GitHub Actions / build (20.x)

Parameter should have an immutability of at least "ReadonlyShallow" (actual: "Mutable")
)(encryptedText),
)
console.log(10, { decryptedWebhookUrl })
} from '@devprotocol/clubs-core'
import { default as Default } from './Default.astro'
export const getPagePaths = (async () => []) satisfies ClubsFunctionGetPagePaths

Check warning on line 11 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter

Check warning on line 11 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter
export const getAdminPaths =
(async () => []) satisfies ClubsFunctionGetAdminPaths

Check warning on line 14 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter

Check warning on line 14 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter
export const getLayout = (async () => ({

Check warning on line 16 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter

Check warning on line 16 in .preview/theme/index.ts

GitHub Actions / build (20.x)

Functions must have at least one parameter
layout: Default,
})) satisfies ClubsFunctionGetLayout