Ui 2 provider for dapps (#5799)
* Import web3Provider * Import api * {Transport,Provider}/Ws -> WsSecure * PostMessage provider with filters * PromiseWrapper -> PromiseProvider
This commit is contained in:
parent
c1599a3d85
commit
7f4a7abf49
@ -17,8 +17,8 @@
|
|||||||
import EventEmitter from 'eventemitter3';
|
import EventEmitter from 'eventemitter3';
|
||||||
|
|
||||||
import Contract from './contract';
|
import Contract from './contract';
|
||||||
import { PromiseWrapper, Http as HttpProvider, Ws as WsProvider } from './provider';
|
import { PromiseProvider, Http as HttpProvider, PostMessage as PostMessageProvider, WsSecure as WsSecureProvider } from './provider';
|
||||||
import { Http as HttpTransport, Ws as WsTransport } from './transport';
|
import { Http as HttpTransport, WsSecure as WsSecureTransport } from './transport';
|
||||||
|
|
||||||
import { Db, Eth, Parity, Net, Personal, Shh, Signer, Trace, Web3 } from './rpc';
|
import { Db, Eth, Parity, Net, Personal, Shh, Signer, Trace, Web3 } from './rpc';
|
||||||
import Subscriptions from './subscriptions';
|
import Subscriptions from './subscriptions';
|
||||||
@ -38,7 +38,7 @@ export default class Api extends EventEmitter {
|
|||||||
console.warn(new Error('deprecated: Api needs provider with send() function, old-style Transport found instead'));
|
console.warn(new Error('deprecated: Api needs provider with send() function, old-style Transport found instead'));
|
||||||
}
|
}
|
||||||
|
|
||||||
this._provider = new PromiseWrapper(provider);
|
this._provider = new PromiseProvider(provider);
|
||||||
|
|
||||||
this._db = new Db(this._provider);
|
this._db = new Db(this._provider);
|
||||||
this._eth = new Eth(this._provider);
|
this._eth = new Eth(this._provider);
|
||||||
@ -171,12 +171,13 @@ export default class Api extends EventEmitter {
|
|||||||
|
|
||||||
static Provider = {
|
static Provider = {
|
||||||
Http: HttpProvider,
|
Http: HttpProvider,
|
||||||
Ws: WsProvider
|
PostMessage: PostMessageProvider,
|
||||||
|
WsSecure: WsSecureProvider
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: kept for backwards compatibility
|
// NOTE: kept for backwards compatibility
|
||||||
static Transport = {
|
static Transport = {
|
||||||
Http: HttpTransport,
|
Http: HttpTransport,
|
||||||
Ws: WsTransport
|
WsSecure: WsSecureTransport
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,8 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
export PromiseWrapper from './promiseWrapper';
|
export PromiseProvider from './promise';
|
||||||
|
|
||||||
export Http from './http';
|
export Http from './http';
|
||||||
export Ws from './ws';
|
export PostMessage from './postMessage';
|
||||||
|
export WsSecure from './wsSecure';
|
||||||
|
52
js/src/api/provider/postMessage.js
Normal file
52
js/src/api/provider/postMessage.js
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
export default class PostMessage {
|
||||||
|
id = 0;
|
||||||
|
_callbacks = {};
|
||||||
|
|
||||||
|
constructor (token, destination) {
|
||||||
|
this._token = token;
|
||||||
|
this._destination = destination;
|
||||||
|
|
||||||
|
window.addEventListener('message', this.receiveMessage, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
addMiddleware () {
|
||||||
|
}
|
||||||
|
|
||||||
|
send = (method, params, callback) => {
|
||||||
|
const id = ++this.id;
|
||||||
|
|
||||||
|
this._callbacks[id] = callback;
|
||||||
|
this._destination.postMessage({
|
||||||
|
id,
|
||||||
|
from: this._token,
|
||||||
|
method,
|
||||||
|
params,
|
||||||
|
token: this._token
|
||||||
|
}, '*');
|
||||||
|
}
|
||||||
|
|
||||||
|
receiveMessage = ({ data: { id, error, from, token, result }, origin, source }) => {
|
||||||
|
if (from !== 'shell' || token !== this._token) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this._callbacks[id](error, result);
|
||||||
|
this._callbacks[id] = null;
|
||||||
|
}
|
||||||
|
}
|
@ -14,7 +14,7 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
export default class PromiseWrapper {
|
export default class PromiseProvider {
|
||||||
constructor (provider) {
|
constructor (provider) {
|
||||||
this.provider = provider;
|
this.provider = provider;
|
||||||
}
|
}
|
@ -14,9 +14,9 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import { Ws as Transport } from '../transport';
|
import { WsSecure as Transport } from '../transport';
|
||||||
|
|
||||||
export default class Ws extends Transport {
|
export default class WsSecure extends Transport {
|
||||||
send = (method, params, callback) => {
|
send = (method, params, callback) => {
|
||||||
this
|
this
|
||||||
._execute(method, params)
|
._execute(method, params)
|
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Db from './db';
|
import Db from './db';
|
||||||
|
|
||||||
const instance = new Db(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Db(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('api/rpc/Db', () => {
|
describe('api/rpc/Db', () => {
|
||||||
let scope;
|
let scope;
|
||||||
|
@ -17,10 +17,10 @@
|
|||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
import { isBigNumber } from '../../../../test/types';
|
import { isBigNumber } from '../../../../test/types';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Eth from './eth';
|
import Eth from './eth';
|
||||||
|
|
||||||
const instance = new Eth(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Eth(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('rpc/Eth', () => {
|
describe('rpc/Eth', () => {
|
||||||
const address = '0x63Cf90D3f0410092FC0fca41846f596223979195';
|
const address = '0x63Cf90D3f0410092FC0fca41846f596223979195';
|
||||||
|
@ -17,10 +17,10 @@
|
|||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
import { isBigNumber } from '../../../../test/types';
|
import { isBigNumber } from '../../../../test/types';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Net from './net';
|
import Net from './net';
|
||||||
|
|
||||||
const instance = new Net(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Net(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('api/rpc/Net', () => {
|
describe('api/rpc/Net', () => {
|
||||||
describe('peerCount', () => {
|
describe('peerCount', () => {
|
||||||
|
@ -18,10 +18,10 @@ import BigNumber from 'bignumber.js';
|
|||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
import { isBigNumber } from '../../../../test/types';
|
import { isBigNumber } from '../../../../test/types';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Parity from './parity';
|
import Parity from './parity';
|
||||||
|
|
||||||
const instance = new Parity(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Parity(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('api/rpc/parity', () => {
|
describe('api/rpc/parity', () => {
|
||||||
describe('accountsInfo', () => {
|
describe('accountsInfo', () => {
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Personal from './personal';
|
import Personal from './personal';
|
||||||
|
|
||||||
const instance = new Personal(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Personal(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('rpc/Personal', () => {
|
describe('rpc/Personal', () => {
|
||||||
const account = '0x63cf90d3f0410092fc0fca41846f596223979195';
|
const account = '0x63cf90d3f0410092fc0fca41846f596223979195';
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Trace from './trace';
|
import Trace from './trace';
|
||||||
|
|
||||||
const instance = new Trace(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Trace(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('api/rpc/Trace', () => {
|
describe('api/rpc/Trace', () => {
|
||||||
let scope;
|
let scope;
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
import { TEST_HTTP_URL, mockHttp } from '../../../../test/mockRpc';
|
||||||
|
|
||||||
import { Http, PromiseWrapper } from '../../provider';
|
import { Http, PromiseProvider } from '../../provider';
|
||||||
import Web3 from './web3';
|
import Web3 from './web3';
|
||||||
|
|
||||||
const instance = new Web3(new PromiseWrapper(new Http(TEST_HTTP_URL, -1)));
|
const instance = new Web3(new PromiseProvider(new Http(TEST_HTTP_URL, -1)));
|
||||||
|
|
||||||
describe('api/rpc/Web3', () => {
|
describe('api/rpc/Web3', () => {
|
||||||
let scope;
|
let scope;
|
||||||
|
@ -15,6 +15,6 @@
|
|||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
export Http from './http';
|
export Http from './http';
|
||||||
export Ws from './ws';
|
export WsSecure from './wsSecure';
|
||||||
export TransportError from './error';
|
export TransportError from './error';
|
||||||
export Middleware from './middleware';
|
export Middleware from './middleware';
|
||||||
|
@ -14,4 +14,4 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
export default from './ws';
|
export default from './wsSecure';
|
@ -14,11 +14,11 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import Ws from './ws';
|
import WsSecure from './wsSecure';
|
||||||
|
|
||||||
const ws = new Ws('ws://localhost:8546/');
|
const ws = new WsSecure('ws://localhost:8546/');
|
||||||
|
|
||||||
describe('transport/Ws', () => {
|
describe('transport/WsSecure', () => {
|
||||||
it('connects and makes a call to web3_clientVersion', () => {
|
it('connects and makes a call to web3_clientVersion', () => {
|
||||||
return ws.execute('web3_clientVersion').then((version) => {
|
return ws.execute('web3_clientVersion').then((version) => {
|
||||||
const [client] = version.split('/');
|
const [client] = version.split('/');
|
@ -21,7 +21,7 @@ import JsonRpcBase from '../jsonRpcBase';
|
|||||||
import TransportError from '../error';
|
import TransportError from '../error';
|
||||||
|
|
||||||
/* global WebSocket */
|
/* global WebSocket */
|
||||||
export default class Ws extends JsonRpcBase {
|
export default class WsSecure extends JsonRpcBase {
|
||||||
constructor (url, token, autoconnect = true) {
|
constructor (url, token, autoconnect = true) {
|
||||||
super();
|
super();
|
||||||
|
|
@ -15,16 +15,16 @@
|
|||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import { TEST_WS_URL, mockWs } from '../../../../test/mockRpc';
|
import { TEST_WS_URL, mockWs } from '../../../../test/mockRpc';
|
||||||
import Ws from './ws';
|
import WsSecure from './wsSecure';
|
||||||
|
|
||||||
describe('api/transport/Ws', () => {
|
describe('api/transport/WsSecure', () => {
|
||||||
let transport;
|
let transport;
|
||||||
let scope;
|
let scope;
|
||||||
|
|
||||||
describe('transport emitter', () => {
|
describe('transport emitter', () => {
|
||||||
const connect = () => {
|
const connect = () => {
|
||||||
const scope = mockWs();
|
const scope = mockWs();
|
||||||
const transport = new Ws(TEST_WS_URL);
|
const transport = new WsSecure(TEST_WS_URL);
|
||||||
|
|
||||||
return { transport, scope };
|
return { transport, scope };
|
||||||
};
|
};
|
||||||
@ -57,7 +57,7 @@ describe('api/transport/Ws', () => {
|
|||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
scope = mockWs([{ method: 'test_anyCall', reply: 'TestResult' }]);
|
scope = mockWs([{ method: 'test_anyCall', reply: 'TestResult' }]);
|
||||||
transport = new Ws(TEST_WS_URL);
|
transport = new WsSecure(TEST_WS_URL);
|
||||||
|
|
||||||
return transport
|
return transport
|
||||||
.execute('test_anyCall', [1, 2, 3])
|
.execute('test_anyCall', [1, 2, 3])
|
||||||
@ -98,7 +98,7 @@ describe('api/transport/Ws', () => {
|
|||||||
describe('errors', () => {
|
describe('errors', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
scope = mockWs([{ method: 'test_anyCall', reply: { error: { code: 1, message: 'TestError' } } }]);
|
scope = mockWs([{ method: 'test_anyCall', reply: { error: { code: 1, message: 'TestError' } } }]);
|
||||||
transport = new Ws(TEST_WS_URL);
|
transport = new WsSecure(TEST_WS_URL);
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
@ -23,9 +23,11 @@ import Api from './api';
|
|||||||
|
|
||||||
import './dev.parity.html';
|
import './dev.parity.html';
|
||||||
|
|
||||||
const api = new Api(new Api.Provider.Http('/rpc/'));
|
const web3Provider = new Api.Provider.Http('/rpc/');
|
||||||
|
const api = new Api(web3Provider);
|
||||||
|
|
||||||
window.parity = {
|
window.parity = {
|
||||||
Api,
|
Api,
|
||||||
api
|
api,
|
||||||
|
web3Provider
|
||||||
};
|
};
|
||||||
|
@ -35,7 +35,7 @@ export default class SecureApi extends Api {
|
|||||||
static getTransport (url, sysuiToken, protocol) {
|
static getTransport (url, sysuiToken, protocol) {
|
||||||
const transportUrl = SecureApi.transportUrl(url, protocol);
|
const transportUrl = SecureApi.transportUrl(url, protocol);
|
||||||
|
|
||||||
return new Api.Provider.Ws(transportUrl, sysuiToken, false);
|
return new Api.Provider.WsSecure(transportUrl, sysuiToken, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
static transportUrl (url, protocol) {
|
static transportUrl (url, protocol) {
|
||||||
|
65
js/src/shell/DappFilter/dappFilter.js
Normal file
65
js/src/shell/DappFilter/dappFilter.js
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
export default class DappFilter {
|
||||||
|
constructor (provider, permissions) {
|
||||||
|
this.permissions = permissions;
|
||||||
|
this.provider = provider;
|
||||||
|
|
||||||
|
window.addEventListener('message', this.receiveMessage, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
receiveMessage = ({ data: { id, from, method, params, token }, origin, source }) => {
|
||||||
|
if (from === 'shell' || from !== token) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.permissions.filtered.includes(method) && !this.permissions.tokens[token][method]) {
|
||||||
|
source.postMessage({
|
||||||
|
id,
|
||||||
|
from: 'shell',
|
||||||
|
error: new Error(`Method ${method} is not available to application`),
|
||||||
|
result: null,
|
||||||
|
token
|
||||||
|
}, '*');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.provider.send(method, params, (error, result) => {
|
||||||
|
source.postMessage({
|
||||||
|
error,
|
||||||
|
id,
|
||||||
|
from: 'shell',
|
||||||
|
result,
|
||||||
|
token
|
||||||
|
}, '*');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
setPermissions (permissions) {
|
||||||
|
this.permissions = permissions;
|
||||||
|
}
|
||||||
|
|
||||||
|
static instance = null;
|
||||||
|
|
||||||
|
static create (provider, permissions) {
|
||||||
|
DappFilter.instance = new DappFilter(provider, permissions);
|
||||||
|
}
|
||||||
|
|
||||||
|
static get () {
|
||||||
|
return DappFilter.instance;
|
||||||
|
}
|
||||||
|
}
|
@ -14,8 +14,4 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
export default from './dappFilter';
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
@ -26,6 +26,7 @@ import injectTapEventPlugin from 'react-tap-event-plugin';
|
|||||||
import { IndexRoute, Redirect, Route, Router, hashHistory } from 'react-router';
|
import { IndexRoute, Redirect, Route, Router, hashHistory } from 'react-router';
|
||||||
import qs from 'querystring';
|
import qs from 'querystring';
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
import builtinDapps from '@parity/shared/config/dappsBuiltin.json';
|
import builtinDapps from '@parity/shared/config/dappsBuiltin.json';
|
||||||
import viewsDapps from '@parity/shared/config/dappsViews.json';
|
import viewsDapps from '@parity/shared/config/dappsViews.json';
|
||||||
import ContractInstances from '@parity/shared/contracts';
|
import ContractInstances from '@parity/shared/contracts';
|
||||||
@ -40,6 +41,7 @@ import SecureApi from '~/secureApi';
|
|||||||
|
|
||||||
import Application from './Application';
|
import Application from './Application';
|
||||||
import Dapp from './Dapp';
|
import Dapp from './Dapp';
|
||||||
|
import DappFilter from './DappFilter';
|
||||||
import Dapps from './Dapps';
|
import Dapps from './Dapps';
|
||||||
|
|
||||||
injectTapEventPlugin();
|
injectTapEventPlugin();
|
||||||
@ -65,17 +67,23 @@ const api = new SecureApi(uiUrl, token);
|
|||||||
patchApi(api);
|
patchApi(api);
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
|
||||||
const store = initStore(api, hashHistory);
|
DappFilter.create(api.provider, {
|
||||||
|
filtered: [],
|
||||||
|
tokens: {
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
window.secureApi = api;
|
const store = initStore(api, hashHistory);
|
||||||
|
|
||||||
const dapps = [].concat(viewsDapps, builtinDapps);
|
const dapps = [].concat(viewsDapps, builtinDapps);
|
||||||
|
|
||||||
const dappsHistory = HistoryStore.get('dapps');
|
const dappsHistory = HistoryStore.get('dapps');
|
||||||
|
|
||||||
function onEnterDapp ({ params }) {
|
function onEnterDapp ({ params: { id } }) {
|
||||||
if (!dapps[params.id] || !dapps[params.id].skipHistory) {
|
window.web3Provider = new Api.Provider.PostMessage(id, window);
|
||||||
dappsHistory.add(params.id);
|
|
||||||
|
if (!dapps[id] || !dapps[id].skipHistory) {
|
||||||
|
dappsHistory.add(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
import Api from '@parity/api';
|
||||||
|
|
||||||
export {
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
api
|
|
||||||
};
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import Account from './account';
|
import Account from './account';
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
import Api from '@parity/api';
|
||||||
|
|
||||||
export {
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
api
|
|
||||||
};
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import Accounts from './accounts';
|
import Accounts from './accounts';
|
||||||
|
|
||||||
|
21
js/src/views/Address/api.js
Normal file
21
js/src/views/Address/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Address from './address';
|
import Address from './address';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
21
js/src/views/Addresses/api.js
Normal file
21
js/src/views/Addresses/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Addresses from './addresses';
|
import Addresses from './addresses';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
21
js/src/views/Contract/api.js
Normal file
21
js/src/views/Contract/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Contract from './contract';
|
import Contract from './contract';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/ContractDevelop/api.js
Normal file
21
js/src/views/ContractDevelop/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -24,7 +24,7 @@ injectTapEventPlugin();
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import ContractDevelop from './contractDevelop';
|
import ContractDevelop from './contractDevelop';
|
||||||
|
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Contracts/api.js
Normal file
21
js/src/views/Contracts/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Contracts from './contracts';
|
import Contracts from './contracts';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Home/api.js
Normal file
21
js/src/views/Home/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -24,7 +24,7 @@ injectTapEventPlugin();
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Home from './home';
|
import Home from './home';
|
||||||
|
|
||||||
const store = initStore(api, hashHistory);
|
const store = initStore(api, hashHistory);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Playground/api.js
Normal file
21
js/src/views/Playground/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -24,7 +24,7 @@ injectTapEventPlugin();
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Playground from './playground';
|
import Playground from './playground';
|
||||||
|
|
||||||
const store = initStore(api, hashHistory);
|
const store = initStore(api, hashHistory);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Settings/api.js
Normal file
21
js/src/views/Settings/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -24,7 +24,7 @@ injectTapEventPlugin();
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import SettingsBackground from './Background';
|
import SettingsBackground from './Background';
|
||||||
import SettingsParity from './Node';
|
import SettingsParity from './Node';
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Signer/api.js
Normal file
21
js/src/views/Signer/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import Signer from './signer';
|
import Signer from './signer';
|
||||||
|
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Status/api.js
Normal file
21
js/src/views/Status/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Status from './status';
|
import Status from './status';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Vaults/api.js
Normal file
21
js/src/views/Vaults/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
|
|
||||||
import Vaults from './vaults';
|
import Vaults from './vaults';
|
||||||
|
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
21
js/src/views/Wallet/api.js
Normal file
21
js/src/views/Wallet/api.js
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
||||||
|
// This file is part of Parity.
|
||||||
|
|
||||||
|
// Parity is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
|
||||||
|
// Parity is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
|
||||||
|
export default new Api(web3Provider);
|
@ -25,7 +25,7 @@ import ContractInstances from '@parity/shared/contracts';
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Wallet from './wallet';
|
import Wallet from './wallet';
|
||||||
|
|
||||||
ContractInstances.get(api);
|
ContractInstances.get(api);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
@ -14,7 +14,10 @@
|
|||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
import Api from '@parity/api';
|
||||||
|
|
||||||
|
const web3Provider = (window.parity && window.parity.web3Provider) || (window.parent && window.parent.web3Provider);
|
||||||
|
const api = new Api(web3Provider);
|
||||||
|
|
||||||
export {
|
export {
|
||||||
api
|
api
|
@ -24,7 +24,7 @@ injectTapEventPlugin();
|
|||||||
import { initStore } from '@parity/shared/redux';
|
import { initStore } from '@parity/shared/redux';
|
||||||
import ContextProvider from '@parity/ui/ContextProvider';
|
import ContextProvider from '@parity/ui/ContextProvider';
|
||||||
|
|
||||||
import { api } from './parity';
|
import api from './api';
|
||||||
import Web from './web';
|
import Web from './web';
|
||||||
|
|
||||||
const store = initStore(api, hashHistory);
|
const store = initStore(api, hashHistory);
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
||||||
// This file is part of Parity.
|
|
||||||
|
|
||||||
// Parity is free software: you can redistribute it and/or modify
|
|
||||||
// it under the terms of the GNU General Public License as published by
|
|
||||||
// the Free Software Foundation, either version 3 of the License, or
|
|
||||||
// (at your option) any later version.
|
|
||||||
|
|
||||||
// Parity is distributed in the hope that it will be useful,
|
|
||||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
// GNU General Public License for more details.
|
|
||||||
|
|
||||||
// You should have received a copy of the GNU General Public License
|
|
||||||
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
const api = window.parent.secureApi;
|
|
||||||
|
|
||||||
export {
|
|
||||||
api
|
|
||||||
};
|
|
@ -29,5 +29,5 @@ export function createHttpApi () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function createWsApi () {
|
export function createWsApi () {
|
||||||
return createApi(new Api.Provider.Ws('ws://localhost:8546'));
|
return createApi(new Api.Provider.WsSecure('ws://localhost:8546'));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user