Skip to content

Commit a15134f

Browse files
committed
cleanup
1 parent aac9404 commit a15134f

13 files changed

+1590
-851
lines changed

eslint.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export default tseslint.config(
3030
},
3131
{
3232
rules: {
33+
"prefer-const": "off",
3334
"@typescript-eslint/consistent-type-exports": [
3435
"error",
3536
{
@@ -39,6 +40,11 @@ export default tseslint.config(
3940
"@typescript-eslint/consistent-type-imports": "error",
4041
"@typescript-eslint/no-deprecated": "warn",
4142
"@typescript-eslint/no-explicit-any": "warn",
43+
"@typescript-eslint/await-thenable": "off",
44+
"@typescript-eslint/no-unnecessary-condition": "off",
45+
"@typescript-eslint/no-unsafe-member-access": "off",
46+
"@typescript-eslint/no-unsafe-assignment": "off",
47+
"@typescript-eslint/no-unsafe-call": "off",
4248
"@typescript-eslint/no-unused-vars": [
4349
"error",
4450
{

helpers/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const createUser = (key: `0x${string}`): User => {
2828

2929
export const createSigner = (key: `0x${string}`): Signer => {
3030
const user = createUser(key);
31+
console.log(`User: ${user.account.address}`, IdentifierKind.Ethereum);
3132
return {
3233
type: "EOA",
3334
getIdentifier: () => ({

integrations/paymentagent/.gitignore

-1
This file was deleted.

integrations/paymentagent/README.md

-119
This file was deleted.

integrations/paymentagent/package.json

-42
This file was deleted.

integrations/paymentagent/scripts/generate-keys.ts

-103
This file was deleted.

0 commit comments

Comments
 (0)