'init'
This commit is contained in:
18
app/providers/SystemAccountsProvider/useSystemAccounts.ts
Normal file
18
app/providers/SystemAccountsProvider/useSystemAccounts.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user