mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
fixed tokens
This commit is contained in:
parent
12ab43ef41
commit
4613d524b5
@ -285,9 +285,10 @@ export const validation = (): ThunkAction => {
|
||||
let decimalRegExp: RegExp;
|
||||
|
||||
if (state.token !== accountState.network) {
|
||||
const token: any = getState().tokens.find(t => t.ethAddress === account.address && t.symbol === state.token);
|
||||
|
||||
const token = getState().tokens.find(t => t.ethAddress === account.address && t.symbol === state.token);
|
||||
if (token) {
|
||||
if (parseInt(token.decimals) > 0) {
|
||||
//decimalRegExp = new RegExp('^(0|0\\.([0-9]{0,' + token.decimals + '})?|[1-9]+\\.?([0-9]{0,' + token.decimals + '})?|\\.[0-9]{1,' + token.decimals + '})$');
|
||||
decimalRegExp = new RegExp('^(0|0\\.([0-9]{0,' + token.decimals + '})?|[1-9]+\\.?([0-9]{0,' + token.decimals + '})?|\\.[0-9]{1,' + token.decimals + '})$');
|
||||
} else {
|
||||
// decimalRegExp = new RegExp('^(0|0\\.?|[1-9]+\\.?)$');
|
||||
@ -303,6 +304,8 @@ export const validation = (): ThunkAction => {
|
||||
} else if (new BigNumber(state.amount).lessThanOrEqualTo('0')) {
|
||||
errors.amount = 'Amount is too low';
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
decimalRegExp = new RegExp('^(0|0\\.([0-9]{0,18})?|[1-9]+\\.?([0-9]{0,18})?|\\.[0-9]{0,18})$');
|
||||
if (!state.amount.match(decimalRegExp)) {
|
||||
|
@ -75,6 +75,7 @@ export const add = (token: NetworkToken, account: Account): AsyncAction => {
|
||||
payload: {
|
||||
loaded: false,
|
||||
deviceState: account.deviceState,
|
||||
network: account.network,
|
||||
name: token.name,
|
||||
symbol: token.symbol,
|
||||
address: token.address,
|
||||
|
@ -22,7 +22,7 @@ const PendingTransactions = (props: Props) => {
|
||||
|
||||
if (pending.length < 1) return null;
|
||||
|
||||
const tokens = props.tokens.filter(t => t.ethAddress === account.address);
|
||||
const tokens = props.tokens.filter(t => t.ethAddress === account.address && t.network === account.network);
|
||||
|
||||
const bgColor = new ColorHash({lightness: 0.7});
|
||||
const textColor = new ColorHash();
|
||||
@ -33,6 +33,7 @@ const PendingTransactions = (props: Props) => {
|
||||
|
||||
if (tx.token !== tx.network) {
|
||||
const token = tokens.find(t => t.symbol === tx.token);
|
||||
if (token) {
|
||||
iconColor = {
|
||||
color: textColor.hex(token.name),
|
||||
background: bgColor.hex(token.name),
|
||||
@ -40,6 +41,7 @@ const PendingTransactions = (props: Props) => {
|
||||
}
|
||||
symbol = token.symbol.toUpperCase();
|
||||
name = token.name;
|
||||
}
|
||||
} else {
|
||||
iconColor = {
|
||||
color: textColor.hex(tx.network),
|
||||
|
@ -40,7 +40,6 @@ const _render = (props: Props, state: AccountState): React$Element<string> => {
|
||||
coinSymbol,
|
||||
token,
|
||||
feeLevels,
|
||||
fee,
|
||||
selectedFeeLevel,
|
||||
gasPriceNeedsUpdate,
|
||||
total,
|
||||
@ -61,8 +60,7 @@ const _render = (props: Props, state: AccountState): React$Element<string> => {
|
||||
onSend,
|
||||
} = props.sendFormActions;
|
||||
|
||||
const { config } = props.localStorage;
|
||||
const selectedCoin = config.coins.find(c => c.network === network);
|
||||
const selectedCoin = props.abstractAccount.coin;
|
||||
const fiatRate = props.fiat.find(f => f.network === network);
|
||||
|
||||
const tokens = addressTokens.map(t => {
|
||||
|
@ -1,7 +1,7 @@
|
||||
/* @flow */
|
||||
'use strict';
|
||||
|
||||
import React, { Component, PropTypes } from 'react';
|
||||
import * as React from 'react';
|
||||
import { bindActionCreators } from 'redux';
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
@ -11,15 +11,17 @@ import SendForm from './SendForm';
|
||||
|
||||
import type { MapStateToProps, MapDispatchToProps } from 'react-redux';
|
||||
import type { State, Dispatch } from '../../../flowtype';
|
||||
import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps, Props as BaseProps} from '../account/AbstractAccount';
|
||||
import type { StateProps as BaseStateProps, DispatchProps as BaseDispatchProps } from '../account/AbstractAccount';
|
||||
|
||||
type OwnProps = { }
|
||||
|
||||
type StateProps = StateProps & {
|
||||
type StateProps = BaseStateProps & {
|
||||
tokens: $ElementType<State, 'tokens'>,
|
||||
pending: $ElementType<State, 'pending'>,
|
||||
sendForm: $ElementType<State, 'sendForm'>,
|
||||
fiat: $ElementType<State, 'fiat'>,
|
||||
localStorage: $ElementType<State, 'localStorage'>,
|
||||
children?: React.Node;
|
||||
}
|
||||
|
||||
type DispatchProps = BaseDispatchProps & {
|
||||
@ -29,7 +31,7 @@ type DispatchProps = BaseDispatchProps & {
|
||||
sendFormActions: typeof SendFormActions
|
||||
}
|
||||
|
||||
export type Props = BaseProps & StateProps & DispatchProps;
|
||||
export type Props = StateProps & DispatchProps;
|
||||
|
||||
const mapStateToProps: MapStateToProps<State, OwnProps, StateProps> = (state: State, own: OwnProps): StateProps => {
|
||||
return {
|
||||
|
@ -36,7 +36,7 @@ const _render = (props: Props, state: AccountState): React$Element<string> => {
|
||||
if (!device || !account) return <section></section>;
|
||||
|
||||
const abstractAccount = props.abstractAccount;
|
||||
const tokens = props.tokens.filter(t => t.ethAddress === account.address);
|
||||
const tokens = props.tokens.filter(t => t.ethAddress === account.address && t.network === account.network);
|
||||
|
||||
return (
|
||||
|
||||
|
@ -59,6 +59,11 @@ export type Config = {
|
||||
fiatValueTickers: Array<FiatValueTicker>;
|
||||
}
|
||||
|
||||
export type CustomBackend = {
|
||||
name: string;
|
||||
url: string;
|
||||
}
|
||||
|
||||
|
||||
export type State = {
|
||||
initialized: boolean;
|
||||
@ -66,6 +71,7 @@ export type State = {
|
||||
config: Config;
|
||||
ERC20Abi: Array<Object>;
|
||||
tokens: TokensCollection;
|
||||
customBackend: Array<CustomBackend>;
|
||||
}
|
||||
|
||||
const initialState: State = {
|
||||
@ -77,6 +83,13 @@ const initialState: State = {
|
||||
},
|
||||
ERC20Abi: [],
|
||||
tokens: {},
|
||||
customBackend: [
|
||||
{
|
||||
name: "Custom1",
|
||||
slug: "custom1",
|
||||
url: "http://google.com"
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default function localStorage(state: State = initialState, action: Action): State {
|
||||
|
@ -9,6 +9,7 @@ import type { Action, TrezorDevice } from '../flowtype';
|
||||
export type Token = {
|
||||
loaded: boolean;
|
||||
+deviceState: string;
|
||||
+network: string;
|
||||
+name: string;
|
||||
+symbol: string;
|
||||
+address: string;
|
||||
|
@ -44,7 +44,7 @@ const findAccounts = (devices: Array<TrezorDevice>, accounts: Array<Account>): A
|
||||
|
||||
const findTokens = (accounts: Array<Account>, tokens: Array<Token>): Array<Token> => {
|
||||
return accounts.reduce((arr, account) => {
|
||||
return arr.concat(tokens.filter(a => a.ethAddress === account.address));
|
||||
return arr.concat(tokens.filter(token => token.ethAddress === account.address && token.network === account.network));
|
||||
}, []);
|
||||
}
|
||||
|
||||
|
137
src/solidity/grzegorz-token.js
Normal file
137
src/solidity/grzegorz-token.js
Normal file
@ -0,0 +1,137 @@
|
||||
pragma solidity ^0.4.4;
|
||||
|
||||
contract Token {
|
||||
|
||||
/// @return total amount of tokens
|
||||
function totalSupply() constant returns (uint256 supply) {}
|
||||
|
||||
/// @param _owner The address from which the balance will be retrieved
|
||||
/// @return The balance
|
||||
function balanceOf(address _owner) constant returns (uint256 balance) {}
|
||||
|
||||
/// @notice send `_value` token to `_to` from `msg.sender`
|
||||
/// @param _to The address of the recipient
|
||||
/// @param _value The amount of token to be transferred
|
||||
/// @return Whether the transfer was successful or not
|
||||
function transfer(address _to, uint256 _value) returns (bool success) {}
|
||||
|
||||
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
|
||||
/// @param _from The address of the sender
|
||||
/// @param _to The address of the recipient
|
||||
/// @param _value The amount of token to be transferred
|
||||
/// @return Whether the transfer was successful or not
|
||||
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}
|
||||
|
||||
/// @notice `msg.sender` approves `_addr` to spend `_value` tokens
|
||||
/// @param _spender The address of the account able to transfer the tokens
|
||||
/// @param _value The amount of wei to be approved for transfer
|
||||
/// @return Whether the approval was successful or not
|
||||
function approve(address _spender, uint256 _value) returns (bool success) {}
|
||||
|
||||
/// @param _owner The address of the account owning tokens
|
||||
/// @param _spender The address of the account able to transfer the tokens
|
||||
/// @return Amount of remaining tokens allowed to spent
|
||||
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}
|
||||
|
||||
event Transfer(address indexed _from, address indexed _to, uint256 _value);
|
||||
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
contract StandardToken is Token {
|
||||
|
||||
function transfer(address _to, uint256 _value) returns (bool success) {
|
||||
//Default assumes totalSupply can't be over max (2^256 - 1).
|
||||
//If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
|
||||
//Replace the if with this one instead.
|
||||
//if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
|
||||
if (balances[msg.sender] >= _value && _value > 0) {
|
||||
balances[msg.sender] -= _value;
|
||||
balances[_to] += _value;
|
||||
Transfer(msg.sender, _to, _value);
|
||||
return true;
|
||||
} else { return false; }
|
||||
}
|
||||
|
||||
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
|
||||
//same as above. Replace this line with the following if you want to protect against wrapping uints.
|
||||
//if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
|
||||
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
|
||||
balances[_to] += _value;
|
||||
balances[_from] -= _value;
|
||||
allowed[_from][msg.sender] -= _value;
|
||||
Transfer(_from, _to, _value);
|
||||
return true;
|
||||
} else { return false; }
|
||||
}
|
||||
|
||||
function balanceOf(address _owner) constant returns (uint256 balance) {
|
||||
return balances[_owner];
|
||||
}
|
||||
|
||||
function approve(address _spender, uint256 _value) returns (bool success) {
|
||||
allowed[msg.sender][_spender] = _value;
|
||||
Approval(msg.sender, _spender, _value);
|
||||
return true;
|
||||
}
|
||||
|
||||
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
|
||||
return allowed[_owner][_spender];
|
||||
}
|
||||
|
||||
mapping (address => uint256) balances;
|
||||
mapping (address => mapping (address => uint256)) allowed;
|
||||
uint256 public totalSupply;
|
||||
}
|
||||
|
||||
|
||||
//name this contract whatever you'd like
|
||||
contract GrzegorzBrzeczyszczykiewicz is StandardToken {
|
||||
|
||||
function () {
|
||||
//if ether is sent to this address, send it back.
|
||||
throw;
|
||||
}
|
||||
|
||||
/* Public variables of the token */
|
||||
|
||||
/*
|
||||
NOTE:
|
||||
The following variables are OPTIONAL vanities. One does not have to include them.
|
||||
They allow one to customise the token contract & in no way influences the core functionality.
|
||||
Some wallets/interfaces might not even bother to look at this information.
|
||||
*/
|
||||
string public name; //fancy name: eg Simon Bucks
|
||||
uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
|
||||
string public symbol; //An identifier: eg SBX
|
||||
string public version = 'H1.0'; //human 0.1 standard. Just an arbitrary versioning scheme.
|
||||
|
||||
//
|
||||
// CHANGE THESE VALUES FOR YOUR TOKEN
|
||||
//
|
||||
|
||||
//make sure this function name matches the contract name above. So if you're token is called TutorialToken, make sure the //contract name above is also TutorialToken instead of ERC20Token
|
||||
|
||||
function GrzegorzBrzeczyszczykiewicz(
|
||||
) {
|
||||
balances[msg.sender] = 1000000; // Give the creator all initial tokens (100000 for example)
|
||||
totalSupply = 1000000; // Update total supply (100000 for example)
|
||||
name = "Grzegorz Brzęczyszczykiewicz"; // Set the name for display purposes
|
||||
decimals = 3; // Amount of decimals for display purposes
|
||||
symbol = "GRZBRZ"; // Set the symbol for display purposes
|
||||
}
|
||||
|
||||
/* Approves and then calls the receiving contract */
|
||||
function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
|
||||
allowed[msg.sender][_spender] = _value;
|
||||
Approval(msg.sender, _spender, _value);
|
||||
|
||||
//call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
|
||||
//receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
|
||||
//it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
|
||||
if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user