-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71ed1c8
commit db21b42
Showing
14 changed files
with
597 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
export interface Asset { | ||
deprecated?: boolean; | ||
description?: string; | ||
extendedDescription?: string; | ||
denomUnits: DenomUnit[]; | ||
typeAsset?: string; | ||
address?: string; | ||
base: string; | ||
name: string; | ||
display: string; | ||
symbol: string; | ||
traces?: any[]; | ||
ibc?: { | ||
sourceChannel: string; | ||
dstChannel: string; | ||
sourceDenom: string; | ||
}; | ||
logoURIs?: { | ||
png?: string; | ||
svg?: string; | ||
}; | ||
images?: { | ||
imageSync?: Pointer; | ||
png?: string; | ||
svg?: string; | ||
theme?: { | ||
primaryColorHex?: string; | ||
circle?: boolean; | ||
darkMode?: boolean; | ||
}; | ||
}[]; | ||
coingeckoId?: string; | ||
keywords?: string[]; | ||
socials?: { | ||
website?: string; | ||
twitter?: string; | ||
}; | ||
} | ||
export interface DenomUnit { | ||
denom: string; | ||
exponent: number; | ||
aliases?: string[]; | ||
} | ||
export interface Pointer { | ||
chainName: string; | ||
baseDenom?: string; | ||
} | ||
export interface IbcTransition { | ||
type: string; | ||
counterparty: { | ||
chainName: string; | ||
baseDenom: string; | ||
channelId: string; | ||
}; | ||
chain: { | ||
channelId: string; | ||
path: string; | ||
}; | ||
} | ||
export interface IbcCw20Transition { | ||
type: string; | ||
counterparty: { | ||
chainName: string; | ||
baseDenom: string; | ||
port: string; | ||
channelId: string; | ||
}; | ||
chain: { | ||
port: string; | ||
channelId: string; | ||
path: string; | ||
}; | ||
} | ||
export interface NonIbcTransition { | ||
type: string; | ||
counterparty: { | ||
chainName: string; | ||
baseDenom: string; | ||
contract?: string; | ||
}; | ||
chain?: { | ||
contract: string; | ||
}; | ||
provider: string; | ||
} | ||
export interface AssetLists { | ||
schema?: string; | ||
chainName: string; | ||
assets: Asset[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
export interface Peer { | ||
id: string; | ||
address: string; | ||
provider?: string; | ||
} | ||
export interface Endpoint { | ||
address: string; | ||
provider?: string; | ||
archive?: boolean; | ||
} | ||
export interface Explorer { | ||
kind?: string; | ||
url?: string; | ||
txPage?: string; | ||
accountPage?: string; | ||
} | ||
export interface FeeToken { | ||
denom: string; | ||
fixedMinGasPrice?: number; | ||
lowGasPrice?: number; | ||
averageGasPrice?: number; | ||
highGasPrice?: number; | ||
gasCosts?: { | ||
cosmosSend?: number; | ||
ibcTransfer?: number; | ||
}; | ||
} | ||
export interface StakingToken { | ||
denom: string; | ||
} | ||
export interface Pointer { | ||
chainName: string; | ||
baseDenom?: string; | ||
} | ||
export interface CosmosChain { | ||
schema?: string; | ||
chainName: string; | ||
chainId: string; | ||
preForkChainName?: string; | ||
prettyName?: string; | ||
website?: string; | ||
updateLink?: string; | ||
status?: any; | ||
networkType?: any; | ||
bech32Prefix: string; | ||
bech32Config?: { | ||
bech32PrefixAccAddr?: string; | ||
bech32PrefixAccPub?: string; | ||
bech32PrefixValAddr?: string; | ||
bech32PrefixValPub?: string; | ||
bech32PrefixConsAddr?: string; | ||
bech32PrefixConsPub?: string; | ||
}; | ||
daemonName?: string; | ||
nodeHome?: string; | ||
keyAlgos?: string[]; | ||
slip44?: number; | ||
alternativeSlip44s?: number[]; | ||
fees?: { | ||
feeTokens: FeeToken[]; | ||
}; | ||
staking?: { | ||
stakingTokens: StakingToken[]; | ||
lockDuration?: { | ||
blocks?: number; | ||
time?: string; | ||
}; | ||
}; | ||
codebase?: { | ||
gitRepo?: string; | ||
recommendedVersion?: string; | ||
goVersion?: string; | ||
compatibleVersions?: string[]; | ||
binaries?: { | ||
"linux/amd64"?: string; | ||
"linux/arm64"?: string; | ||
"darwin/amd64"?: string; | ||
"darwin/arm64"?: string; | ||
"windows/amd64"?: string; | ||
"windows/arm64"?: string; | ||
}; | ||
cosmosSdkVersion?: string; | ||
consensus?: { | ||
type: string; | ||
version?: string; | ||
}; | ||
cosmwasmVersion?: string; | ||
cosmwasmEnabled?: boolean; | ||
cosmwasmPath?: string; | ||
ibcGoVersion?: string; | ||
icsEnabled?: string[]; | ||
genesis?: { | ||
name?: string; | ||
genesisUrl: string; | ||
icsCcvUrl?: string; | ||
}; | ||
versions?: { | ||
name: string; | ||
tag?: string; | ||
height?: number; | ||
proposal?: number; | ||
previousVersionName?: string; | ||
nextVersionName?: string; | ||
recommendedVersion?: string; | ||
goVersion?: string; | ||
compatibleVersions?: string[]; | ||
cosmosSdkVersion?: string; | ||
consensus?: { | ||
type: string; | ||
version?: string; | ||
}; | ||
cosmwasmVersion?: string; | ||
cosmwasmEnabled?: boolean; | ||
cosmwasmPath?: string; | ||
ibcGoVersion?: string; | ||
icsEnabled?: string[]; | ||
binaries?: { | ||
"linux/amd64"?: string; | ||
"linux/arm64"?: string; | ||
"darwin/amd64"?: string; | ||
"darwin/arm64"?: string; | ||
"windows/amd64"?: string; | ||
"windows/arm64"?: string; | ||
}; | ||
}[]; | ||
}; | ||
images?: { | ||
imageSync?: Pointer; | ||
png?: string; | ||
svg?: string; | ||
theme?: { | ||
primaryColorHex?: string; | ||
circle?: boolean; | ||
darkMode?: boolean; | ||
}; | ||
layout?: string; | ||
textPosition?: string; | ||
}[]; | ||
logoURIs?: { | ||
png?: string; | ||
svg?: string; | ||
}; | ||
description?: string; | ||
peers?: { | ||
seeds?: Peer[]; | ||
persistentPeers?: Peer[]; | ||
}; | ||
apis?: { | ||
rpc?: Endpoint[]; | ||
rest?: Endpoint[]; | ||
grpc?: Endpoint[]; | ||
wss?: Endpoint[]; | ||
"grpc-web"?: Endpoint[]; | ||
"evm-http-jsonrpc"?: Endpoint[]; | ||
}; | ||
explorers?: Explorer[]; | ||
keywords?: string[]; | ||
extraCodecs?: string[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.