Skip to content

Commit

Permalink
Make docs for iconUrl more generic.
Browse files Browse the repository at this point in the history
  • Loading branch information
kujtimprenkuSQA committed Oct 6, 2023
1 parent c1491ff commit 46e00ae
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 19 deletions.
2 changes: 1 addition & 1 deletion packages/coin98-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupCoin98Wallet } from "@near-wallet-selector/coin98-wallet";

// Coin98 Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const coin98Wallet = setupCoin98Wallet({
iconUrl: "https://<Your Icon URL here>"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});


Expand Down
2 changes: 1 addition & 1 deletion packages/finer-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { setupFinerWallet } from "@near-wallet-selector/finer-wallet";
// FiNER Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const nearWallet = setupFinerWallet({
walletUrl: "finer://wallet.testnet.near.org",
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/here-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupHereWallet } from "@near-wallet-selector/here-wallet";

// HERE Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const hereWallet = setupHereWallet({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/ledger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupLedger } from "@near-wallet-selector/ledger";

// Ledger for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const ledger = setupLedger({
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/math-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupMathWallet } from "@near-wallet-selector/math-wallet";

// Math Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const mathWallet = setupMathWallet({
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/meteor-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupMeteorWallet } from "@near-wallet-selector/meteor-wallet";

// Meteor for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const meteorWallet = setupMeteorWallet({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/my-near-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupMyNearWallet } from "@near-wallet-selector/my-near-wallet";
// My NEAR Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const myNearWallet = setupMyNearWallet({
walletUrl: "https://testnet.mynearwallet.com",
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/narwallets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { setupNarwallets } from "@near-wallet-selector/narwallets";

// Narwallets for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const narwallets = setupNarwallets({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/near-snap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupNearSnap } from "@near-wallet-selector/near-snap";

// Near Snap for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const nearSnap = setupNearSnap({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/near-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { setupNearWallet } from "@near-wallet-selector/near-wallet";
// NEAR Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const nearWallet = setupNearWallet({
walletUrl: "https://wallet.testnet.near.org",
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/nearfi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupNearFi } from "@near-wallet-selector/nearfi";

// NearFi for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const nearFi = setupNearFi({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/neth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupNeth } from "@near-wallet-selector/neth";

// NETH for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const neth = setupNearSnap({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/nightly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { setupNightly } from "@near-wallet-selector/nightly";

// Nightly for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const nightly = setupNightly({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/opto-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { setupOptoWallet } from "@near-wallet-selector/opto-wallet";
// My NEAR Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const optoWallet = setupOptoWallet({
walletUrl: "https://app.testnet.optowallet.com",
iconUrl: "https://yourdomain.com/yourwallet-icon.png"
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
4 changes: 3 additions & 1 deletion packages/ramper-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupRamperWallet } from "@near-wallet-selector/ramper-wallet";

// Ramper for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const ramper = setupRamperWallet();
const ramper = setupRamperWallet({
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
network: "testnet",
Expand Down
2 changes: 1 addition & 1 deletion packages/sender/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupSender } from "@near-wallet-selector/sender";

// Sender for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const sender = setupSender({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet-connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const walletConnect = setupWalletConnect({
icons: ["https://avatars.githubusercontent.com/u/37784886"],
},
chainId: "near:testnet",
iconUrl: "https://yourdomain.com/yourwallet-icon.png",
iconUrl: "https://<Wallet Icon URL Here>",
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/welldone-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupWelldoneWallet } from "@near-wallet-selector/welldone-wallet";

// WELLDONE Wallet for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const welldone = setupWelldoneWallet({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down
2 changes: 1 addition & 1 deletion packages/xdefi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { setupXDEFI } from "@near-wallet-selector/xdefi";

// XDEFI for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const xdefi = setupXDEFI({
iconUrl: "https://yourdomain.com/yourwallet-icon.png" //optional
iconUrl: "https://<Wallet Icon URL Here>" // optional
});

const selector = await setupWalletSelector({
Expand Down

0 comments on commit 46e00ae

Please sign in to comment.