Skip to content

Commit

Permalink
Merge pull request #66 from bgd-labs/feat/add-lbtc
Browse files Browse the repository at this point in the history
feat: Add lbtc asset
  • Loading branch information
isArlekin authored Jan 22, 2025
2 parents f28637a + bf776f7 commit 9067979
Show file tree
Hide file tree
Showing 31 changed files with 261 additions and 3 deletions.
1 change: 1 addition & 0 deletions icons/full/albtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/full/lbtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/full/statalbtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions icons/icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -1613,6 +1613,35 @@
}
}
},
{
"type": [
"asset"
],
"symbol": "lbtc",
"name": "LBTC",
"aliases": [
"lBTC",
"LBTC",
"aEthlBTC",
"stataEthlBTC"
],
"variations": [
"aToken",
"stataToken"
],
"icons": {
"mono": "icons/mono/lbtc.svg",
"full": "icons/full/lbtc.svg",
"aToken": {
"mono": "icons/mono/albtc.svg",
"full": "icons/full/albtc.svg"
},
"stataToken": {
"mono": "icons/mono/statalbtc.svg",
"full": "icons/full/statalbtc.svg"
}
}
},
{
"type": [
"asset",
Expand Down
1 change: 1 addition & 0 deletions icons/mono/albtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/mono/lbtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions icons/mono/statalbtc.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions packages/react-web3-icons/src/components/icons/full/AlbtcIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconAlbtc } from "../../../icons/full/build/icon-albtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const AlbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconAlbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
AlbtcIcon.displayName = 'AlbtcIcon';
}

export default AlbtcIcon;
18 changes: 18 additions & 0 deletions packages/react-web3-icons/src/components/icons/full/LbtcIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconLbtc } from "../../../icons/full/build/icon-lbtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const LbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconLbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
LbtcIcon.displayName = 'LbtcIcon';
}

export default LbtcIcon;
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconStatalbtc } from "../../../icons/full/build/icon-statalbtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const StatalbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconStatalbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
StatalbtcIcon.displayName = 'StatalbtcIcon';
}

export default StatalbtcIcon;
3 changes: 3 additions & 0 deletions packages/react-web3-icons/src/components/icons/full/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export { default as AgusdIcon } from './AgusdIcon';
export { default as AjeurIcon } from './AjeurIcon';
export { default as AkncIcon } from './AkncIcon';
export { default as AknclIcon } from './AknclIcon';
export { default as AlbtcIcon } from './AlbtcIcon';
export { default as AldoIcon } from './AldoIcon';
export { default as AlendIcon } from './AlendIcon';
export { default as AlinkIcon } from './AlinkIcon';
Expand Down Expand Up @@ -188,6 +189,7 @@ export { default as ImtokenwalletIcon } from './ImtokenwalletIcon';
export { default as JeurIcon } from './JeurIcon';
export { default as KncIcon } from './KncIcon';
export { default as KnclIcon } from './KnclIcon';
export { default as LbtcIcon } from './LbtcIcon';
export { default as LdoIcon } from './LdoIcon';
export { default as LendIcon } from './LendIcon';
export { default as LidoIcon } from './LidoIcon';
Expand Down Expand Up @@ -282,6 +284,7 @@ export { default as StatagusdIcon } from './StatagusdIcon';
export { default as StatajeurIcon } from './StatajeurIcon';
export { default as StatakncIcon } from './StatakncIcon';
export { default as StataknclIcon } from './StataknclIcon';
export { default as StatalbtcIcon } from './StatalbtcIcon';
export { default as StataldoIcon } from './StataldoIcon';
export { default as StatalendIcon } from './StatalendIcon';
export { default as StatalinkIcon } from './StatalinkIcon';
Expand Down
18 changes: 18 additions & 0 deletions packages/react-web3-icons/src/components/icons/mono/AlbtcIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconAlbtc } from "../../../icons/mono/build/icon-albtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const AlbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconAlbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
AlbtcIcon.displayName = 'AlbtcIcon';
}

export default AlbtcIcon;
18 changes: 18 additions & 0 deletions packages/react-web3-icons/src/components/icons/mono/LbtcIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconLbtc } from "../../../icons/mono/build/icon-lbtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const LbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconLbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
LbtcIcon.displayName = 'LbtcIcon';
}

export default LbtcIcon;
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// GENERATED BY ./src/scripts/generateComponents.ts
// DO NOT EDIT IT MANUALLY

import React from "react";

import { iconStatalbtc } from "../../../icons/mono/build/icon-statalbtc.icon";
import { IconComponentBaseProps } from "../../../utils";
import { Image } from "../../Base/Image";

const StatalbtcIcon = (props: IconComponentBaseProps) => {
return <Image svgCode={iconStatalbtc.data} {...props} />;
};

if (process.env.NODE_ENV !== 'production') {
StatalbtcIcon.displayName = 'StatalbtcIcon';
}

export default StatalbtcIcon;
Loading

0 comments on commit 9067979

Please sign in to comment.