mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* minor refactors * minor refactors * fixes * buy dt * consumePrice + estimation * various fixes * cleanup * fix build * fix ssh issue * feedback * build fix * ssh fix * remove console.log * suggested fixes * other fixes * switch to decimal * more fixes * more fixes * fix * some fee refactors * more fee refactoring * lib update, fre rename Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * minor refactors Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * build fixes Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * update + more refactoring * calc price * fix build * restore accountId in effect * fix order * fix build and update lib * fix order index * fix comments * pool fix * remove console.log * fix order fixed rate exchange * fixed free order and messaging * add comment * minor type fix * more type fixes
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { UseSiteMetadata } from '@hooks/useSiteMetadata/types'
|
|
import siteContent from '../../content/site.json'
|
|
import appConfig from '../../app.config'
|
|
|
|
export function getSiteMetadata(): UseSiteMetadata {
|
|
const siteMeta: UseSiteMetadata = {
|
|
...siteContent,
|
|
appConfig
|
|
}
|
|
|
|
return siteMeta
|
|
}
|