Skip to content

Commit

Permalink
update contracts, ready for master
Browse files Browse the repository at this point in the history
  • Loading branch information
adibas03 committed Dec 17, 2018
1 parent 18d84a0 commit 5cb85c8
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/build
/dist
/node_modules
/node_modules
5 changes: 3 additions & 2 deletions contracts/Wallet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ pragma solidity ^0.4.24;
import "../installed_contracts/zeppelin-solidity/contracts/ownership/Ownable.sol";

/**
* Wallet instantiation, is albe to run almost any Interaction: eth, toke, transactions
* It is basically a minimalistic implementation of Proxy contract discussed in EIP 725 and EIP 1167
* Wallet instantiation, is able to run almost any Interaction: eth, token, transactions
* It is basically a minimalistic implementation of Proxy contract discussed
* The owner of the contract can be set as an Identity contract like EIP 725 and increse the possibilities
*/
contract Wallet is Ownable {

Expand Down
44 changes: 44 additions & 0 deletions src/App/Components/Beneficiaries.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import React, { Component } from 'react';
import PropTypes from "prop-types";
import ErrorBoundary from "./ErrorBoundary";
import NetworkComponent from "./NetworkComponent";

import { web3Scripts } from '../../Scripts';

import Card from 'antd/lib/card';
import Col from 'antd/lib/col';
import Divider from 'antd/lib/divider';
import Icon from 'antd/lib/icon';
import Layout from 'antd/lib/layout';
import notification from 'antd/lib/notification';
import Row from 'antd/lib/row';

import 'antd/lib/card/style';
import 'antd/lib/col/style';
import 'antd/lib/divider/style';
import 'antd/lib/icon/style';
import 'antd/lib/layout/style';
import 'antd/lib/notification/style';
import 'antd/lib/row/style';
import { Explorers } from "../../Config";

class Beneficiaries extends Component {

render () {
return (
<Layout>
<Row gutter={0} style={{ margin: '0 0 24px' }}>
<Col span={24}>
<h2>Benefeciaries</h2>
</Col>
</Row>
</Layout>
)
}

}

Beneficiaries.propTypes = {
}

export default ErrorBoundary(NetworkComponent(Beneficiaries));
1 change: 1 addition & 0 deletions src/App/Components/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export{ default as Accounts } from './Accounts';
export{ default as Beneficiaries } from './Beneficiaries';
export{ default as Contract } from './Contract';
export{ default as ContractsList } from './ContractsList';
export{ default as Deployer } from './Deployer';
Expand Down

0 comments on commit 5cb85c8

Please sign in to comment.