Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Aug 7, 2023
1 parent 60ea8b8 commit 9e21947
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@gorhom/portal": "1.0.14",
"@helium/account-fetch-cache": "^0.2.17",
"@helium/account-fetch-cache-hooks": "^0.2.17",
"@helium/address": "4.6.2",
"@helium/address": "4.10.2",
"@helium/circuit-breaker-sdk": "^0.2.17",
"@helium/crypto-react-native": "4.8.0",
"@helium/currency-utils": "0.1.1",
Expand Down
5 changes: 1 addition & 4 deletions src/features/dappLogin/DappLoginScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,13 @@ import DappAccount from './DappAccount'
import DappConnect from './DappConnect'
import { useWalletConnect } from './WalletConnectProvider'

export const EMPTY_B58_ADDRESS = Address.fromB58(
'13PuqyWXzPYeXcF1B9ZRx7RLkEygeL374ZABiQdwRSNzASdA1sn',
)
const makeBurnTxn = async (opts: { payerB58: string }) => {
const { payerB58 } = opts

const txn = new TokenBurnV1({
amount: 1,
payer: Address.fromB58(payerB58),
payee: EMPTY_B58_ADDRESS,
payee: Address.fromB58(payerB58),
nonce: 0,
memo: '',
})
Expand Down
2 changes: 1 addition & 1 deletion src/navigation/RootNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useColors } from '@theme/themeHooks'
import React, { memo, useCallback, useEffect, useRef } from 'react'
import changeNavigationBarColor from 'react-native-navigation-bar-color'
import { useSelector } from 'react-redux'
import DappLoginScreen from 'src/features/dappLogin/DappLoginScreen'
import DappLoginScreen from '../features/dappLogin/DappLoginScreen'
import ConnectedWallets, {
ConnectedWalletsRef,
} from '../features/account/ConnectedWallets'
Expand Down
11 changes: 1 addition & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2275,16 +2275,7 @@
dependencies:
"@solana/web3.js" "^1.43.4"

"@helium/[email protected]":
version "4.6.2"
resolved "https://registry.yarnpkg.com/@helium/address/-/address-4.6.2.tgz#0356bd9693ff7184f93f3c4e12c04f4f9c1db7b6"
integrity sha512-MXlT9SH4HPrBj+r71w51grZj4MUNi4o4SnDJds/yallROBK0qlO8m/bDCsKfmj0FVm861tIfQBrJc6y5vjsymg==
dependencies:
bs58 "^5.0.0"
js-sha256 "^0.9.0"
multiformats "^9.6.4"

"@helium/address@^4.10.2":
"@helium/[email protected]", "@helium/address@^4.10.2":
version "4.10.2"
resolved "https://registry.yarnpkg.com/@helium/address/-/address-4.10.2.tgz#56960b118fceb6b6ddabe3e4ecec467d9ae50e26"
integrity sha512-qCswC7Z3GXuJyHv36RcOSnffeghjqJQx0fdu2Lxpf9fgOnIi1JZO2tjjk1mBaqOwCyp+0YzrTPUoEukL/WCtsA==
Expand Down

0 comments on commit 9e21947

Please sign in to comment.