Skip to content

Commit

Permalink
move helper files
Browse files Browse the repository at this point in the history
  • Loading branch information
cristovaoth committed Feb 25, 2025
1 parent 8113543 commit 698dbf7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/src/main/target/authoring/c/comparison.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import {
import { Operator, ParameterType } from "zodiac-roles-deployments"

import { abiEncode } from "../../../abiEncode"
import { describeStructure } from "../helpers/describeStructure"
import { parameterType } from "../helpers/parameterType"
import { describeStructure } from "./helpers/describeStructure"
import { parameterType } from "./helpers/parameterType"

import { ConditionFunction } from "../types"

Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/src/main/target/authoring/c/matches.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Condition, Operator, ParameterType } from "zodiac-roles-deployments"

import { coercePermission } from "../../../permission/coercePermission"
import { checkParameterTypeCompatibility } from "../../condition/conditionIntegrity"
import { describeStructure } from "../helpers/describeStructure"
import { parameterType } from "../helpers/parameterType"
import { describeStructure } from "./helpers/describeStructure"
import { parameterType } from "./helpers/parameterType"

import { and } from "./branching"
import { bitmask, eq } from "./comparison"
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk/src/main/target/authoring/c/pass.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ParamType } from "ethers"
import { Operator } from "zodiac-roles-deployments"

import { describeStructure } from "../helpers/describeStructure"
import { parameterType } from "../helpers/parameterType"
import { describeStructure } from "./helpers/describeStructure"
import { parameterType } from "./helpers/parameterType"

/**
* Allows any value to pass
Expand Down

0 comments on commit 698dbf7

Please sign in to comment.