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