Skip to content

Commit da4b016

Browse files
committed
fix(docs): replace broken appLogoUrl example (base.org/logo.png returns 404)
1 parent 911022f commit da4b016

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/base-account/improve-ux/batch-transactions.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import { createBaseAccountSDK } from "@base-org/account";
4848

4949
const sdk = createBaseAccountSDK({
5050
appName: "Base Account SDK Demo",
51-
appLogoUrl: "https://base.org/logo.png",
51+
appLogoUrl: "https://avatars.githubusercontent.com/u/108554348?s=200",
5252
});
5353

5454
const provider = sdk.getProvider();
@@ -66,7 +66,7 @@ import { numberToHex, parseEther } from "viem";
6666

6767
const sdk = createBaseAccountSDK({
6868
appName: "Batch Transaction Demo",
69-
appLogoUrl: "https://base.org/logo.png",
69+
appLogoUrl: "https://avatars.githubusercontent.com/u/108554348?s=200",
7070
});
7171

7272
const provider = sdk.getProvider();
@@ -165,7 +165,7 @@ const NFT_CONTRACT_ADDRESS = "0x82039e7C37D7aAc98D0F4d0A762F4E0d8c8DC273";
165165
async function approveAndTransfer() {
166166
const sdk = createBaseAccountSDK({
167167
appName: "ERC-20 Batch Demo",
168-
appLogoUrl: "https://base.org/logo.png",
168+
appLogoUrl: "https://avatars.githubusercontent.com/u/108554348?s=200",
169169
});
170170

171171
const provider = sdk.getProvider();

docs/base-account/improve-ux/spend-permissions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import { base } from "viem/chains";
4444

4545
const sdk = createBaseAccountSDK({
4646
appName: 'Base Account SDK Demo',
47-
appLogoUrl: 'https://base.org/logo.png',
47+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
4848
appChainIds: [base.id],
4949
});
5050

@@ -201,7 +201,7 @@ import { base } from "viem/chains";
201201

202202
const sdk = createBaseAccountSDK({
203203
appName: 'Base Account SDK Demo',
204-
appLogoUrl: 'https://base.org/logo.png',
204+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
205205
appChainIds: [base.id],
206206
});
207207

docs/base-account/improve-ux/sponsor-gas/paymasters.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ the [Coinbase Developer Platform documentation](https://docs.cdp.coinbase.com/pa
108108

109109
const sdk = createBaseAccountSDK({
110110
appName: 'Paymaster Demo',
111-
appLogoUrl: 'https://base.org/logo.png',
111+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
112112
appChainIds: [base.constants.CHAIN_IDS.baseSepolia], // or base.constants.CHAIN_IDS.base for mainnet
113113
});
114114

@@ -148,7 +148,7 @@ the [Coinbase Developer Platform documentation](https://docs.cdp.coinbase.com/pa
148148
async function sendSponsoredTransaction() {
149149
const sdk = createBaseAccountSDK({
150150
appName: 'Paymaster Demo',
151-
appLogoUrl: 'https://base.org/logo.png',
151+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
152152
appChainIds: [base.constants.CHAIN_IDS.baseSepolia],
153153
});
154154

@@ -213,7 +213,7 @@ the [Coinbase Developer Platform documentation](https://docs.cdp.coinbase.com/pa
213213
async function sendMultipleSponsoredTransactions() {
214214
const sdk = createBaseAccountSDK({
215215
appName: 'Paymaster Demo',
216-
appLogoUrl: 'https://base.org/logo.png',
216+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
217217
appChainIds: [base.constants.CHAIN_IDS.baseSepolia],
218218
});
219219

@@ -264,7 +264,7 @@ the [Coinbase Developer Platform documentation](https://docs.cdp.coinbase.com/pa
264264
async function checkPaymasterSupport() {
265265
const sdk = createBaseAccountSDK({
266266
appName: 'Paymaster Demo',
267-
appLogoUrl: 'https://base.org/logo.png',
267+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
268268
appChainIds: [base.constants.CHAIN_IDS.baseSepolia],
269269
});
270270

docs/base-account/improve-ux/sub-accounts.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ import { base } from 'viem/chains';
104104
// Initialize SDK with Sub Account configuration
105105
const sdk = createBaseAccountSDK({
106106
appName: 'Base Account SDK Demo',
107-
appLogoUrl: 'https://base.org/logo.png',
107+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
108108
appChainIds: [base.id],
109109
});
110110

@@ -339,7 +339,7 @@ If your users' Sub Accounts will be funded manually, you can disable Auto Spend
339339
```tsx page.tsx
340340
const sdk = createBaseAccountSDK({
341341
appName: 'Base Account SDK Demo',
342-
appLogoUrl: 'https://base.org/logo.png',
342+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
343343
appChainIds: [base.id],
344344
subAccounts: {
345345
funding: 'manual', // Disable auto spend permissions

docs/base-account/quickstart/web-react.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default function Home() {
8282
const sdk = createBaseAccountSDK(
8383
{
8484
appName: 'Base Account Quick-start',
85-
appLogoUrl: 'https://base.org/logo.png',
85+
appLogoUrl: 'https://avatars.githubusercontent.com/u/108554348?s=200',
8686
}
8787
);
8888

docs/base-account/quickstart/web.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This guide uses the CDN approach for simplicity.
9898
const provider = window
9999
.createBaseAccountSDK({
100100
appName: "Base Account Quick-start",
101-
appLogoUrl: "https://base.org/logo.png",
101+
appLogoUrl: "https://avatars.githubusercontent.com/u/108554348?s=200",
102102
})
103103
.getProvider();
104104
const statusDiv = document.getElementById("status");

0 commit comments

Comments
 (0)