Skip to content

Commit

Permalink
chore: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
lcamargof committed Oct 5, 2023
1 parent 8443cf0 commit a0ac456
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 31 deletions.
62 changes: 32 additions & 30 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
declare const rtokens: {
[tokenAddress: string]: {
address: string;
name: string;
symbol: string;
decimals: number;
logo?: string;
about?: string;
website?: string;
governance?: {
voting?: string;
discussion?: string;
};
support?: {
email?: string;
url?: string;
};
social?: {
blog?: string;
chat?: string;
facebook?: string;
forum?: string;
github?: string;
gitter?: string;
instagram?: string;
linkedin?: string;
reddit?: string;
slack?: string;
telegram?: string;
twitter?: string;
youtube?: string;
[chainId: number]: {
[tokenAddress: string]: {
address: string;
name: string;
symbol: string;
decimals: number;
logo?: string;
about?: string;
website?: string;
governance?: {
voting?: string;
discussion?: string;
};
support?: {
email?: string;
url?: string;
};
social?: {
blog?: string;
chat?: string;
facebook?: string;
forum?: string;
github?: string;
gitter?: string;
instagram?: string;
linkedin?: string;
reddit?: string;
slack?: string;
telegram?: string;
twitter?: string;
youtube?: string;
};
};
};
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lc-labs/rtokens",
"version": "1.1.0",
"version": "1.1.1",
"description": "RToken list",
"main": "index.js",
"author": "LC Labs LLC",
Expand Down

0 comments on commit a0ac456

Please sign in to comment.