Skip to content

Commit

Permalink
Merge pull request #980 from oraichain/feat/multisend-cw20
Browse files Browse the repository at this point in the history
add usdt multisend cw20
  • Loading branch information
haunv3 committed May 6, 2024
2 parents 2eb9121 + edcaddf commit 2e7acab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Header/NavBar/Dialog/SendCw20.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 2e7acab

Please sign in to comment.