repo stringlengths 7 64 | file_url stringlengths 81 338 | file_path stringlengths 5 257 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:25:31 2026-01-05 01:50:38 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/test/specs/main.ts | relay/test/specs/main.ts | import savor, { Context, Completion } from 'savor'
const io = require("socket.io-client");
import { Server } from '../../src'
savor.
add('should start server', (context: Context, done: Completion) => {
const server = new Server()
savor.promiseShouldSucceed(server.start(), () => {}, (result) => {
con... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/Swarm.d.ts | relay/lib/Swarm.d.ts | import { MULTIADDRESS, ID, Server } from '.';
export declare class Swarm {
private _server;
private _set;
private _get;
private _del;
constructor(server: Server);
get server(): Server;
start(): Promise<void>;
addresses(): Promise<string[]>;
addPeer(id: ID, address: MULTIADDRESS): Pro... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/Pipe.d.ts | relay/lib/Pipe.d.ts | import { OFFER, MULTIADDRESS, ID, EVENT, PAYLOAD, Server } from '.';
export declare class Pipe {
private _io;
private _adapter;
private _server;
private _join;
private _leave;
private _disconnect;
constructor(server: Server, index: number);
get server(): Server;
get adapter(): any;
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/types.d.ts | relay/lib/types.d.ts | export type MULTIADDRESS = string;
export type ID = string;
export type ERROR = string;
export type ANSWER = any;
export type PAYLOAD = any;
export declare enum EVENT {
PEER = "ws-peer",
HANDSHAKE = "ws-handshake"
}
export type SIGNAL = {
type: string;
sdp: string;
};
export type OFFER = {
intentId:... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/Server.d.ts | relay/lib/Server.d.ts | /// <reference types="node" />
import http from 'http';
import { Pipe, Swarm } from '.';
import { Cluster } from 'ioredis';
import { HttpTerminator } from 'http-terminator';
export declare class Server {
private _app;
private _terminator?;
private _http?;
private _io?;
private _pipe?;
private _p... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/index.d.ts | relay/lib/index.d.ts | export * from './types';
export * from './Server';
export * from './Pipe';
export * from './Swarm';
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/relay/lib/start.d.ts | relay/lib/start.d.ts | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false | |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Station.ts | core/src/Station.ts | import { Session, Channel } from './index.js'
import debug from 'debug'
import deepmerge from 'deepmerge'
const LOG = debug("carmel:station")
export class Station {
private _session: Session
private _channels: { [id: string]: any }
private _openChannel: any
private _closeChannel: any
constru... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Chain.ts | core/src/Chain.ts | import { Session } from './Session.js'
import debug from 'debug'
// import {
// anonChain,
// chain,
// getId,
// system
// } from '@carmel/eos/src'
const LOG = debug("carmel:chain")
// const DEFAULT_URL = "https://eos.greymass.com"
export class Chain {
private _session: Session
private ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Identity.ts | core/src/Identity.ts | import {
Session
} from './Session.js'
class Identity {
public static DID_PREFIX: string = "did:carmel"
private _session: Session
private _username: string
private _publicKey: string
private _revision: number
private _did: string
constructor(session: Session, data: any = {}) ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Drive.ts | core/src/Drive.ts | import { Session } from './Session.js'
import debug from 'debug'
// import listDir from 'recursive-readdir'
import path from 'path'
const LOG = debug("carmel:drive")
export class Drive {
public static ROOT = "/carmel"
private _session: Session
public _push: any
public _pull: any
constructor(... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Config.ts | core/src/Config.ts | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false | |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Session.ts | core/src/Session.ts | import { nanoid } from 'nanoid'
import {
Cache,
Data,
Gateway,
IFunction,
Chain,
Drive,
Identity,
Station,
SESSION_STATUS
} from './index.js'
import debug from 'debug'
const LOG = debug("carmel:session")
export class Session {
private _id: string
private _revision: stri... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Channel.ts | core/src/Channel.ts | import { Station } from './Station.js'
import debug from 'debug'
let LOG = debug("carmel:channel")
export class Channel {
public static PREFIX = "#carmel:channel"
public static SYSTEM_ID = "sys"
public static SYSTEM_MAIN_ID = "sys:main"
public static SYSTEM_OPERATORS_ID = "sys:ops"
public static ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/types.ts | core/src/types.ts | export enum SESSION_STATUS {
NEW = 0,
INITIALIZING = 1,
READY = 2,
STOPPING = 3,
STOPPED = 4,
CONNECTING = 5,
CONNECTED = 6
}
export enum DATATYPE {
TABLE = "table",
OBJECT = "object"
}
export type ACCOUNT = {
username: string,
signature: string,
publicKey: string,
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/index.ts | core/src/index.ts | export * from './Config.js'
export * from './Identity.js'
export * from './Session.js'
export * from './Data.js'
export * from './Cache.js'
export * from './Drive.js'
export * from './Chain.js'
export * from './Channel.js'
export * from './Gateway.js'
export * from './Station.js'
export * from './types.js'
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Gateway.ts | core/src/Gateway.ts | import { Channel, Session, SESSION_STATUS } from './index.js'
import debug from 'debug'
const LOG = debug("carmel:gateway")
const MIN_OPERATORS_REQUIRED = 1
const MIN_PEERS_REQUIRED = 1
const SYNC_SECONDS = 3
const SYNC_REFRESH_RATE = 5
export class Gateway {
private _cid: string
private _ipfs: any
priv... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Cache.ts | core/src/Cache.ts | import debug from 'debug'
import { Level } from 'level'
const LOG = debug("carmel:cache")
enum STORE {
SESSION = "session",
DATA = "data",
BLOBS = "blobs"
}
const CARMEL_MESH_ROOT = () => `${process.env[(process.platform === 'win32') ? 'USERPROFILE' : 'HOME']}/.carmel/mesh/`
export class Cache {
pub... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/src/Data.ts | core/src/Data.ts | import merge from 'deepmerge'
import Automerge from 'automerge'
import { nanoid } from 'nanoid'
import { Session } from './Session.js'
import debug from 'debug'
const LOG = debug("carmel:data")
const CONTENT_MODEL_VERSION = "1.0"
const CONTENT_MODEL: any = (id: string, slice: string) => ({
version: CONTENT_MODEL_... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/test/specs/main.ts | core/test/specs/main.ts | import savor, { Context, Completion } from 'savor'
import { Session } from '../../src'
savor.
add('should create a new session', (context: Context, done: Completion) => {
const session = new Session({})
done ()
// savor.promiseShouldSucceed(session.start(), done, (result) => {
// context.expect(ses... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Channel.d.ts | core/lib/Channel.d.ts | import { Station } from './Station.js';
export declare class Channel {
static PREFIX: string;
static SYSTEM_ID: string;
static SYSTEM_MAIN_ID: string;
static SYSTEM_OPERATORS_ID: string;
static SYSTEM_PEERS_ID: string;
static ACCEPT_EVENT_ID: string;
static RESPONSE_EVENT: string;
static... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/types.d.ts | core/lib/types.d.ts | export declare enum SESSION_STATUS {
NEW = 0,
INITIALIZING = 1,
READY = 2,
STOPPING = 3,
STOPPED = 4,
CONNECTING = 5,
CONNECTED = 6
}
export declare enum DATATYPE {
TABLE = "table",
OBJECT = "object"
}
export type ACCOUNT = {
username: string;
signature: string;
publicKey... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Config.d.ts | core/lib/Config.d.ts | export {};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Gateway.d.ts | core/lib/Gateway.d.ts | import { Session } from './index.js';
export declare class Gateway {
private _cid;
private _ipfs;
private _ctl;
private _isBrowser;
private _mesh;
private _session;
private _syncTimer;
private sync;
private _refresh;
constructor(session: Session);
get refresh(): number;
g... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Identity.d.ts | core/lib/Identity.d.ts | import { Session } from './Session.js';
declare class Identity {
static DID_PREFIX: string;
private _session;
private _username;
private _publicKey;
private _revision;
private _did;
constructor(session: Session, data?: any);
get did(): string;
get session(): Session;
get username... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/index.d.ts | core/lib/index.d.ts | export * from './Config.js';
export * from './Identity.js';
export * from './Session.js';
export * from './Data.js';
export * from './Cache.js';
export * from './Drive.js';
export * from './Chain.js';
export * from './Channel.js';
export * from './Gateway.js';
export * from './Station.js';
export * from './types.js';
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Chain.d.ts | core/lib/Chain.d.ts | import { Session } from './Session.js';
export declare class Chain {
private _session;
private _provider;
private _config;
constructor(session: Session);
get session(): Session;
get provider(): any;
get config(): any;
get isReadOnly(): boolean;
get keys(): any;
get account(): any... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Cache.d.ts | core/lib/Cache.d.ts | declare enum STORE {
SESSION = "session",
DATA = "data",
BLOBS = "blobs"
}
export declare class Cache {
static STORE: typeof STORE;
private _root;
private _stores;
private _isBrowser;
constructor(isBrowser: boolean, root?: string);
get root(): string;
get isBrowser(): boolean;
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Session.d.ts | core/lib/Session.d.ts | import { Cache, Gateway, IFunction, Chain, Drive, Identity, Station, SESSION_STATUS } from './index.js';
export declare class Session {
private _id;
private _revision;
private _data;
private _isBrowser;
private _cache;
private _status;
private _config;
private _listeners;
private _di... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Data.d.ts | core/lib/Data.d.ts | import { Session } from './Session.js';
export declare class Data {
private _content;
private _session;
private _id;
private _slice;
private _lastModified;
private _state;
private _list;
private _main;
constructor(session: Session, slice: string);
get lastModified(): number;
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Station.d.ts | core/lib/Station.d.ts | import { Session } from './index.js';
export declare class Station {
private _session;
private _channels;
private _openChannel;
private _closeChannel;
constructor(session: Session);
get session(): Session;
get channels(): {
[id: string]: any;
};
channel(id: string): any;
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/core/lib/Drive.d.ts | core/lib/Drive.d.ts | import { Session } from './Session.js';
export declare class Drive {
static ROOT: string;
private _session;
_push: any;
_pull: any;
constructor(session: Session);
get session(): Session;
get ipfs(): any;
ls(location?: string): Promise<any>;
open(id: string): Promise<void>;
pull(i... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/_app.tsx | web/pages/_app.tsx | import { ThemeProvider } from "next-themes";
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return (<ThemeProvider attribute="class">
<Component {...pageProps} />
</ThemeProvider>)
}
export default MyApp
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/index.tsx | web/pages/index.tsx | import Screen from '~/screens/public/home'
export default () => {
return <Screen/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/_document.tsx | web/pages/_document.tsx | import React from "react";
import Document, { Html, Head, Main, NextScript } from "next/document";
class MainDocument extends Document {
render() {
return (
<Html>
<Head />
<body className="bg-black text-black dark:bg-black dark:text-white">
<Main />
<NextScript />
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/login/index.tsx | web/pages/login/index.tsx | import LoginScreen from '~/screens/public/login'
export default () => {
return <LoginScreen/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/signup/index.tsx | web/pages/signup/index.tsx | import SignupScreen from '~/screens/public/signup'
export default () => {
return <SignupScreen/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/stories/index.tsx | web/pages/stories/index.tsx | import Blog from '~/screens/public/blog'
export default () => {
return <Blog/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/stories/[uri].tsx | web/pages/stories/[uri].tsx | import { useRouter } from "next/router"
export default ({ uri }: any) => {
const router = useRouter()
return (<div>
<p className="text-7xl">
{router.query.uri}
</p>
</div>)
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/[id]/index.tsx | web/pages/[id]/index.tsx | import { useRouter } from "next/router"
export default ({ uri }: any) => {
const router = useRouter()
return (<div>
<p className="text-7xl">
{router.query.id}
</p>
</div>)
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/[id]/stories/[slug].tsx | web/pages/[id]/stories/[slug].tsx | import PostScreen from '~/screens/public/post'
export default () => {
return <PostScreen/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/[id]/stories/index.tsx | web/pages/[id]/stories/index.tsx | import Blog from '~/screens/public/blog'
export default () => {
return <Blog/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/api/hello.ts | web/pages/api/hello.ts | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type { NextApiRequest, NextApiResponse } from 'next'
type Data = {
name: string
}
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>
) {
res.status(200).json({ name: 'John Doe' })
}
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/docs/[section].tsx | web/pages/docs/[section].tsx | import Docs from '~/screens/public/docs'
export default () => {
return <Docs/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/docs/index.tsx | web/pages/docs/index.tsx | import Docs from '~/screens/public/docs'
export default () => {
return <Docs/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/pages/docs/[section]/[subsection].tsx | web/pages/docs/[section]/[subsection].tsx | import Docs from '~/screens/public/docs'
export default () => {
return <Docs/>
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/login/index.tsx | web/components/login/index.tsx | import React, { useRef } from 'react'
import { useCarmelAuth } from '~/sdk/hooks';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default ({ carmel }: any) => {
const username = useRef<any>();
return (
<div className="w-full h-full mt-32 flex flex-col items-center justify-center">
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/signup/index.tsx | web/components/signup/index.tsx | import React, { useRef, useEffect } from 'react'
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default ({ carmel }: any) => {
const username = useRef<any>()
const code = useRef<any>()
return (<div className="w-full h-full mt-32 flex flex-col items-center justify-center justify-cent... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/account/main.tsx | web/components/account/main.tsx | import React, { useState } from 'react';
import Image from 'next/image'
import eth from "../../images/eth.webp"
import usdc from "../../images/usdc.webp"
import carmel from "../../images/carmel.webp"
import card from "../../images/card.svg"
import { UserCircleIcon } from '@heroicons/react/24/solid'
const ActionHeader ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/navbar/index.tsx | web/components/navbar/index.tsx | import React from 'react'
import Image from 'next/image'
import Link from 'next/link'
import { Navbar } from 'flowbite-react'
import { ClipboardDocumentCheckIcon, BuildingStorefrontIcon, UserCircleIcon, ArrowLeftOnRectangleIcon} from '@heroicons/react/24/solid'
const ActionButton = (props: any) => {
const Icon = pro... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/features/data.tsx | web/components/features/data.tsx | export default ({
title1: 'Hey there, ',
title2: 'Web3 Innovators',
cards: [
{
cardNumberTestId: 'card-1-test-id',
icon: '/images/icons/filled-shield.svg',
iconAlt: '',
iconTestId: 'shield-test-id',
cardTextTestId: 'card-1-text-test-id',
text1: 'Account',
keyword1: 'C... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/features/index.tsx | web/components/features/index.tsx | import FeatureCard from './card'
import entries from './data'
export default () => (
<div className="max-w-7xl lg:w-11/12 w-4/5 text-center flex flex-col items-center mt-20">
<div className="w-full flex flex-col gap-28">
<div key={entries.title1} className="flex flex-col gap-12">
<div className... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/features/card.tsx | web/components/features/card.tsx | export default ({
cardNumber,
cardNumberTestId,
cardTextTestId,
text1,
keyword1,
description,
buttonText,
buttonTestId,
}: any) => (
<div className="relative flex flex-col gap-3 w-full lg:w-1/3 py-8">
<div className="absolute w-full flex justify-center items-center">
<div className="relative... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/hero/index.tsx | web/components/hero/index.tsx | const Video = () => (
<video autoPlay loop muted playsInline className="absolute z-10 w-auto min-w-full min-h-full max-w-none">
<source src="/vids/bg-2.mp4" type="video/mp4" />
</video>
)
const Text = () => (
<div className="relative w-full z-30 p-5 bg-black text-2xl text-white bg-purple-300 bg-opacity-50 ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/docs/sidebar.tsx | web/components/docs/sidebar.tsx | import { AnimatePresence, motion } from "framer-motion"
export function MobileSidebar({ section, sections, sideBar, setSideBar, onMobileItemSelect }: any) {
if (!sections || !section || !sections.data) return <div/>
const NavItem = (item: any) => {
if (!item.sections || item.sections.length === 0) {
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/docs/index.tsx | web/components/docs/index.tsx | import { useCarmelDoc, useCarmelDocsSections } from "~/sdk"
import React, { useEffect, useState } from 'react'
import ReactMarkdown from 'react-markdown'
import remarkBreaks from 'remark-breaks'
import remarkMDX from 'remark-mdx'
import remarkGFM from 'remark-gfm'
import { Prism as SyntaxHighlighter } from 'react-synta... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/footer/index.tsx | web/components/footer/index.tsx | import { FOOTER_TEXTS } from '~/text/footer';
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const CustomLink = (props: any) => {
return props.to.indexOf('https') !== -1 ? (
<a href={props.to} target="_blank" rel="noreferrer">
<div className="leading-6 md:text-base text-sm font-semibold curs... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/spinner/index.tsx | web/components/spinner/index.tsx | const Spinner = () => (
<div className="text-center">
<div role="status">
<svg
className="inline mr-2 w-10 h-10 text-gray-200 animate-spin dark:text-gray-600 fill-white"
viewBox="0 0 100 101"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M100 50.5... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/related.tsx | web/components/blog/related.tsx | import type { FC } from 'react';
import type { Card } from './props';
const RelatedBlog: FC<Card> = ({
title,
cities,
author,
slug,
tags,
additionalClassNames = '',
}: Card) => (
<div
className={`flex flex-col items-start w-full h-max space-y-4 border-b border-gray-700 pb-3 ${additionalClassNames}`}>... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/latest.tsx | web/components/blog/latest.tsx | import type { FC, ReactElement } from 'react';
import Card from './card'
import type { LatestProps } from './props';
const LatestStories: FC<LatestProps> = ({
more = true,
posts = [],
}: LatestProps): ReactElement => {
return (
<section className="flex flex-col justify-center items-center lg:w-11/12 w-4/5 ma... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/trending.tsx | web/components/blog/trending.tsx | import RelatedPost from '~/components/blog/related'
import type { PostsProps } from './props'
export default ({ posts }: PostsProps) => (
<div className="flex flex-col flex-grow w-full lg:w-auto">
<h3 className="font-epilogue-bold text-5xl"></h3>
<div className="flex flex-col justify-between h-full w-full it... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/hero.tsx | web/components/blog/hero.tsx | import { UserCircleIcon } from '@heroicons/react/24/solid'
export default ({ username }: any) => (
<div className="pt-24 flex flex-col">
<div className="flex flex-col w-full justify-center items-center">
<UserCircleIcon width={96} height={96}/>
<div className="flex-1 lg:text-5xl text-3xl">{ u... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/props.ts | web/components/blog/props.ts | export interface PostProps {
title: string;
subtitle: string;
author: string;
date: string;
images: ImageProps;
tags: string[];
content_url: string;
slug: string;
cities: string[];
}
export interface ImageProps {
cover_url: string;
thumbnail_url: string;
}
export interface PostsProps {
posts: ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/feed.tsx | web/components/blog/feed.tsx | import { ReactElement, useEffect } from 'react';
import LargeCard from '~/components/blog/card/large';
import Card from '~/components/blog/card';
import type { PostsProps } from './props';
import Trending from '~/components/blog/trending';
import Spinner from '~/components/spinner'
export default ({ posts }: any): Rea... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/post.tsx | web/components/blog/post.tsx | import Spinner from "~/components/spinner"
import ReactMarkdown from 'react-markdown'
import remarkGfm from 'remark-gfm'
import remarkBreaks from 'remark-breaks'
import moment from 'moment'
import ContentLoader, { Instagram } from 'react-content-loader'
const Loader = (props: any) => (
<ContentLoader
speed=... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/card/large.tsx | web/components/blog/card/large.tsx | import type { FC } from 'react';
import type { Card } from '../props';
import moment from 'moment'
const Author = ({ post }: any) => {
return (<div className="flex flex-row m-4">
<div className="avatar">
<div className="w-12 mr-4 mask mask-hexagon bg-primary border border-primary-color">
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/blog/card/index.tsx | web/components/blog/card/index.tsx | import type { FC } from 'react';
import type { Card } from '../props';
import moment from 'moment'
const Author = ({ post }: any) => {
return (<div className="flex flex-row m-4">
<div className="avatar">
<div className="w-12 mr-4 mask mask-hexagon bg-primary border border-primary-color">
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/quests/index.tsx | web/components/quests/index.tsx | import Card from './card'
export default () => (<div className="container mx-auto">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<Card />
<Card />
<Card />
<Card />
<Card />
<Card />
<Card />
<Card />
<Card />
</d... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/quests/card.tsx | web/components/quests/card.tsx | // export default () => (
// <div className="card w-96 bg-base-100 mt-10">
// <figure><img src="/images/bg-2.png" /></figure>
// <div className="mt-10 w-full lg:p-12 p-6 flex flex-col items-start border-2 h-80 border-primary-color gap-4 bg-primary-gradient bg-no-repeat bg-top bg-fill">
// <div class... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/components/intro/index.tsx | web/components/intro/index.tsx | export default () => (<div className="m-2 flex justify-end border border-primary-color flex-col md:flex-row">
<img
className="w-full px-8 pt-8 bg-primary-background md:pt-0 md:w-2/3 md:px-0"
src="https://images.unsplash.com/photo-1501504905252-473c47e087f8?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlf... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/utils/crypto.ts | web/utils/crypto.ts | import { randomBytes } from 'ethers/lib/utils'
import { Serialize } from 'eosjs'
import { BigNumber } from 'ethers';
export const enum UserPresence {
none = 0,
present = 1,
verified = 2,
}
export const enum AttestationFlags {
userPresent = 0x01,
userVerified = 0x04,
attestedCredentialPresent = 0x40,
ex... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/private/profile/index.tsx | web/screens/private/profile/index.tsx | export default () => (
<section className="h-screen w-screen flex flex-col justify-center items-center text-center bg-primary-gradient bg-no-repeat bg-top bg-fill px-10">
<div className="lg:text-5xl text-lg"> Profile </div>
</section>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/private/dashboard/index.tsx | web/screens/private/dashboard/index.tsx | import Container from '~/containers/private'
import Account from '~/components/account/main'
export default () => (
<Container>
<Account/>
</Container>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/login/index.tsx | web/screens/public/login/index.tsx | import Login from '~/components/login'
import Container from '~/containers/public'
import Connecting from '~/containers/connecting'
export default () => (
<Container>
<Connecting>
<Login/>
</Connecting>
</Container>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/signup/index.tsx | web/screens/public/signup/index.tsx | import Container from '~/containers/public'
import Signup from '~/components/signup'
import Connecting from '~/containers/connecting'
export default () => (
<Container>
<Connecting>
<Signup/>
</Connecting>
</Container>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/home/index.tsx | web/screens/public/home/index.tsx | import Container from '~/containers/public'
import Hero from '~/components/hero'
import Features from '~/components/features'
// import Dashboard from '~/screens/private/dashboard'
// export default Dashboard
export default () => (
<Container>
<Hero/>
<Features/>
</Container>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/docs/index.tsx | web/screens/public/docs/index.tsx | import Docs from '~/components/docs'
import Container from '~/containers/public'
export default () => {
return (<Container>
<Docs/>
</Container>)
} | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/blog/index.tsx | web/screens/public/blog/index.tsx | import Hero from '~/components/blog/hero';
import Feed from '~/components/blog/feed';
import Latest from '~/components/blog/latest';
import Container from '~/containers/public'
import { useRouter } from 'next/router'
import { useCarmelPosts } from '~/sdk'
export default () => {
const router = useRouter()
const use... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/quests/index.tsx | web/screens/public/quests/index.tsx | import Quests from '~/components/quests'
import Container from '~/containers/public'
export default () => (
<Container>
<Quests/>
</Container>
) | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/screens/public/post/index.tsx | web/screens/public/post/index.tsx | import Post from '~/components/blog/post'
import Container from '~/containers/public'
import { useRouter } from 'next/router'
import { useCarmelPost } from '~/sdk'
export default () => {
const router = useRouter()
const username: any = router.query.id
const slug: any = router.query.slug
const post: any = useC... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/containers/private/index.tsx | web/containers/private/index.tsx | import React, { Fragment, useState, Children, cloneElement, isValidElement } from 'react';
import Nav from '~/components/navbar';
import Footer from '~/components/footer';
import Spinner from '~/components/spinner';
import { useCarmelNet, useCarmelAuth } from '~/sdk/hooks'
import Head from 'next/head'
import Image fro... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/containers/public/index.tsx | web/containers/public/index.tsx | import React, { Children, cloneElement, isValidElement } from 'react';
import Nav from '~/components/navbar';
import Footer from '~/components/footer';
import { useCarmelNet, useCarmelAuth } from '~/sdk/hooks'
import Head from 'next/head'
export default ({ children }: any) => {
const carmelNet = useCarmelNet()
co... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/containers/connecting/index.tsx | web/containers/connecting/index.tsx | import React, { Fragment, useState, Children, cloneElement, isValidElement } from 'react'
import Spinner from '~/components/spinner'
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default ({ carmel, children }: any) => {
if (carmel.net.isConnected) {
const newProps: any = { carmel }
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/subscribeInput/index.ts | web/text/subscribeInput/index.ts | export const SUBSCRIBE_INPUT_TEXT = {
PLACEHOLDER_INPUT: 'Email address',
IMG_ALT: 'chevron right',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/nav/index.ts | web/text/nav/index.ts | export const NAV_TEXT = {
HOME: 'Hello',
FEATURES: 'Features',
PRICING: 'Pricing',
ACADEMY: 'Academy',
QUESTS: 'Quests',
STORIES: 'Stories',
BECOME_A_MEMBER: 'Connect',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/notFound/index.ts | web/text/notFound/index.ts | export const NOT_FOUND_TEXT = {
404: '404',
NOT_FOUND: 'NOT FOUND',
NOT_FOUND_BUTTON: 'Take me home',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/home/index.ts | web/text/home/index.ts | export const HOME_TEXT = {
// eslint-disable-next-line quotes
TITLE: "Grandma-friendly digital assets."
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/footer/index.ts | web/text/footer/index.ts | export const FOOTER_TEXTS = {
LOGO_FOOTER_ALT: 'logo footer',
FUTURE_TEXT: 'Everyone An Innovator.',
STORIES_LETTER_TEXT: 'Join "The Carmel Way"',
COPYRIGHT_1: 'Carmel is a',
COPYRIGHT_2: ' Fluid Trends ',
COPYRIGHT_3: 'Web3 Product',
MENU: {
TITLE: 'Learn more:',
TITLE2: 'Get involved:',
TEXT... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/contributors/index.ts | web/text/quests/contributors/index.ts | export const CONTRIBUTOR_TEXT = {
TITLE: 'Top Contribuitors',
XP: 'XP',
ALT_RANK: 'Rank frame image',
};
export const TOP_CONTRIBUTORS_TEXT = {
TOP_USERS: 'Top Users',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/questCard/index.ts | web/text/quests/questCard/index.ts | export const QUEST_TEXT = {
AVATAR_ALT: 'avatar',
BY: 'for ',
REWARDS: 'Rewards',
REWARDS_POOL: 'Rewards Pool:',
CARMEL_CREDITS: ' Carmel Credits',
COMMUNITY: 'Tags:',
CHANNELS: 'Channels',
TASKS: 'Quest Tasks',
START_QUEST_BTN: 'Start Quest',
TYPE: 'Type',
QUEST_TYPE: 'Quest Type:',
CATEGORY: '... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/questsScreen/index.ts | web/text/quests/questsScreen/index.ts | export const QUESTS_SCREEN_TEXT = {
CARMEL: 'Carmel',
QUESTS: 'Quests',
SUBTITLE: 'Join our quests and take the lead',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/newQuest/index.ts | web/text/quests/newQuest/index.ts | const NEW_QUEST_SCREEN_TEXT = {
TITLE: 'ADD A NEW QUEST',
BACK_BUTTON_TEXT: '< back to ',
QUEST_TITLE_INPUT: 'Title',
QUEST_DESCRIPTION_INPUT: 'Description',
POST_COMMENT_BUTTON: 'Post',
CANCEL_COMMENT_BUTTON: 'Cancel',
};
export default NEW_QUEST_SCREEN_TEXT;
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/questSocialButtons/index.ts | web/text/quests/questSocialButtons/index.ts | export const SOCIAL_BUTTONS_TEXT = {
LINKEDIN_TEXT: 'LinkedIn',
LINKEDIN_ICON_ALT: 'LinkedIn Icon',
TWITTER_TEXT: 'Twitter',
TWITTER_ICON_ALT: 'LinkedIn Icon',
};
| typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/quests/questScreen/index.ts | web/text/quests/questScreen/index.ts | const QUEST_SCREEN_TEXT = {
BACK_BUTTON_TEXT: '< back to',
PROGRESS_BAR_TEXT: '% complete',
HIGHLIGHTS: {
STATUS: 'Status',
INNOVATORS: 'Innovators',
FUNDS: 'Funds',
DEVELOPERS: 'Developers',
},
NEW_COMMENT_BUTTON: 'Add a new comment',
APPROVE_BUTTON: 'Approve',
SEE_PREVIEW_TEXT: 'See Prev... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/register/ambassador.ts | web/text/register/ambassador.ts | export const AMBASSADOR_REGISTER_TEXT = {
DETAILS: 'Details',
CARMEL_USERNAME: 'Carmel Username',
ETH_ADRESS: 'ETH Adress',
EMAIL: 'Email',
PLAN: 'Plan',
SELECTED_PLAN: 'Selected Plan',
CARMEL_AMBASSADOR: 'Carmel Ambassador',
DURATION: 'Duration',
LIFETIME: 'Lifetime',
TOTAL: 'Total',
TO_PAY: 'To ... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/register/index.tsx | web/text/register/index.tsx | export const REGISTER_TEXT = {
TITLE_1: 'Join the Carmel',
TITLE_2: 'Waiting List',
TITLE_MOBILE_1: 'Join the',
TITLE_MOBILE_2: 'Carmel',
TITLE_MOBILE_3: 'Waiting List',
TITLE_IMG_ALT: 'Carmel Membership Card',
SEE_BELOW_TEXT: 'Lifetime Membership Cards Are Coming Soon!',
GENERAL: 'General Details',
U... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/register/rezident.ts | web/text/register/rezident.ts | export const REZIDENT_REGISTER_TEXT = {
DETAILS: 'Details',
CARMEL_USERNAME: 'Carmel Username',
ETH_ADRESS: 'ETH Adress',
EMAIL: 'Email',
PLAN: 'Plan',
SELECTED_PLAN: 'Selected Plan',
CARMEL_REZIDENT: 'Carmel Rezident',
DURATION: 'Duration',
LIFETIME: 'Lifetime',
TOTAL: 'Total',
TO_PAY: 'To Pay No... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/text/register/citizen.ts | web/text/register/citizen.ts | export const CITIZEN_REGISTER_TEXT = {
DETAILS: 'Details',
CARMEL_USERNAME: 'Carmel Username',
ETH_ADRESS: 'ETH Adress',
EMAIL: 'Email',
PLAN: 'Plan',
SELECTED_PLAN: 'Selected Plan',
CARMEL_CITIZEN: 'Carmel Citizen',
DURATION: 'Duration',
LIFETIME: 'Lifetime',
TOTAL: 'Total',
TO_PAY: 'To Pay Now',... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/sdk/index.ts | web/sdk/index.ts | export * from './config'
export * from './hooks' | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
fluidtrends/carmel | https://github.com/fluidtrends/carmel/blob/eb147a52d8879a3298d84ad9915ed3838b773273/web/sdk/hooks/auth.tsx | web/sdk/hooks/auth.tsx | import { useState } from 'react';
import * as cr from '~/utils/crypto'
export const useCarmelAuth = (carmelNet: any) => {
const [isLoading, setIsLoading] = useState(false);
const status = () => {
return {
loggedIn: cr.isLoggedIn(),
registered: cr.isRegistered(),
session: cr.loadSession(),
... | typescript | MIT | eb147a52d8879a3298d84ad9915ed3838b773273 | 2026-01-05T04:59:17.813855Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.