Skip to content

Commit

Permalink
chore: yarn version update
Browse files Browse the repository at this point in the history
  • Loading branch information
opatavi committed Apr 14, 2024
1 parent 04b5fc4 commit ba3e402
Show file tree
Hide file tree
Showing 8 changed files with 4,265 additions and 2,455 deletions.
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,12 @@ test/contracts/types
src/logs/

# yarn
yarn-error.log
yarn-error.log

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
893 changes: 893 additions & 0 deletions .yarn/releases/yarn-4.1.1.cjs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.1.1.cjs
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
"lint-staged": {
"*.{js,json,md,ts}": "yarn format",
"*.{ts,js}": "yarn lint"
}
},
"packageManager": "yarn@4.1.1"
}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export {
CallWithSyncFeeConcurrentERC2771Request,
CallWithConcurrentERC2771Request,
Config,
PublicOrWalletClient,
TaskState,
};

Expand Down
6 changes: 4 additions & 2 deletions src/lib/erc2771/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Address } from "viem";

import {
BaseCallWithSyncFeeParams,
BaseRelayParams,
Expand Down Expand Up @@ -124,13 +126,13 @@ export type CallWithConcurrentERC2771Struct = BaseRelayParams &
ConcurrentERC2771UserParams;

export type ERC2771UserParams = {
user: string;
user: Address;
userNonce: bigint;
userDeadline: number;
};

export type ConcurrentERC2771UserParams = {
user: string;
user: Address;
userSalt: string;
userDeadline: number;
};
Expand Down
4 changes: 2 additions & 2 deletions src/lib/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Hex, ByteArray, WalletClient, PublicClient } from "viem";
import { Hex, WalletClient, PublicClient } from "viem";

export enum RelayCall {
CallWithSyncFee,
Expand Down Expand Up @@ -45,7 +45,7 @@ export const EIP712_DOMAIN_TYPE_DATA = {
export type BaseRelayParams = {
chainId: bigint;
target: string;
data: Hex | ByteArray;
data: Hex;
};

export type BaseCallWithSyncFeeParams = {
Expand Down
5,801 changes: 3,352 additions & 2,449 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit ba3e402

Please sign in to comment.