Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #1285

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/ethereum-wallets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Project ID is required, please obtain it from [walletconnect.com](https://wallet
- `skipSignInAccessKey` (`boolean?`): Allows connecting Ethereum wallets without adding a Limited Access Key which would require owning NEAR to execute the transaction (for rainbowbridge.app and welcome.near.org).
- `nearNodeUrl` (`string?`): NEAR node url to query the NEAR transaction status and onboarding access key.

Developent options (before the NEAR protocol upgrade to support 0x accounts natively):
Development options (before the NEAR protocol upgrade to support 0x accounts natively):

- `devMode` (`boolean?`): During development NEAR protocol doesn't yet support `0x123...abc` accounts natively so in devMode the account with format `0x123...abc.eth-wallet.testnet` is used insead. Setup your devMode account at https://near-wallet-playground.testnet.aurora.dev
- `devModeAccount` (`string?`): Modify the namespace of the devMode root accounts.
Expand Down
4 changes: 2 additions & 2 deletions packages/modal-ui/src/lib/components/DerivationPath.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ export const DerivationPath: React.FC<DerivationPathProps> = ({
const [customAccountId, setCustomAccountId] = useState("");
const [connecting, setConnecting] = useState(false);

const initalHeaderTitle = translate("modal.ledger.connectWithLedger");
const [headerTitle, setHeaderTitle] = useState(initalHeaderTitle);
const initialHeaderTitle = translate("modal.ledger.connectWithLedger");
const [headerTitle, setHeaderTitle] = useState(initialHeaderTitle);

const getAccountIds = async (publicKey: string): Promise<Array<string>> => {
const url = `${selector.options.network.indexerUrl}/public_key/ed25519:${publicKey}`;
Expand Down
Loading