Skip to content

Commit

Permalink
Fix GridPlus popup URL (#33)
Browse files Browse the repository at this point in the history
* Fix GridPlus popup URL

* Fix test
  • Loading branch information
FrederikBolding authored Jul 12, 2022
1 parent 12e4606 commit 03f3b9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mycrypto/wallets",
"version": "1.5.0",
"version": "1.5.1",
"description": "Wallet abstractions to be used throughout the MyCrypto product suite.",
"repository": "MyCryptoHQ/wallets",
"author": "MyCrypto",
Expand Down
2 changes: 1 addition & 1 deletion src/implementations/deterministic/gridplus.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { getFullPath } from '../../utils';
import { GridPlusWallet, GridPlusWalletInstance } from './gridplus';

const config = { name: 'MyCrypto', deviceID: 'foo', password: 'bar' };
const origin = 'https://wallet.gridplus.io';
const origin = 'https://lattice.gridplus.io';

describe('GridPlusWalletInstance', () => {
describe('pairing', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/implementations/deterministic/gridplus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import type { Wallet } from '../../wallet';
import { wrapGridPlusError } from './errors';
import { HardwareWallet } from './hardware-wallet';

const POPUP_BASE_URL = 'https://wallet.gridplus.io';
const POPUP_BASE_URL = 'https://lattice.gridplus.io';

export interface GridPlusConfiguration extends GridPlusCredentials {
// For client
Expand Down

0 comments on commit 03f3b9c

Please sign in to comment.