Skip to content

Commit

Permalink
move index.ts to allo.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
boudra committed Jan 11, 2024
1 parent 920016c commit 9c50415
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/common/src/allo/backends/allo-v1.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Address, Hex } from "viem";
import { Allo, AlloError, AlloOperation } from "../index";
import { Allo, AlloError, AlloOperation } from "../allo";
import {
TransactionReceipt,
TransactionSender,
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/allo/common.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AlloError } from ".";
import { AlloError } from "./allo";

export type Result<T> =
| { type: "success"; value: T }
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/allo/ipfs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AlloError } from ".";
import { AlloError } from "./allo";
import { Result, error, success } from "./common";

export interface IpfsUploader {
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion packages/common/src/allo/react.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { createContext, useContext } from "react";
import { Allo } from "../allo";
import { Allo } from "./allo";

export const AlloContext = createContext<Allo | null>(null);

Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/allo/transaction-sender.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
encodeFunctionData,
} from "viem";
import { Result, error, success } from "./common";
import { AlloError } from ".";
import { AlloError } from "./allo";

export interface TransactionData {
to: Hex;
Expand Down

0 comments on commit 9c50415

Please sign in to comment.