Skip to content

Commit

Permalink
Rename ids
Browse files Browse the repository at this point in the history
  • Loading branch information
maxima-net committed Aug 11, 2022
1 parent 36e16e5 commit db9f329
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { BlockchainToolkitProvider } from '../../blockchain/index';
export class TaquitoBlockchainToolkitProvider implements BlockchainToolkitProvider {
static readonly BLOCKCHAIN = 'tezos';

readonly toolkitId = 'tezosToolkit';
readonly toolkitId = 'taquito';
protected toolkit: TezosToolkit | undefined;

constructor(
Expand Down
2 changes: 1 addition & 1 deletion src/tezos/wallets/beaconWalletTezosWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { decodePublicKey, signingUtils } from '../utils/index';
import { decodeSignature } from '../utils/signing';

export class BeaconWalletTezosWallet implements BlockchainWallet<TezosToolkit> {
readonly id = 'tezosToolkit';
readonly id = 'taquito';
readonly toolkit: TezosToolkit;

constructor(
Expand Down
2 changes: 1 addition & 1 deletion src/tezos/wallets/inMemoryTezosWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { AtomexNetwork } from '../../common/index';
import { decodePublicKey, signingUtils } from '../utils/index';

export class InMemoryTezosWallet implements BlockchainWallet<TezosToolkit> {
readonly id = 'tezosToolkit';
readonly id = 'taquito';
readonly toolkit: TezosToolkit;

protected readonly internalInMemorySigner: InMemorySigner;
Expand Down
2 changes: 1 addition & 1 deletion src/tezos/wallets/templeWalletTezosWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { decodePublicKey, signingUtils } from '../utils/index';
import { decodeSignature } from '../utils/signing';

export class TempleWalletTezosWallet implements BlockchainWallet<TezosToolkit> {
readonly id = 'tezosToolkit';
readonly id = 'taquito';
readonly blockchain = 'tezos';
readonly toolkit: TezosToolkit;

Expand Down

0 comments on commit db9f329

Please sign in to comment.