From edcaddfb08766b66b5ffb58d626d2f027a8769dc Mon Sep 17 00:00:00 2001 From: Hau Nguyen Van Date: Mon, 6 May 2024 14:30:24 +0700 Subject: [PATCH] add usdt multisend cw20 --- src/components/Header/NavBar/Dialog/SendCw20.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Header/NavBar/Dialog/SendCw20.js b/src/components/Header/NavBar/Dialog/SendCw20.js index 7a11b43f..1deeebe7 100644 --- a/src/components/Header/NavBar/Dialog/SendCw20.js +++ b/src/components/Header/NavBar/Dialog/SendCw20.js @@ -6,7 +6,7 @@ import { Input, Switch } from "antd"; import Grid from "@material-ui/core/Grid"; import { EditOutlined } from "@material-ui/icons"; import "react-input-range/lib/css/index.css"; -import { AIRI_CONTRACT, ORAIX_CONTRACT } from "@oraichain/oraidex-common"; +import { AIRI_CONTRACT, ORAIX_CONTRACT, USDT_CONTRACT } from "@oraichain/oraidex-common"; import consts from "src/constants/consts"; import { reduceString } from "src/lib/scripts"; import { formatOrai } from "src/helpers/helper"; @@ -88,9 +88,13 @@ export default function FormDialog({ address, status, methods, handleInputMulti, { label: "OCH", value: "OCH", - // OCH_CONTRACT address: "orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q", }, + { + label: "USDT", + value: "USDT", + address: USDT_CONTRACT, + }, ]; const cw20Token = fields.find(e => e.value == fieldValue);