Skip to content

Commit

Permalink
fix type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
frontendphil committed Dec 11, 2024
1 parent cfabe53 commit 3f4c38c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { HexAddress, LegacyConnection, TransactionData } from '@/types'
import { ContractFactories, KnownContracts } from '@gnosis.pm/zodiac'
import type { MetaTransactionData } from '@safe-global/safe-core-sdk-types'
import { toQuantity } from 'ethers'

const RolesV1Interface =
ContractFactories[KnownContracts.ROLES_V1].createInterface()
Expand Down Expand Up @@ -56,6 +57,6 @@ export function wrapRequest(
from: connection.pilotAddress as HexAddress,
to: connection.moduleAddress as HexAddress,
data: data as HexAddress,
value: 0n,
value: toQuantity(0n),
}
}

0 comments on commit 3f4c38c

Please sign in to comment.