Skip to content
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
36 changes: 36 additions & 0 deletions account-kit/infra/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -924,3 +924,39 @@ export const cronosTestnet: Chain = {
},
},
};

export const robinhoodMainnet: Chain = defineChain({
id: 4663,
name: "Robinhood Mainnet",
nativeCurrency: { name: "eth", symbol: "eth", decimals: 18 },
rpcUrls: {
default: {
http: ["https://robinhood-mainnet.g.alchemy.com/v2"],
},
public: {
http: ["https://robinhood-mainnet.g.alchemy.com/v2"],
},
alchemy: {
http: ["https://robinhood-mainnet.g.alchemy.com/v2"],
},
},
testnet: false,
});

export const robinhoodTestnet: Chain = defineChain({
id: 46630,
name: "Robinhood Testnet",
nativeCurrency: { name: "eth", symbol: "eth", decimals: 18 },
rpcUrls: {
default: {
http: ["https://robinhood-testnet.g.alchemy.com/v2"],
},
public: {
http: ["https://robinhood-testnet.g.alchemy.com/v2"],
},
alchemy: {
http: ["https://robinhood-testnet.g.alchemy.com/v2"],
},
},
testnet: true,
});
2 changes: 2 additions & 0 deletions account-kit/infra/src/exports/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export {
hyperliquidEvmTestnet,
cronos,
cronosTestnet,
robinhoodMainnet,
robinhoodTestnet,
} from "../chains.js";
export type * from "../client/decorators/smartAccount.js";
export { alchemyActions } from "../client/decorators/smartAccount.js";
Expand Down
Loading