27 lines
892 B
TypeScript
27 lines
892 B
TypeScript
import { OnlineState } from "@/app/providers/ProtocolProvider/protocol/packets/packet.onlinestate";
|
|
import { SystemUserInformation } from "./SystemAccountsProvider";
|
|
import updates from './avatars/updates.png';
|
|
import safe from './avatars/safe.png';
|
|
|
|
export function useSystemAccounts() : SystemUserInformation[] {
|
|
const accounts : SystemUserInformation[] = [
|
|
{
|
|
publicKey: "0x000000000000000000000000000000000000000001",
|
|
verified: 1,
|
|
title: "Rosetta Updates",
|
|
username: "updates",
|
|
online: OnlineState.OFFLINE,
|
|
avatar: updates
|
|
},
|
|
{
|
|
publicKey: "0x000000000000000000000000000000000000000002",
|
|
verified: 1,
|
|
title: "Safe",
|
|
username: "safe",
|
|
online: OnlineState.OFFLINE,
|
|
avatar: safe
|
|
}
|
|
];
|
|
|
|
return accounts;
|
|
} |