39 lines
1.4 KiB
TypeScript
39 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import * as _ from 'lodash';
|
|
import BigNumber from 'bignumber.js';
|
|
import {ZeroEx} from '0x.js';
|
|
import {Token} from 'ts/types';
|
|
import {utils} from 'ts/utils/utils';
|
|
|
|
interface TokenSendCompletedProps {
|
|
etherScanLinkIfExists?: string;
|
|
token: Token;
|
|
toAddress: string;
|
|
amountInBaseUnits: BigNumber;
|
|
}
|
|
|
|
interface TokenSendCompletedState {}
|
|
|
|
export class TokenSendCompleted extends React.Component<TokenSendCompletedProps, TokenSendCompletedState> {
|
|
public render() {
|
|
const etherScanLink = !_.isUndefined(this.props.etherScanLinkIfExists) &&
|
|
(
|
|
<a
|
|
style={{color: 'white'}}
|
|
href={`${this.props.etherScanLinkIfExists}`}
|
|
target="_blank"
|
|
>
|
|
Verify on Etherscan
|
|
</a>
|
|
);
|
|
const amountInUnits = ZeroEx.toUnitAmount(this.props.amountInBaseUnits, this.props.token.decimals);
|
|
const truncatedAddress = utils.getAddressBeginAndEnd(this.props.toAddress);
|
|
return (
|
|
<div>
|
|
{`Sent ${amountInUnits} ${this.props.token.symbol} to ${truncatedAddress}: `}
|
|
{etherScanLink}
|
|
</div>
|
|
);
|
|
}
|
|
}
|