Skip to content

Commit

Permalink
Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpecialNoob committed Apr 30, 2022
1 parent b8cb763 commit bc74437
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Token MultiSender</title>
<title>Token MultiSender By FundsFi</title>
</head>
<body>
<noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/components/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export class FirstStep extends React.Component {
loading={this.web3Store.loading}
/>
</div>
<h1 className="title"><strong>Welcome to Token</strong> MultiSender</h1>
<h1 className="title"><strong>Welcome to Token</strong> MultiSender By FundsFi</h1>
<p className="description">
Please provide Token Address, JSON/CSV file with addresses <br />
This Dapp supports Mainnet, POA-Core, POA-sokol, Ropsten, Rinkeby, Kovan <br/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/2.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class SecondStep extends React.Component {
return (
<div className="container container_bg">
<div className="content">
<h1 className="title"><strong>Welcome to Token</strong> MultiSender</h1>
<h1 className="title"><strong>Welcome to Token</strong> MultiSender By FundsFi</h1>
<p className="description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore <a href="#">et dolore magna</a> aliqua.
Expand Down
2 changes: 1 addition & 1 deletion src/components/3.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class ThirdStep extends React.Component {
return (
<div className="container container_bg">
<div className="content">
<h1 className="title"><strong>Welcome to Token</strong> MultiSender</h1>
<h1 className="title"><strong>Welcome to Token</strong> MultiSender By FundsFi</h1>
<p className="description">
Please provide Token Address, JSON file with addresses <br />
This Dapp supports Mainnet, POA-Core, POA-sokol, Ropsten, Rinkeby, Kovan
Expand Down
4 changes: 2 additions & 2 deletions src/components/4.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ export class FourthStep extends React.Component {
return (
<div className="container container_bg">
<div className="content">
<h1 className="title"><strong>Welcome to Token</strong> MultiSender</h1>
<h1 className="title"><strong>Welcome to Token</strong> MultiSender By FundsFi</h1>
<p className="description">
Please provide Token Address, JSON file with addresses <br />
This Dapp supports Mainnet, POA-Core, POA-sokol, Ropsten, Rinkeby, Kovan
This Dapp supports ETH Mainnet,Harmony Mainnet, POA-Core, POA-sokol, Ropsten, Rinkeby, Kovan
</p>
<form className="form">
<p>{status}</p>
Expand Down
6 changes: 6 additions & 0 deletions src/getWeb3.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ let getWeb3 = () => {
explorerUrl = 'https://etherscan.io'
console.log('This is Foundation', netId)
break;
case "2":
netIdName = 'Harmony ONE'
trustApiName = 'Harmony'
explorerUrl = 'https://explorer.harmony.one/'
console.log('This is Harmony ONE', netId)
break;
case "3":
netIdName = 'Ropsten'
trustApiName = 'ropsten'
Expand Down

0 comments on commit bc74437

Please sign in to comment.