Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Aug 26, 2023
1 parent 9718842 commit 09b54b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/transactionRouter/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import { KeyringPair } from "@polkadot/keyring/types";
import { AccountType } from "../../../types/types-arguments/identity";

export type AccountIdRaw = Uint8Array;
export type NetworkId = number;
export type ChainId = number;

export type Sender = {
keypair: KeyringPair;
chain: NetworkId;
chain: ChainId;
}

export type Receiver = {
addressRaw: AccountIdRaw;
type: AccountType;
chain: NetworkId;
chain: ChainId;
}

export type Fungible = {
Expand Down

0 comments on commit 09b54b2

Please sign in to comment.