Skip to content

Commit dbd957b

Browse files
feat(openloot): add openloot to aa-sdk
1 parent 0a1a03d commit dbd957b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

account-kit/infra/src/chains.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,3 +514,27 @@ export const mekong: Chain = defineChain({
514514
},
515515
testnet: true,
516516
});
517+
518+
export const openlootSepolia: Chain = defineChain({
519+
id: 905905,
520+
name: "Openloot Sepolia",
521+
nativeCurrency: { name: "Openloot", symbol: "OL", decimals: 18 },
522+
rpcUrls: {
523+
default: {
524+
http: ["https://openloot-sepolia.g.alchemy.com/v2"],
525+
},
526+
public: {
527+
http: ["https://openloot-sepolia.g.alchemy.com/v2"],
528+
},
529+
alchemy: {
530+
http: ["https://openloot-sepolia.g.alchemy.com/v2"],
531+
},
532+
},
533+
blockExplorers: {
534+
default: {
535+
name: "Block Explorer",
536+
url: "https://openloot-sepolia.explorer.alchemy.com",
537+
},
538+
},
539+
testnet: true,
540+
});

account-kit/infra/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export {
4141
inkSepolia,
4242
mekong,
4343
monadTestnet,
44+
openlootSepolia,
4445
} from "./chains.js";
4546
export type * from "./client/decorators/alchemyEnhancedApis.js";
4647
export { alchemyEnhancedApiActions } from "./client/decorators/alchemyEnhancedApis.js";

0 commit comments

Comments
 (0)