Skip to content

Commit

Permalink
refact: rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
cristovaoth committed Dec 14, 2024
1 parent 1fab35e commit 5b1f010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/execute/plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import assert from 'assert'
import { decodeFunctionData, hashTypedData, parseAbi, zeroAddress } from 'viem'
import { Eip1193Provider } from '@safe-global/protocol-kit'

import { encodeMultiSend } from './multisend'
import { createPreApprovedSignature } from './signatures'
import { encodeMultiSend } from './multisend'
import { prepareSafeTransaction } from './safeTransaction'

import { splitPrefixedAddress } from '../addresses'
import { typedDataForSafeTransaction } from '../eip712'
Expand Down Expand Up @@ -35,7 +36,6 @@ import {
type Route,
type Waypoint,
} from '../types'
import prepareSafeTransaction from './prepareSafeTransaction'

interface Options {
/** Allows specifying which role to choose at any Roles node in the route in case multiple roles are available. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ interface Options {
}
}

export default async function prepareSafeTransaction({
export async function prepareSafeTransaction({
chainId,
safe,
transaction,
Expand Down

0 comments on commit 5b1f010

Please sign in to comment.