Skip to content

Commit

Permalink
Merge pull request #105 from pimlicolabs/fix/issue-104
Browse files Browse the repository at this point in the history
import from viem instead of abitype
plusminushalf authored Jan 30, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 3a5f4ad + 76c4031 commit b5ea416
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-doors-fold.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"permissionless": patch
---

Remove imports from abitype and move them to viem, fixes: issue#105
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TypedData } from "abitype"
import type { TypedData } from "viem"
import {
type Address,
type Chain,
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TypedData } from "abitype"
import type { TypedData } from "viem"
import {
type Address,
type Chain,
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { TypedData } from "abitype"
import type { TypedData } from "viem"
import {
type Address,
type Chain,
2 changes: 1 addition & 1 deletion packages/permissionless/clients/decorators/bundler.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Address } from "abitype"
import type { Address } from "viem"
import type { Client, Hash } from "viem"
import { chainId } from "../../actions/bundler/chainId"
import {
2 changes: 1 addition & 1 deletion packages/permissionless/types/userOperation.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Address } from "abitype"
import type { Address } from "viem"
import type { Hex } from "viem"

export type TStatus = "success" | "reverted"

0 comments on commit b5ea416

Please sign in to comment.