Skip to content

Commit

Permalink
Remove ethers deps from types
Browse files Browse the repository at this point in the history
  • Loading branch information
yagopv committed Apr 26, 2024
1 parent ccb0f0e commit c72c439
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions packages/safe-core-sdk-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
],
"homepage": "https://github.com/safe-global/safe-core-sdk#readme",
"dependencies": {
"@safe-global/safe-deployments": "^1.34.0",
"ethers": "^6.7.1"
"@safe-global/safe-deployments": "^1.34.0"
},
"devDependencies": {
"abitype": "^1.0.2"
Expand Down
4 changes: 1 addition & 3 deletions packages/safe-core-sdk-types/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { ContractTransactionResponse } from 'ethers'

export type SafeVersion = '1.4.1' | '1.3.0' | '1.2.0' | '1.1.1' | '1.0.0'

export enum OperationType {
Expand Down Expand Up @@ -97,7 +95,7 @@ export interface BaseTransactionResult {
}

export interface TransactionResult extends BaseTransactionResult {
transactionResponse: ContractTransactionResponse
transactionResponse: unknown
options?: TransactionOptions
}

Expand Down

0 comments on commit c72c439

Please sign in to comment.