diff --git a/i18n/en.i18n.json b/i18n/en.i18n.json
index cbf5dbf04..574165951 100644
--- a/i18n/en.i18n.json
+++ b/i18n/en.i18n.json
@@ -730,6 +730,7 @@
"blocks-compressed": "blocks",
"blocks-singular": "block",
"poll-closed-after-time": "Poll ended after {{days}}.",
+ "poll-ended-days-ago": "Poll ended {{days}} ago.",
"poll-never-ends": "This poll never ends (always on).",
"height-compressed": "blocks",
"height-singular": "block",
@@ -796,6 +797,7 @@
"moloch-period-complete": "Completed without outcome.",
"moloch-period-passed": "Approved Proposal 👍",
"moloch-period-rejected": "Rejected Proposal 👎",
+ "moloch-period-failed": "Rejected Proposal 👎",
"moloch-period-aborted": "Aborted proposal 🤦♂️",
"moloch-summoner-share": "Summoner Shares",
"syncing": "Syncing...",
@@ -881,5 +883,6 @@
"search-summon": "🔥 Summon of {{dao}}",
"search-ragequit": "💸 Ragequit of {{shares}} shares from {{dao}} by {{address}}",
"search-default": "🔍 {{searchTerm}}",
- "search-dates": "📅 {{searchTerm}}"
+ "search-dates": "📅 {{searchTerm}}",
+ "moloch-unsponsored": "Unsponsored Proposal"
}
diff --git a/imports/api/server/methods.js b/imports/api/server/methods.js
index ff61ef458..a0df14eaa 100644
--- a/imports/api/server/methods.js
+++ b/imports/api/server/methods.js
@@ -383,6 +383,13 @@ Meteor.methods({
return count;
},
+ /**
+ * @summary returns the last timestamp
+ */
+ async getLastTimestamp() {
+ return await getLastTimestamp().then((resolved) => { return resolved; });
+ },
+
/**
* @summary get block timme
* @param {object} collective where to persist blocktime
diff --git a/imports/startup/both/modules/metamask.js b/imports/startup/both/modules/metamask.js
index 46e94f864..2edbe3b46 100644
--- a/imports/startup/both/modules/metamask.js
+++ b/imports/startup/both/modules/metamask.js
@@ -94,6 +94,43 @@ const _web3 = (activateModal) => {
return web3;
};
+
+/**
+* @summary check web3 plugin and connects to code obejct
+*/
+const _getWeb3Wallet = (activateModal) => {
+ let wallet;
+ if (!window.web3) {
+ wallet = setupWallet();
+ if (!wallet) {
+ if (activateModal) {
+ modal.message = TAPi18n.__('metamask-install');
+ displayModal(true, modal);
+ }
+ return false;
+ }
+ }
+ if (!wallet && window.web3) {
+ wallet = new Web3(window.web3.currentProvider);
+ }
+
+ if (!wallet.currentProvider.isFortmatic) {
+ wallet.eth.getCoinbase().then((coinbase) => {
+ if (!coinbase) {
+ if (activateModal) {
+ modal.message = TAPi18n.__('metamask-activate');
+ displayModal(true, modal);
+ return false;
+ }
+ }
+ return undefined;
+ });
+ }
+
+ return wallet;
+};
+
+
/**
* @summary get the current status of an on chain transaction
* @param {string} hash of the ticket
@@ -912,7 +949,7 @@ if (Meteor.isServer) {
*/
const _shortenCryptoName = (publicAddress) => {
if (publicAddress.length === 42 && publicAddress.slice(0, 2) === '0x') {
- return `${publicAddress.slice(2, 6)}...${publicAddress.slice(38, 42)}`.toLowerCase();
+ return `${publicAddress.slice(2, 6)}...${publicAddress.slice(38, 42)}`.toUpperCase();
}
return publicAddress;
};
@@ -928,3 +965,4 @@ export const getBlockHeight = _getBlockHeight;
export const verifyCoinVote = _verifyCoinVote;
export const submitVote = _submitVote;
export const hasRightToVote = _hasRightToVote;
+export const getWeb3Wallet = _getWeb3Wallet;
diff --git a/imports/startup/both/modules/oracles.js b/imports/startup/both/modules/oracles.js
index e18dc371c..9c691d627 100644
--- a/imports/startup/both/modules/oracles.js
+++ b/imports/startup/both/modules/oracles.js
@@ -75,7 +75,9 @@ const _setCollectiveReplicaScore = (collectiveId, height, valueRank) => {
if (!collective.profile.replica || (collective.profile.replica && collective.profile.replica.lastSyncedBlock < lastSyncedBlock)) {
log(`[oracle] Updating collective ${collective.uri} with replica: ${JSON.stringify(replica)}`);
- Collectives.update({ _id: collectiveId }, { $set: { 'profile.replica': replica } });
+ if (typeof replica.ranking === 'number' && typeof replica.score === 'number') {
+ Collectives.update({ _id: collectiveId }, { $set: { 'profile.replica': replica } });
+ }
}
}
return replica;
diff --git a/imports/ui/components/Account/Account.jsx b/imports/ui/components/Account/Account.jsx
new file mode 100644
index 000000000..7eed1f332
--- /dev/null
+++ b/imports/ui/components/Account/Account.jsx
@@ -0,0 +1,113 @@
+import { Meteor } from 'meteor/meteor';
+import React from 'react';
+import PropTypes from 'prop-types';
+import { TAPi18n } from 'meteor/tap:i18n';
+
+import ApolloClient, { gql, InMemoryCache } from 'apollo-boost';
+import { ApolloProvider } from 'react-apollo';
+import { useQuery } from '@apollo/react-hooks';
+
+import { shortenCryptoName } from '/imports/startup/both/modules/metamask';
+
+
+const makeBlockie = require('ethereum-blockies-base64');
+
+const client = new ApolloClient({
+ uri: Meteor.settings.public.graph.ens,
+ cache: new InMemoryCache(),
+});
+
+
+const ENS_ACCOUNT = `
+{
+ domains(where: { resolvedAddress: "{{ensAddress}}" }) {
+ id
+ name
+ labelName
+ labelhash
+ resolvedAddress {
+ id
+ }
+ }
+}
+`;
+
+/**
+* @summary writes name based on ENS settings
+* @param {object} data obtained from graph protocol
+* @param {string} publicAddress to parse
+*/
+const getENSName = (data, publicAddress) => {
+ if (data.domains.length > 0) {
+ return data.domains[0].name;
+ }
+ return shortenCryptoName(publicAddress);
+};
+
+/**
+* @summary renders a post in the timeline
+*/
+const AccountQuery = ({ publicAddress, width, height }) => {
+ let label;
+
+ const image = makeBlockie(publicAddress);
+ const url = `/address/${publicAddress}`;
+ const finalWidth = width || '24px';
+ const finalHeight = height || '24px';
+
+ if (publicAddress !== '0x0000000000000000000000000000000000000000') {
+ const { loading, error, data } = useQuery(gql(ENS_ACCOUNT.replace('{{ensAddress}}', publicAddress)));
+
+ if (loading) {
+ return (
+
+
+
+
+
+
+ );
+ }
+ if (error) return `Error! ${error}`;
+
+ label = getENSName(data, publicAddress);
+ } else {
+ label = '0x0';
+ }
+
+ return (
+
+
+
+
+
+
+ );
+};
+
+AccountQuery.propTypes = {
+ publicAddress: PropTypes.string,
+ width: PropTypes.string,
+ height: PropTypes.string,
+};
+
+/**
+* @summary renders a post in the timeline
+*/
+const Account = (props) => {
+ return (
+
+
+
+ );
+};
+
+Account.propTypes = AccountQuery.propTypes;
+
+export default Account;
diff --git a/imports/ui/components/Choice/Choice.jsx b/imports/ui/components/Choice/Choice.jsx
new file mode 100644
index 000000000..b11dfd380
--- /dev/null
+++ b/imports/ui/components/Choice/Choice.jsx
@@ -0,0 +1,188 @@
+import { Meteor } from 'meteor/meteor';
+import { TAPi18n } from 'meteor/tap:i18n';
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+
+import { displayModal, alert } from '/imports/ui/modules/modal';
+import { defaults } from '/lib/const';
+import { setupWeb3, getWeb3Wallet } from '/imports/startup/both/modules/metamask';
+import { noWallet, alreadyVoted, pollClosed, notLogged, notSynced, notMember, walletError } from '/imports/ui/components/Choice/messages';
+import { molochABI } from '/imports/ui/modules/abi';
+
+const numeral = require('numeral');
+
+const modal = {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('wallet'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+};
+
+/**
+* @summary displays the contents of a poll
+*/
+export default class Choice extends Component {
+ getlabelClass() {
+ if (this.props.percentage.toNumber() < 10) {
+ return 'poll-score-percentage poll-score-small';
+ }
+ return 'poll-score-percentage';
+ }
+
+ getBarStyle() {
+ if (this.props.label === TAPi18n.__('no')) {
+ return 'poll-score-bar-fill poll-score-bar-fill-negative';
+ }
+ return 'poll-score-bar-fill';
+ }
+
+ pollOpen() {
+ return (this.props.votingPeriodBegins > this.props.now && this.props.votingPeriodEnds < this.props.now);
+ }
+
+ canVote = async (accountAddress) => {
+ const web3 = getWeb3Wallet();
+ const dao = await new web3.eth.Contract(molochABI, this.props.publicAddress);
+ const response = await dao.methods.members(accountAddress).call({}, (err, res) => {
+ if (err) {
+ walletError(err);
+ return err;
+ }
+ return res;
+ });
+ return response.exists;
+ };
+
+ hasVoted = async (accountAddress) => {
+ const web3 = getWeb3Wallet();
+ const dao = await new web3.eth.Contract(molochABI, this.props.publicAddress);
+ const response = await dao.methods.getMemberProposalVote(accountAddress, this.props.proposalIndex).call({}, (err, res) => {
+ if (err) {
+ walletError(err);
+ return err;
+ }
+ return res;
+ });
+ return (response === 0 || response === '0');
+ };
+
+ execute = async () => {
+ const web3 = getWeb3Wallet();
+ const dao = await new web3.eth.Contract(molochABI, this.props.publicAddress);
+ await dao.methods.submitVote(this.props.proposalIndex, this.props.voteValue).send({ from: this.props.accountAddress }, (err, res) => {
+ if (err) {
+ walletError(err);
+ return err;
+ }
+ if (res) {
+ displayModal(false, modal);
+ alert(TAPi18n.__('voting-interaction').replace('{{collective}}', this.props.daoName).replace('{{etherscan}}', `${Meteor.settings.public.web.sites.blockExplorer}/tx/${res}`), 10000);
+ }
+ return res;
+ });
+ };
+
+ vote = async () => {
+ // blockchain sync
+ if (!this.props.now || this.props.now === 0) {
+ return notSynced();
+ }
+
+ // no web3 wallet
+ if (!setupWeb3(true)) {
+ return noWallet();
+ }
+
+ // user log in
+ if (!Meteor.user()) {
+ return notLogged();
+ }
+
+ // dao membership
+ if (!await this.canVote(this.props.accountAddress)) {
+ return notMember();
+ }
+
+ // already voted
+ if (!await this.hasVoted(this.props.accountAddress)) {
+ return alreadyVoted();
+ }
+
+ // poll date
+ if (!this.pollOpen()) {
+ return pollClosed();
+ }
+
+ // vote
+ const icon = Meteor.settings.public.app.logo;
+ let message;
+ switch (this.props.voteValue) {
+ case defaults.YES:
+ message = TAPi18n.__('dao-confirm-tally').replace('{{voteValue}}', TAPi18n.__('yes')).replace('{{proposalName}}', this.props.title);
+ break;
+ case defaults.NO:
+ message = TAPi18n.__('dao-confirm-tally').replace('{{voteValue}}', TAPi18n.__('no')).replace('{{proposalName}}', this.props.title);
+ break;
+ default:
+ message = TAPi18n.__('dao-default-tally').replace('{{proposalName}}', this.props.title);
+ }
+ displayModal(
+ true,
+ {
+ icon,
+ title: TAPi18n.__('place-vote'),
+ message,
+ cancel: TAPi18n.__('close'),
+ awaitMode: true,
+ displayProfile: false,
+ },
+ );
+ return await this.execute();
+ }
+
+ render() {
+ return (
+
+
+
+ );
+ }
+}
+
+Choice.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+ accountAddress: PropTypes.string,
+ percentage: PropTypes.string,
+ label: PropTypes.string,
+ voteValue: PropTypes.number,
+ votingPeriodBegins: PropTypes.string,
+ votingPeriodEnds: PropTypes.string,
+ title: PropTypes.string,
+ proposalIndex: PropTypes.string,
+ publicAddress: PropTypes.string,
+ daoName: PropTypes.string,
+ now: PropTypes.number,
+};
+
diff --git a/imports/ui/components/Choice/messages.js b/imports/ui/components/Choice/messages.js
new file mode 100644
index 000000000..6c386d974
--- /dev/null
+++ b/imports/ui/components/Choice/messages.js
@@ -0,0 +1,145 @@
+import { Meteor } from 'meteor/meteor';
+import { TAPi18n } from 'meteor/tap:i18n';
+import { displayModal } from '/imports/ui/modules/modal';
+
+/**
+* @summary reject vote message;
+*/
+const _notMember = () => {
+ // not member of dao
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('moloch-not-member'),
+ message: TAPi18n.__('moloch-alert-not-member'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+/**
+* @summary not synced chain message;
+*/
+const _notSynced = () => {
+ // not synced
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('not-synced'),
+ message: TAPi18n.__('not-synced-message'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+const _notLogged = () => {
+ // not logged
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('place-vote'),
+ message: TAPi18n.__('unlogged-cant-vote'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+/**
+* @summary poll no longer open;
+*/
+const _pollClosed = () => {
+ // poll already closed
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('poll-closed'),
+ message: TAPi18n.__('poll-is-closed'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+/**
+* @summary already voted here
+*/
+const _alreadyVoted = () => {
+ // poll already closed
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('already-voted'),
+ message: TAPi18n.__('already-voted-detail'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+/**
+* @summary couldn't find web3 wallet
+*/
+const _noWallet = () => {
+ // no wallet
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('no-wallet'),
+ message: TAPi18n.__('no-wallet-message'),
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ },
+ );
+};
+
+/**
+* @summary prompt a message of an error with the wallet
+* @param {object} error with code and message
+*/
+const _walletError = (err) => {
+ let message;
+ switch (err.code) {
+ case -32602:
+ message = TAPi18n.__('metamask-invalid-argument');
+ break;
+ case -32603:
+ message = TAPi18n.__('metamask-invalid-address');
+ break;
+ case 4001:
+ message = TAPi18n.__('metamask-denied-signature');
+ break;
+ default:
+ if (err.message.slice(0, 66) === 'WalletMiddleware - Invalid "from" address.\n{\n "originalError": {}') {
+ message = TAPi18n.__('metamask-invalid-address');
+ } else {
+ message = err.message;
+ }
+ }
+ displayModal(
+ true,
+ {
+ icon: Meteor.settings.public.app.logo,
+ title: TAPi18n.__('wallet'),
+ message,
+ cancel: TAPi18n.__('close'),
+ alertMode: true,
+ }
+ );
+};
+
+export const walletError = _walletError;
+export const noWallet = _noWallet;
+export const alreadyVoted = _alreadyVoted;
+export const pollClosed = _pollClosed;
+export const notLogged = _notLogged;
+export const notSynced = _notSynced;
+export const notMember = _notMember;
diff --git a/imports/ui/components/Contract/Contract.jsx b/imports/ui/components/Contract/Contract.jsx
new file mode 100644
index 000000000..b48536adf
--- /dev/null
+++ b/imports/ui/components/Contract/Contract.jsx
@@ -0,0 +1,22 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+/**
+* @summary displays the contents of a poll
+*/
+const Contract = (props) => {
+ return (
+
+ {props.children}
+
+ );
+};
+
+Contract.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
+export default Contract;
diff --git a/imports/ui/components/Countdown/Countdown.jsx b/imports/ui/components/Countdown/Countdown.jsx
new file mode 100644
index 000000000..0049e789d
--- /dev/null
+++ b/imports/ui/components/Countdown/Countdown.jsx
@@ -0,0 +1,126 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import { TAPi18n } from 'meteor/tap:i18n';
+
+import { getTemplateImage } from '/imports/ui/templates/layout/templater.js';
+
+/**
+* @summary renders a post in the timeline
+*/
+export default class Countdown extends Component {
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ icon: {
+ vote: '',
+ calendar: '',
+ },
+ beginning: new Date(parseInt(this.props.votingPeriodBegins.toNumber() * 1000, 10)).getTime(),
+ end: new Date(parseInt(this.props.votingPeriodEnds.toNumber() * 1000, 10)).getTime(),
+ graceEnd: new Date(parseInt(this.props.gracePeriodEnds.toNumber() * 1000, 10)).getTime(),
+ };
+ }
+
+ async componentDidMount() {
+ await this.setIcons();
+ }
+
+ async setIcons() {
+ this.setState({
+ icon: {
+ vote: await getTemplateImage('vote-icon-black'),
+ calendar: await getTemplateImage('calendar'),
+ },
+ });
+ }
+
+ getVotersLabel() {
+ const voters = this.props.totalVoters.toNumber();
+ if (voters === 1) {
+ return `${this.props.totalVoters} ${TAPi18n.__('voter').toLowerCase()}`;
+ } else if (voters === 0) {
+ return TAPi18n.__('no-voters');
+ }
+ return `${this.props.totalVoters} ${TAPi18n.__('voters').toLowerCase()}`;
+ }
+
+ getPollLabel() {
+ let delta;
+ let label;
+ if (this.props.now > this.state.graceEnd) {
+ delta = parseInt(this.props.now - this.state.end, 10);
+ label = 'poll-ended-days-ago';
+ } else if (this.props.now > this.state.end) {
+ delta = parseInt(this.state.graceEnd - this.props.now, 10);
+ label = 'countdown-grace';
+ } else if (this.props.now > this.state.beginning) {
+ delta = parseInt(this.state.end - this.props.now, 10);
+ label = 'countdown-expiration';
+ } else {
+ delta = parseInt(this.state.beginning - this.props.now, 10);
+ label = 'countdown-queue';
+ }
+
+ const days = Math.floor(delta / 1000 / 86400);
+ const hours = Math.floor(delta / 1000 / 3600) % 24;
+ return TAPi18n.__(label)
+ .replace('{{days}}', `${days} ${days > 1 ? TAPi18n.__('days-compressed') : TAPi18n.__('days-singular')}`)
+ .replace('{{hours}}', `${hours} ${hours > 1 ? TAPi18n.__('hours-compressed') : TAPi18n.__('hours-singular')}`);
+ }
+
+ getWidth() {
+ let electionLength;
+ let electionNow;
+
+ if (this.props.now > this.state.graceEnd) {
+ return '0%';
+ } else if (this.props.now > this.state.end) {
+ electionLength = parseInt(this.state.graceEnd - this.state.end, 10);
+ electionNow = parseInt(this.props.now - this.state.end, 10);
+ } else if (this.props.now > this.state.beginning) {
+ electionLength = parseInt(this.state.end - this.state.beginning, 10);
+ electionNow = parseInt(this.props.now - this.state.beginning, 10);
+ } else {
+ return '0%';
+ }
+ const percentage = parseInt((electionNow * 100) / electionLength, 10);
+ return `${percentage}%`;
+ }
+
+ getStyle() {
+ let colorClass;
+ if ((this.props.now > this.state.end) && (this.props.now <= this.state.graceEnd)) {
+ colorClass = 'countdown-timer-grace';
+ } else if ((this.props.now > this.state.beginning) && (this.props.now <= this.state.end)) {
+ colorClass = 'countdown-timer-voting';
+ } else if (this.props.now < this.state.beginning) {
+ colorClass = 'countdown-timer-queue';
+ }
+ return `countdown-timer ${colorClass}`;
+ }
+
+ render() {
+ return (
+
+
+
{this.getVotersLabel()}
+
+
+
{this.getPollLabel()}
+
+
+
+ );
+ }
+}
+
+Countdown.propTypes = {
+ now: PropTypes.number,
+ totalVoters: PropTypes.string,
+ votingPeriodBegins: PropTypes.string,
+ votingPeriodEnds: PropTypes.string,
+ gracePeriodEnds: PropTypes.string,
+};
diff --git a/imports/ui/components/DAO/DAO.jsx b/imports/ui/components/DAO/DAO.jsx
new file mode 100644
index 000000000..d80e816ba
--- /dev/null
+++ b/imports/ui/components/DAO/DAO.jsx
@@ -0,0 +1,96 @@
+import { Meteor } from 'meteor/meteor';
+import React from 'react';
+import PropTypes from 'prop-types';
+
+import ApolloClient, { gql, InMemoryCache } from 'apollo-boost';
+import { ApolloProvider } from 'react-apollo';
+import { useQuery } from '@apollo/react-hooks';
+
+import { shortenCryptoName } from '/imports/startup/both/modules/metamask';
+
+
+const client = new ApolloClient({
+ uri: Meteor.settings.public.graph.molochs,
+ cache: new InMemoryCache(),
+});
+
+export const GET_DAO = `
+{
+ moloches(first: 1000) {
+ id
+ title
+ version
+ }
+}
+`;
+
+const makeBlockie = require('ethereum-blockies-base64');
+
+/**
+* @summary renders a post in the timeline
+*/
+const DAOQuery = ({ publicAddress, width, height }) => {
+ const { loading, error, data } = useQuery(gql(GET_DAO.replace('{{molochAddress}}', publicAddress)));
+
+ const image = makeBlockie(publicAddress);
+ const url = `/dao/${publicAddress}`;
+ const finalWidth = width || '24px';
+ const finalHeight = height || '24px';
+
+ if (loading) {
+ return (
+
+
+
+
+
+
+ );
+ }
+ if (error) return `Error! ${error}`;
+
+ const daoTitle = _.findWhere(data.moloches, { id: publicAddress }).title;
+ let label;
+ if (!daoTitle) {
+ label = shortenCryptoName(publicAddress);
+ } else {
+ label = daoTitle;
+ }
+
+ return (
+
+
+
+
+
+
+ );
+};
+
+DAOQuery.propTypes = {
+ publicAddress: PropTypes.string,
+ width: PropTypes.string,
+ height: PropTypes.string,
+};
+
+
+/**
+* @summary renders a post in the timeline
+*/
+const DAO = (props) => {
+ return (
+
+
+
+ );
+};
+
+DAO.propTypes = DAOQuery.propTypes;
+
+export default DAO;
diff --git a/imports/ui/components/DAO/queries.js b/imports/ui/components/DAO/queries.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/imports/ui/components/Parameter/Parameter.jsx b/imports/ui/components/Parameter/Parameter.jsx
new file mode 100644
index 000000000..df22962d5
--- /dev/null
+++ b/imports/ui/components/Parameter/Parameter.jsx
@@ -0,0 +1,42 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+
+/**
+* @summary displays the timestamp of a given post or event
+*/
+export default class Parameter extends Component {
+ childrenRender() {
+ switch (this.props.children.type.name) {
+ case 'Token':
+ return (
+
+ {this.props.children}
+
+ );
+ default:
+ }
+ return this.props.children;
+ }
+
+ render() {
+ return (
+
+
+ {this.props.label}
+
+
+ {this.childrenRender()}
+
+
+ );
+ }
+}
+
+Parameter.propTypes = {
+ label: PropTypes.string,
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
diff --git a/imports/ui/components/Period/Period.jsx b/imports/ui/components/Period/Period.jsx
new file mode 100644
index 000000000..1543f851d
--- /dev/null
+++ b/imports/ui/components/Period/Period.jsx
@@ -0,0 +1,60 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import { TAPi18n } from 'meteor/tap:i18n';
+
+/**
+* @summary renders a post in the timeline
+*/
+export default class Period extends Component {
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ beginning: new Date(parseInt(this.props.votingPeriodBegins.toNumber() * 1000, 10)).getTime(),
+ end: new Date(parseInt(this.props.votingPeriodEnds.toNumber() * 1000, 10)).getTime(),
+ graceEnd: new Date(parseInt(this.props.gracePeriodEnds.toNumber() * 1000, 10)).getTime(),
+ };
+ }
+
+ getStyle() {
+ if (this.props.now > this.state.graceEnd) {
+ return `warning period period-${this.props.status.toLowerCase()}`;
+ } else if (this.props.now > this.state.end) {
+ return 'warning period period-grace';
+ } else if (this.props.now > this.state.beginning) {
+ return 'warning period period-voting';
+ }
+ return 'warning period period-queue';
+ }
+
+ getLabel() {
+ if (this.props.now > this.state.graceEnd) {
+ return TAPi18n.__(`moloch-period-${this.props.status.toLowerCase()}`);
+ } else if (this.props.now > this.state.end) {
+ return TAPi18n.__('moloch-period-grace');
+ } else if (this.props.now > this.state.beginning) {
+ return TAPi18n.__('moloch-period-voting');
+ }
+ return TAPi18n.__('moloch-period-queue');
+ }
+
+ render() {
+ return (
+
+
+
+ {this.getLabel()}
+
+
+
+ );
+ }
+}
+
+Period.propTypes = {
+ now: PropTypes.number,
+ votingPeriodBegins: PropTypes.string,
+ votingPeriodEnds: PropTypes.string,
+ gracePeriodEnds: PropTypes.string,
+ status: PropTypes.string,
+};
diff --git a/imports/ui/components/Poll/Poll.jsx b/imports/ui/components/Poll/Poll.jsx
new file mode 100644
index 000000000..223abcec2
--- /dev/null
+++ b/imports/ui/components/Poll/Poll.jsx
@@ -0,0 +1,24 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+/**
+* @summary displays the contents of a poll
+*/
+const Poll = (props) => {
+ return (
+
+ );
+};
+
+Poll.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
+export default Poll;
diff --git a/imports/ui/components/Poll/Survey.jsx b/imports/ui/components/Poll/Survey.jsx
new file mode 100644
index 000000000..0e56f9773
--- /dev/null
+++ b/imports/ui/components/Poll/Survey.jsx
@@ -0,0 +1,22 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+/**
+* @summary displays the contents of a poll
+*/
+const Survey = (props) => {
+ return (
+
+ {props.children}
+
+ );
+};
+
+Survey.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
+export default Survey;
diff --git a/imports/ui/components/Post/Post.jsx b/imports/ui/components/Post/Post.jsx
new file mode 100644
index 000000000..2286a9e22
--- /dev/null
+++ b/imports/ui/components/Post/Post.jsx
@@ -0,0 +1,110 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import parser from 'html-react-parser';
+
+import { wrapURLs } from '/lib/utils';
+
+import Account from '/imports/ui/components/Account/Account.jsx';
+import DAO from '/imports/ui/components/DAO/DAO.jsx';
+
+/**
+* @summary quick function to determine if a string is a JSON
+* @param {string} str ing
+*/
+const _isJSON = (str) => {
+ try {
+ JSON.parse(str);
+ } catch (e) {
+ return false;
+ }
+ return true;
+};
+
+/**
+* @summary given the json content of a proposal return the description text
+* @param {string} description with probable json information
+* @return {string} content
+*/
+const _getDescription = (description) => {
+ // content formatting
+ let content;
+ if (_isJSON(description)) {
+ const json = JSON.parse(description);
+
+ content = {
+ title: json.title ? json.title : json,
+ description: json.description ? wrapURLs(json.description) : '',
+ link: (typeof json.link === 'function' || !json.link) ? '' : json.link,
+ };
+ } else {
+ content = {
+ title: wrapURLs(description),
+ description: null,
+ link: null,
+ };
+ }
+ return content;
+};
+
+/**
+* @summary renders a post in the timeline
+*/
+export default class Post extends Component {
+ constructor(props) {
+ super(props);
+ this.state = _getDescription(this.props.description);
+ }
+
+ render() {
+ return (
+
+
+
+
+
+
+
+ {typeof this.state.title === 'string' ? parser(this.state.title) : this.state.title}
+
+ {
+ (this.state.description) ?
+
+ {typeof this.state.description === 'string' ? parser(this.state.description) : this.state.description}
+
+ :
+ null
+ }
+ {
+ (this.state.link) ?
+
+ :
+ null
+ }
+
+
+
+ {this.props.children}
+
+
+ );
+ }
+}
+
+Post.propTypes = {
+ description: PropTypes.string,
+ proposalIndex: PropTypes.string,
+ daoName: PropTypes.string,
+ daoAddress: PropTypes.string,
+ memberAddress: PropTypes.string,
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
+export const getDescription = _getDescription;
diff --git a/imports/ui/components/Social/Social.jsx b/imports/ui/components/Social/Social.jsx
new file mode 100644
index 000000000..3cfa451b8
--- /dev/null
+++ b/imports/ui/components/Social/Social.jsx
@@ -0,0 +1,53 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import { TAPi18n } from 'meteor/tap:i18n';
+
+import { getTemplateImage } from '/imports/ui/templates/layout/templater.js';
+import { getDescription } from '/imports/ui/components/Post/Post.jsx';
+
+/**
+* @summary displays the contents of a poll
+*/
+export default class Social extends Component {
+ constructor(props) {
+ super(props);
+
+ this.state = {
+ tweetIcon: '',
+ tweetLink: `https://twitter.com/share?url=${escape(window.location.origin)}${escape(props.url)}&text=${escape(getDescription(props.description).title)}`,
+ };
+ }
+
+ async componentDidMount() {
+ await this.setIcons();
+ }
+
+ async setIcons() {
+ this.setState({
+ tweetIcon: await getTemplateImage('tweet'),
+ });
+ }
+
+ render() {
+ return (
+
+
+ {this.props.children}
+
+ );
+ }
+};
+
+Social.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+ url: PropTypes.string,
+ description: PropTypes.string,
+};
diff --git a/imports/ui/components/Stamp/Stamp.jsx b/imports/ui/components/Stamp/Stamp.jsx
new file mode 100644
index 000000000..e250c624e
--- /dev/null
+++ b/imports/ui/components/Stamp/Stamp.jsx
@@ -0,0 +1,44 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import parser from 'html-react-parser';
+
+import { createDateQuery } from '/imports/ui/templates/widgets/transaction/transaction';
+import { timeComplete } from '/imports/ui/modules/chronos';
+
+const _dateURL = (timestamp) => {
+ const from = new Date(parseInt(timestamp.toNumber() * 1000, 10));
+ const fromQuery = createDateQuery(from);
+ const until = new Date(parseInt((timestamp.toNumber() * 1000) + (60 * 60 * 24 * 1000), 10));
+ const untilQuery = createDateQuery(until);
+ return `/date?from=${fromQuery}&until=${untilQuery}`;
+};
+
+/**
+* @summary displays the timestamp of a given post or event
+*/
+export default class Stamp extends Component {
+ constructor(props) {
+ super(props);
+
+ const date = new Date(parseInt(this.props.timestamp.toNumber() * 1000, 10));
+
+ this.state = {
+ url: _dateURL(this.props.timestamp),
+ label: timeComplete(date),
+ };
+ }
+
+ render() {
+ return (
+
+ );
+ }
+}
+
+Stamp.propTypes = {
+ timestamp: PropTypes.string,
+};
diff --git a/imports/ui/components/Timeline/Placeholder.jsx b/imports/ui/components/Timeline/Placeholder.jsx
new file mode 100644
index 000000000..c78ae6125
--- /dev/null
+++ b/imports/ui/components/Timeline/Placeholder.jsx
@@ -0,0 +1,48 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+
+/**
+* @summary displays the contents of a poll
+*/
+const Placeholder = () => {
+ return (
+
+ );
+};
+
+Placeholder.propTypes = {
+ children: PropTypes.oneOfType([
+ PropTypes.arrayOf(PropTypes.node),
+ PropTypes.node,
+ ]),
+};
+
+export default Placeholder;
diff --git a/imports/ui/components/Timeline/Timeline.jsx b/imports/ui/components/Timeline/Timeline.jsx
new file mode 100644
index 000000000..c7ceeeaff
--- /dev/null
+++ b/imports/ui/components/Timeline/Timeline.jsx
@@ -0,0 +1,132 @@
+import { Meteor } from 'meteor/meteor';
+import React from 'react';
+import ApolloClient, { InMemoryCache } from 'apollo-boost';
+import { ApolloProvider, Query } from 'react-apollo';
+import { TAPi18n } from 'meteor/tap:i18n';
+import PropTypes from 'prop-types';
+
+import Account from '/imports/ui/components/Account/Account.jsx';
+import Post from '/imports/ui/components/Post/Post.jsx';
+import Stamp from '/imports/ui/components/Stamp/Stamp.jsx';
+import Parameter from '/imports/ui/components/Parameter/Parameter.jsx';
+import Token from '/imports/ui/components/Token/Token.jsx';
+import Countdown from '/imports/ui/components/Countdown/Countdown.jsx';
+import Poll from '/imports/ui/components/Poll/Poll.jsx';
+import Choice from '/imports/ui/components/Choice/Choice.jsx';
+import Period from '/imports/ui/components/Period/Period.jsx';
+import Contract from '/imports/ui/components/Contract/Contract.jsx';
+import Placeholder from '/imports/ui/components/Timeline/Placeholder.jsx';
+import Survey from '/imports/ui/components/Poll/Survey';
+import Social from '/imports/ui/components/Social/Social';
+
+import { defaults } from '/lib/const';
+import { MOLOCHS } from '/imports/ui/components/Timeline/queries';
+
+const client = new ApolloClient({
+ uri: Meteor.settings.public.graph.molochs,
+ cache: new InMemoryCache(),
+});
+
+const _getPercentage = (percentageAmount, remainder) => {
+ return parseFloat((percentageAmount * 100) / (percentageAmount + remainder), 10);
+};
+
+const Feed = (props) => {
+ return (
+
+ {({ loading, error, data }) => {
+ if (loading) return ;
+ if (error) return Error!
;
+
+ console.log(data.proposals);
+
+ const accountAddress = Meteor.user() ? Meteor.user().username : null;
+ const daoName = 'MolochDAO';
+ const timestamp = new Date().getTime();
+
+ return data.proposals.map((proposal) => {
+ const totalVoters = parseInt(proposal.yesVotes.toNumber() + proposal.noVotes.toNumber(), 10).toString();
+ const yesPercentage = _getPercentage(proposal.yesShares.toNumber(), proposal.noShares.toNumber()).toString();
+ const noPercentage = _getPercentage(proposal.noShares.toNumber(), proposal.yesShares.toNumber()).toString();
+ const daoAddress = proposal.moloch.id;
+ const status = (proposal.didPass) ? 'PASSED' : 'FAILED';
+ const isPoll = (proposal.startingPeriod !== '0');
+ const url = `/proposal/${proposal.id}`;
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ {(isPoll) ?
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+ null
+ }
+
+
+
+
+ );
+ });
+ }}
+
+ );
+};
+
+Feed.propTypes = {
+ query: PropTypes.instanceOf(Object),
+};
+
+const Timeline = () => {
+ return (
+
+
+
+ );
+};
+
+export default Timeline;
diff --git a/imports/ui/components/Timeline/queries.js b/imports/ui/components/Timeline/queries.js
new file mode 100644
index 000000000..58d6d3dea
--- /dev/null
+++ b/imports/ui/components/Timeline/queries.js
@@ -0,0 +1,63 @@
+import { gql } from 'apollo-boost';
+
+export const MOLOCH_DAO = gql`
+{
+ proposals(first: 25) {
+ id
+ timestamp
+ proposalIndex
+ startingPeriod
+ member {
+ id
+ }
+ memberAddress
+ applicant {
+ applicantAddress
+ }
+ tokenTribute
+ sharesRequested
+ yesVotes
+ noVotes
+ yesShares
+ noShares
+ details
+ processed
+ status
+ votingPeriodBegins
+ votingPeriodEnds
+ gracePeriodEnds
+ }
+}
+`;
+
+export const MOLOCHS = gql`
+{
+ proposals(first: 50, orderBy:createdAt, orderDirection:desc) {
+ id
+ proposalId
+ createdAt
+ proposalIndex
+ startingPeriod
+ moloch {
+ id
+ }
+ memberAddress
+ applicant
+ tributeOffered
+ tributeToken
+ tributeTokenSymbol
+ tributeTokenDecimals
+ sharesRequested
+ yesVotes
+ noVotes
+ yesShares
+ noShares
+ details
+ processed
+ votingPeriodStarts
+ votingPeriodEnds
+ gracePeriodEnds
+ }
+}
+`;
+
diff --git a/imports/ui/components/Timeline/timeline.html b/imports/ui/components/Timeline/timeline.html
new file mode 100644
index 000000000..2a9f33df3
--- /dev/null
+++ b/imports/ui/components/Timeline/timeline.html
@@ -0,0 +1,5 @@
+
+
+ {{> React component=Timeline}}
+
+
\ No newline at end of file
diff --git a/imports/ui/components/Timeline/timeline.js b/imports/ui/components/Timeline/timeline.js
new file mode 100644
index 000000000..a0910896a
--- /dev/null
+++ b/imports/ui/components/Timeline/timeline.js
@@ -0,0 +1,11 @@
+import { Template } from 'meteor/templating';
+
+import Timeline from '/imports/ui/components/Timeline/Timeline.jsx';
+
+import '/imports/ui/components/Timeline/timeline.html';
+
+Template.timeline.helpers({
+ Timeline() {
+ return Timeline;
+ },
+});
diff --git a/imports/ui/components/Token/Token.jsx b/imports/ui/components/Token/Token.jsx
new file mode 100644
index 000000000..a42eef7af
--- /dev/null
+++ b/imports/ui/components/Token/Token.jsx
@@ -0,0 +1,115 @@
+import { Meteor } from 'meteor/meteor';
+import React from 'react';
+
+import ApolloClient, { gql, InMemoryCache } from 'apollo-boost';
+import { ApolloProvider } from 'react-apollo';
+import { useQuery } from '@apollo/react-hooks';
+
+import { BigNumber } from 'bignumber.js';
+import PropTypes from 'prop-types';
+import coinPalette from '/imports/ui/components/Token/palette.js';
+
+const numeral = require('numeral');
+
+const client = new ApolloClient({
+ uri: Meteor.settings.public.graph.tokens,
+ cache: new InMemoryCache(),
+});
+
+const GET_TOKEN = gql`
+ query getTokens($pageSize: Int = 100) {
+ tokens(first: $pageSize) {
+ address
+ name
+ symbol
+ decimals
+ }
+ }
+`;
+
+/**
+* @summary assigns a color based on token address
+* @param {string} publicAddress to search for token
+* @return {string} with css value
+*/
+const _getColor = (publicAddress) => {
+ const coin = _.findWhere(coinPalette, { publicAddress });
+ if (coin) {
+ return coin.color;
+ }
+ return 'auto';
+};
+
+/**
+* @summary generates a readable number
+* @param {string} value with quantity to format
+* @param {object} token with settings from graph
+* @param {number} decimals with after comma numerals
+* @return {string} formatted number
+*/
+const _getRenderNumber = (value, token, decimals) => {
+ let zeroes = decimals;
+ if (!decimals) {
+ zeroes = 0;
+ }
+ return numeral(new BigNumber(value).dividedBy(Math.pow(10, zeroes.toNumber())).toNumber()).format(token.format);
+};
+
+/**
+* @summary graph query of token
+* @param {string} publicAddress of the token contract
+* @param {string} quantity with a big number
+* @param {string} symbol with a ticker
+* @param {string} decimal numbers this token takes
+*/
+const TokenQuery = ({ publicAddress, quantity, symbol, decimals }) => {
+ const { loading, error, data } = useQuery(GET_TOKEN);
+
+ if (loading) return null;
+ if (error) return `Error! ${error}`;
+
+ let token = _.findWhere(data.tokens, { symbol });
+ if (!token) {
+ token = _.findWhere(coinPalette, { symbol });
+ }
+ if (!token) {
+ token = _.findWhere(coinPalette, { default: true });
+ }
+
+ const finalValue = _getRenderNumber(quantity, token, decimals);
+
+ return (
+
+ );
+};
+
+TokenQuery.propTypes = {
+ quantity: PropTypes.string,
+ publicAddress: PropTypes.string,
+ symbol: PropTypes.string,
+ decimals: PropTypes.string,
+};
+
+/**
+* @summary renders a post in the timeline
+*/
+const Token = (props) => {
+ return (
+
+
+
+ );
+};
+
+Token.propTypes = TokenQuery.propTypes;
+
+export default Token;
diff --git a/imports/ui/components/Token/palette.js b/imports/ui/components/Token/palette.js
new file mode 100644
index 000000000..3a09032ca
--- /dev/null
+++ b/imports/ui/components/Token/palette.js
@@ -0,0 +1,66 @@
+const coinPalette = [
+ {
+ symbol: 'DAI',
+ format: '0,0.00',
+ color: '#faa700',
+ publicAddress: '0x6b175474e89094c44da98b954eedeac495271d0f',
+ },
+ {
+ symbol: 'SAI',
+ format: '0,0.00',
+ color: '#faa700',
+ publicAddress: '0x89d24a6b4ccb1b6faa2625fe562bdd9a23260359',
+ },
+ {
+ symbol: 'HOUR',
+ format: '0,0',
+ color: '#580074',
+ publicAddress: '0x00319f722bd546182cb2c701ca254146d3f084fc',
+ },
+ {
+ symbol: 'ETH',
+ format: '0,0.0000a',
+ color: '#ff5373',
+ publicAddress: '0x0',
+ default: true,
+ },
+ {
+ symbol: 'MANA',
+ format: '0,0.0a',
+ color: '#ff5373',
+ publicAddress: '0x0f5d2fb29fb7d3cfee444a200298f468908cc942',
+ },
+ {
+ symbol: 'MKR',
+ format: '0,0.00a',
+ color: '#00b795',
+ publicAddress: '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2',
+ },
+ {
+ symbol: 'LAND',
+ format: '0,0a',
+ color: '#f04',
+ publicAddress: '0xf87e31492faf9a91b02ee0deaad50d51d56d5d4d',
+ },
+ {
+ symbol: 'WETH',
+ format: '0,0.00',
+ color: '#7885cb',
+ publicAddress: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',
+ },
+ {
+ symbol: 'SHARES',
+ format: '0,0',
+ color: '#580173',
+ decimals: 0,
+ publicAddress: '0x1fd169a4f5c59acf79d0fd5d91d1201ef1bce9f1',
+ },
+ {
+ code: 'USD',
+ format: '0,0.00',
+ color: '#6d943a',
+ publicAddress: '0x79febf6b9f76853edbcbc913e6aae8232cfb9de9',
+ },
+];
+
+export default coinPalette;
diff --git a/imports/ui/modules/abi.js b/imports/ui/modules/abi.js
new file mode 100644
index 000000000..bf02178c2
--- /dev/null
+++ b/imports/ui/modules/abi.js
@@ -0,0 +1,684 @@
+export const molochABI = [
+ {
+ constant: true,
+ inputs: [],
+ name: 'processingReward',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ ],
+ name: 'getMemberProposalVote',
+ outputs: [
+ {
+ name: '',
+ type: 'uint8',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'getCurrentPeriod',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: '',
+ type: 'address',
+ },
+ ],
+ name: 'members',
+ outputs: [
+ {
+ name: 'delegateKey',
+ type: 'address',
+ },
+ {
+ name: 'shares',
+ type: 'uint256',
+ },
+ {
+ name: 'exists',
+ type: 'bool',
+ },
+ {
+ name: 'highestIndexYesVote',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'totalSharesRequested',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'newDelegateKey',
+ type: 'address',
+ },
+ ],
+ name: 'updateDelegateKey',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'totalShares',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ name: 'proposalQueue',
+ outputs: [
+ {
+ name: 'proposer',
+ type: 'address',
+ },
+ {
+ name: 'applicant',
+ type: 'address',
+ },
+ {
+ name: 'sharesRequested',
+ type: 'uint256',
+ },
+ {
+ name: 'startingPeriod',
+ type: 'uint256',
+ },
+ {
+ name: 'yesVotes',
+ type: 'uint256',
+ },
+ {
+ name: 'noVotes',
+ type: 'uint256',
+ },
+ {
+ name: 'processed',
+ type: 'bool',
+ },
+ {
+ name: 'didPass',
+ type: 'bool',
+ },
+ {
+ name: 'aborted',
+ type: 'bool',
+ },
+ {
+ name: 'tokenTribute',
+ type: 'uint256',
+ },
+ {
+ name: 'details',
+ type: 'string',
+ },
+ {
+ name: 'maxTotalSharesAtYesVote',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: '',
+ type: 'address',
+ },
+ ],
+ name: 'memberAddressByDelegateKey',
+ outputs: [
+ {
+ name: '',
+ type: 'address',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'gracePeriodLength',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'abortWindow',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'getProposalQueueLength',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'summoningTime',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'votingPeriodLength',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'sharesToBurn',
+ type: 'uint256',
+ },
+ ],
+ name: 'ragequit',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'proposalDeposit',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: 'startingPeriod',
+ type: 'uint256',
+ },
+ ],
+ name: 'hasVotingPeriodExpired',
+ outputs: [
+ {
+ name: '',
+ type: 'bool',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'applicant',
+ type: 'address',
+ },
+ {
+ name: 'tokenTribute',
+ type: 'uint256',
+ },
+ {
+ name: 'sharesRequested',
+ type: 'uint256',
+ },
+ {
+ name: 'details',
+ type: 'string',
+ },
+ ],
+ name: 'submitProposal',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ {
+ name: 'uintVote',
+ type: 'uint8',
+ },
+ ],
+ name: 'submitVote',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [
+ {
+ name: 'highestIndexYesVote',
+ type: 'uint256',
+ },
+ ],
+ name: 'canRagequit',
+ outputs: [
+ {
+ name: '',
+ type: 'bool',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'guildBank',
+ outputs: [
+ {
+ name: '',
+ type: 'address',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'dilutionBound',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'periodDuration',
+ outputs: [
+ {
+ name: '',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: true,
+ inputs: [],
+ name: 'approvedToken',
+ outputs: [
+ {
+ name: '',
+ type: 'address',
+ },
+ ],
+ payable: false,
+ stateMutability: 'view',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ ],
+ name: 'abort',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ constant: false,
+ inputs: [
+ {
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ ],
+ name: 'processProposal',
+ outputs: [],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'function',
+ },
+ {
+ inputs: [
+ {
+ name: 'summoner',
+ type: 'address',
+ },
+ {
+ name: '_approvedToken',
+ type: 'address',
+ },
+ {
+ name: '_periodDuration',
+ type: 'uint256',
+ },
+ {
+ name: '_votingPeriodLength',
+ type: 'uint256',
+ },
+ {
+ name: '_gracePeriodLength',
+ type: 'uint256',
+ },
+ {
+ name: '_abortWindow',
+ type: 'uint256',
+ },
+ {
+ name: '_proposalDeposit',
+ type: 'uint256',
+ },
+ {
+ name: '_dilutionBound',
+ type: 'uint256',
+ },
+ {
+ name: '_processingReward',
+ type: 'uint256',
+ },
+ ],
+ payable: false,
+ stateMutability: 'nonpayable',
+ type: 'constructor',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: false,
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ {
+ indexed: true,
+ name: 'delegateKey',
+ type: 'address',
+ },
+ {
+ indexed: true,
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ indexed: true,
+ name: 'applicant',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'tokenTribute',
+ type: 'uint256',
+ },
+ {
+ indexed: false,
+ name: 'sharesRequested',
+ type: 'uint256',
+ },
+ ],
+ name: 'SubmitProposal',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ {
+ indexed: true,
+ name: 'delegateKey',
+ type: 'address',
+ },
+ {
+ indexed: true,
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'uintVote',
+ type: 'uint8',
+ },
+ ],
+ name: 'SubmitVote',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ {
+ indexed: true,
+ name: 'applicant',
+ type: 'address',
+ },
+ {
+ indexed: true,
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'tokenTribute',
+ type: 'uint256',
+ },
+ {
+ indexed: false,
+ name: 'sharesRequested',
+ type: 'uint256',
+ },
+ {
+ indexed: false,
+ name: 'didPass',
+ type: 'bool',
+ },
+ ],
+ name: 'ProcessProposal',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'sharesToBurn',
+ type: 'uint256',
+ },
+ ],
+ name: 'Ragequit',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'proposalIndex',
+ type: 'uint256',
+ },
+ {
+ indexed: false,
+ name: 'applicantAddress',
+ type: 'address',
+ },
+ ],
+ name: 'Abort',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'memberAddress',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'newDelegateKey',
+ type: 'address',
+ },
+ ],
+ name: 'UpdateDelegateKey',
+ type: 'event',
+ },
+ {
+ anonymous: false,
+ inputs: [
+ {
+ indexed: true,
+ name: 'summoner',
+ type: 'address',
+ },
+ {
+ indexed: false,
+ name: 'shares',
+ type: 'uint256',
+ },
+ ],
+ name: 'SummonComplete',
+ type: 'event',
+ },
+];
diff --git a/imports/ui/templates/layout/templater.js b/imports/ui/templates/layout/templater.js
index bc5036eb4..b72ac9491 100644
--- a/imports/ui/templates/layout/templater.js
+++ b/imports/ui/templates/layout/templater.js
@@ -26,7 +26,7 @@ const _getImageTemplate = async () => {
* @summary gets image but for react calls
* @param {string} pic to use
*/
-const _getReactImage = async (pic) => {
+const _getTemplateImage = async (pic) => {
const template = await promise;
return template.images[pic];
};
@@ -83,6 +83,6 @@ export const getCSS = _getStyles;
export const getTemplate = _getTemplate;
export const getImageTemplate = _getImageTemplate;
export const getImage = _getImage;
-export const getReactImage = _getReactImage;
+export const getTemplateImage = _getTemplateImage;
export const getSpinner = _getSpinner;
export const templetize = _templetize;
diff --git a/imports/ui/templates/layout/url/home/home.html b/imports/ui/templates/layout/url/home/home.html
index 5044df2fe..040e5dc4c 100644
--- a/imports/ui/templates/layout/url/home/home.html
+++ b/imports/ui/templates/layout/url/home/home.html
@@ -69,7 +69,8 @@
{{#unless isPhone}}
{{{feedTitle}}}
{{/unless}}
- {{> feed mainFeed}}
+
+ {{> timeline}}
{{else}}
{{> load}}
{{/if}}
diff --git a/imports/ui/templates/layout/url/home/home.js b/imports/ui/templates/layout/url/home/home.js
index 84d5703d0..f318379c3 100644
--- a/imports/ui/templates/layout/url/home/home.js
+++ b/imports/ui/templates/layout/url/home/home.js
@@ -14,6 +14,7 @@ import { shortenCryptoName } from '/imports/startup/both/modules/metamask';
import { getCoin } from '/imports/api/blockchain/modules/web3Util.js';
import { Tokens } from '/imports/api/tokens/tokens';
+import '/imports/ui/components/Timeline/timeline.js';
import '/imports/ui/templates/components/identity/replica/replica.js';
import '/imports/ui/templates/layout/url/home/home.html';
import '/imports/ui/templates/components/collective/guild/guild.js';
diff --git a/lib/utils.js b/lib/utils.js
index 81cdfd7b6..4caa5172c 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -141,8 +141,11 @@ const _displayTimedWarning = (warning, val) => {
* @summary checks if a string is a valid URL
*/
const _isValidUrl = (string) => {
- const res = string.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);
- return (res !== null);
+ if (string !== undefined) {
+ const res = string.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);
+ return (res !== null);
+ }
+ return false;
};
/**
diff --git a/lib/web3.js b/lib/web3.js
index ffe1c9456..5592bb531 100644
--- a/lib/web3.js
+++ b/lib/web3.js
@@ -1051,7 +1051,9 @@ const _getState = async (smartContract, collectiveId) => {
if (err) {
log(err);
}
- log(`[web3] Got struct proposal titled: "${res.details.replace('"', '\\"').substring(0, 20)}..."`);
+ if (res.details) {
+ log(`[web3] Got struct proposal titled: "${res.details.replace('"', '\\"').substring(0, 20)}..."`);
+ }
struct.push(res);
return res;
});
diff --git a/package-lock.json b/package-lock.json
index b5c5c63d6..b252ec51e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -3,6 +3,126 @@
"requires": true,
"lockfileVersion": 1,
"dependencies": {
+ "@apollo/react-common": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/@apollo/react-common/-/react-common-3.1.4.tgz",
+ "integrity": "sha512-X5Kyro73bthWSCBJUC5XYQqMnG0dLWuDZmVkzog9dynovhfiVCV4kPSdgSIkqnb++cwCzOVuQ4rDKVwo2XRzQA==",
+ "requires": {
+ "ts-invariant": "^0.4.4",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "@apollo/react-components": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@apollo/react-components/-/react-components-3.1.5.tgz",
+ "integrity": "sha512-c82VyUuE9VBnJB7bnX+3dmwpIPMhyjMwyoSLyQWPHxz8jK4ak30XszJtqFf4eC4hwvvLYa+Ou6X73Q8V8e2/jg==",
+ "requires": {
+ "@apollo/react-common": "^3.1.4",
+ "@apollo/react-hooks": "^3.1.5",
+ "prop-types": "^15.7.2",
+ "ts-invariant": "^0.4.4",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "@apollo/react-hoc": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@apollo/react-hoc/-/react-hoc-3.1.5.tgz",
+ "integrity": "sha512-jlZ2pvEnRevLa54H563BU0/xrYSgWQ72GksarxUzCHQW85nmn9wQln0kLBX7Ua7SBt9WgiuYQXQVechaaCulfQ==",
+ "requires": {
+ "@apollo/react-common": "^3.1.4",
+ "@apollo/react-components": "^3.1.5",
+ "hoist-non-react-statics": "^3.3.0",
+ "ts-invariant": "^0.4.4",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "hoist-non-react-statics": {
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
+ "requires": {
+ "react-is": "^16.7.0"
+ }
+ },
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "@apollo/react-hooks": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@apollo/react-hooks/-/react-hooks-3.1.5.tgz",
+ "integrity": "sha512-y0CJ393DLxIIkksRup4nt+vSjxalbZBXnnXxYbviq/woj+zKa431zy0yT4LqyRKpFy9ahMIwxBnBwfwIoupqLQ==",
+ "requires": {
+ "@apollo/react-common": "^3.1.4",
+ "@wry/equality": "^0.1.9",
+ "ts-invariant": "^0.4.4",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "@apollo/react-ssr": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@apollo/react-ssr/-/react-ssr-3.1.5.tgz",
+ "integrity": "sha512-wuLPkKlctNn3u8EU8rlECyktpOUCeekFfb0KhIKknpGY6Lza2Qu0bThx7D9MIbVEzhKadNNrzLcpk0Y8/5UuWg==",
+ "requires": {
+ "@apollo/react-common": "^3.1.4",
+ "@apollo/react-hooks": "^3.1.5",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "@babel/code-frame": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
+ "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
+ "requires": {
+ "@babel/highlight": "^7.10.4"
+ }
+ },
+ "@babel/helper-validator-identifier": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
+ "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
+ },
+ "@babel/highlight": {
+ "version": "7.10.4",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
+ "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
+ "requires": {
+ "@babel/helper-validator-identifier": "^7.10.4",
+ "chalk": "^2.0.0",
+ "js-tokens": "^4.0.0"
+ }
+ },
"@babel/runtime": {
"version": "7.9.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
@@ -18,6 +138,290 @@
}
}
},
+ "@graphprotocol/graph-cli": {
+ "version": "0.18.0",
+ "resolved": "https://registry.npmjs.org/@graphprotocol/graph-cli/-/graph-cli-0.18.0.tgz",
+ "integrity": "sha512-UsLB2LAwnVfUgkd4D0Rbfqq6ImLlDq9TEL/tBMYmZkB7pgnJZ/gJT5ouC33Gh0yhdXOYqWRk/KUcxSpgsKviPw==",
+ "requires": {
+ "assemblyscript": "git+https://github.com/AssemblyScript/assemblyscript.git#36040d5b5312f19a025782b5e36663823494c2f3",
+ "chalk": "^3.0.0",
+ "chokidar": "^3.0.2",
+ "debug": "^4.1.1",
+ "docker-compose": "^0.23.2",
+ "dockerode": "^2.5.8",
+ "fs-extra": "^8.1.0",
+ "glob": "^7.1.2",
+ "gluegun": "^4.1.2",
+ "graphql": "^14.0.2",
+ "immutable": "^3.8.2",
+ "ipfs-http-client": "^34.0.0",
+ "jayson": "^3.0.2",
+ "js-yaml": "^3.13.1",
+ "keytar": "^5.0.0",
+ "node-fetch": "^2.3.0",
+ "pkginfo": "^0.4.1",
+ "prettier": "^1.13.5",
+ "request": "^2.88.0",
+ "tmp": "^0.1.0",
+ "yaml": "^1.5.1"
+ },
+ "dependencies": {
+ "ajv": {
+ "version": "6.12.3",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz",
+ "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==",
+ "requires": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ }
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "aws4": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
+ "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA=="
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "requires": {
+ "delayed-stream": "~1.0.0"
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
+ },
+ "form-data": {
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
+ "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.6",
+ "mime-types": "^2.1.12"
+ }
+ },
+ "fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "graceful-fs": {
+ "version": "4.2.4",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
+ "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="
+ },
+ "har-validator": {
+ "version": "5.1.3",
+ "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
+ "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
+ "requires": {
+ "ajv": "^6.5.5",
+ "har-schema": "^2.0.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
+ },
+ "jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
+ "requires": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "mime-db": {
+ "version": "1.44.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
+ "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
+ },
+ "mime-types": {
+ "version": "2.1.27",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
+ "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
+ "requires": {
+ "mime-db": "1.44.0"
+ }
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "node-fetch": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz",
+ "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="
+ },
+ "oauth-sign": {
+ "version": "0.9.0",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
+ },
+ "punycode": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
+ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
+ },
+ "qs": {
+ "version": "6.5.2",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
+ "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
+ },
+ "request": {
+ "version": "2.88.2",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
+ "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
+ "requires": {
+ "aws-sign2": "~0.7.0",
+ "aws4": "^1.8.0",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.6",
+ "extend": "~3.0.2",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.3.2",
+ "har-validator": "~5.1.3",
+ "http-signature": "~1.2.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.19",
+ "oauth-sign": "~0.9.0",
+ "performance-now": "^2.1.0",
+ "qs": "~6.5.2",
+ "safe-buffer": "^5.1.2",
+ "tough-cookie": "~2.5.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.3.2"
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "tmp": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz",
+ "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==",
+ "requires": {
+ "rimraf": "^2.6.3"
+ }
+ },
+ "tough-cookie": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
+ "requires": {
+ "psl": "^1.1.28",
+ "punycode": "^2.1.1"
+ }
+ },
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
+ }
+ },
+ "@protobufjs/utf8": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
+ "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA="
+ },
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
@@ -39,6 +443,52 @@
"@types/node": "*"
}
},
+ "@types/color-name": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
+ "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
+ },
+ "@types/connect": {
+ "version": "3.4.33",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.33.tgz",
+ "integrity": "sha512-2+FrkXY4zllzTNfJth7jOqEHC+enpLeGslEhpnTAkg21GkRrWV4SsAtqchtT4YS9/nODBU2/ZfsBY2X4J/dX7A==",
+ "requires": {
+ "@types/node": "*"
+ }
+ },
+ "@types/domhandler": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@types/domhandler/-/domhandler-2.4.1.tgz",
+ "integrity": "sha512-cfBw6q6tT5sa1gSPFSRKzF/xxYrrmeiut7E0TxNBObiLSBTuFEHibcfEe3waQPEDbqBsq+ql/TOniw65EyDFMA=="
+ },
+ "@types/domutils": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/@types/domutils/-/domutils-1.7.2.tgz",
+ "integrity": "sha512-Nnwy1Ztwq42SSNSZSh9EXBJGrOZPR+PQ2sRT4VZy8hnsFXfCil7YlKO2hd2360HyrtFz2qwnKQ13ENrgXNxJbw==",
+ "requires": {
+ "@types/domhandler": "*"
+ }
+ },
+ "@types/express-serve-static-core": {
+ "version": "4.17.8",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.8.tgz",
+ "integrity": "sha512-1SJZ+R3Q/7mLkOD9ewCBDYD2k0WyZQtWYqF/2VvoNN2/uhI49J9CDN4OAm+wGMA0DbArA4ef27xl4+JwMtGggw==",
+ "requires": {
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*"
+ }
+ },
+ "@types/htmlparser2": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@types/htmlparser2/-/htmlparser2-3.10.1.tgz",
+ "integrity": "sha512-fCxmHS4ryCUCfV9+CJZY1UjkbR+6Al/EQdX5Jh03qBj9gdlPG5q+7uNoDgE/ZNXb3XNWSAQgqKIWnbRCbOyyWA==",
+ "requires": {
+ "@types/domhandler": "*",
+ "@types/domutils": "*",
+ "@types/node": "*"
+ }
+ },
"@types/invariant": {
"version": "2.2.31",
"resolved": "https://registry.npmjs.org/@types/invariant/-/invariant-2.2.31.tgz",
@@ -48,14 +498,28 @@
"@types/lodash": {
"version": "4.14.149",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.149.tgz",
- "integrity": "sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ==",
- "dev": true
+ "integrity": "sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ=="
},
"@types/node": {
"version": "12.12.26",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.26.tgz",
"integrity": "sha512-UmUm94/QZvU5xLcUlNR8hA7Ac+fGpO1EG/a8bcWVz0P0LqtxFmun9Y2bbtuckwGboWJIT70DoWq1r3hb56n3DA=="
},
+ "@types/parse-json": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
+ "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
+ },
+ "@types/qs": {
+ "version": "6.9.3",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.3.tgz",
+ "integrity": "sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA=="
+ },
+ "@types/range-parser": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz",
+ "integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="
+ },
"@types/redux": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/@types/redux/-/redux-3.6.0.tgz",
@@ -65,6 +529,11 @@
"redux": "*"
}
},
+ "@types/zen-observable": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/@types/zen-observable/-/zen-observable-0.8.0.tgz",
+ "integrity": "sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg=="
+ },
"@web3-js/scrypt-shim": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@web3-js/scrypt-shim/-/scrypt-shim-0.1.0.tgz",
@@ -93,6 +562,32 @@
"yaeti": "^0.0.6"
}
},
+ "@wry/context": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/@wry/context/-/context-0.4.4.tgz",
+ "integrity": "sha512-LrKVLove/zw6h2Md/KZyWxIkFM6AoyKp71OqpH9Hiip1csjPVoD3tPxlbQUNxEnHENks3UGgNpSBCAfq9KWuag==",
+ "requires": {
+ "@types/node": ">=6",
+ "tslib": "^1.9.3"
+ }
+ },
+ "@wry/equality": {
+ "version": "0.1.11",
+ "resolved": "https://registry.npmjs.org/@wry/equality/-/equality-0.1.11.tgz",
+ "integrity": "sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA==",
+ "requires": {
+ "tslib": "^1.9.3"
+ }
+ },
+ "JSONStream": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz",
+ "integrity": "sha1-wQI3G27Dp887hHygDCC7D85Mbeo=",
+ "requires": {
+ "jsonparse": "^1.2.0",
+ "through": ">=2.2.7 <3"
+ }
+ },
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
@@ -124,6 +619,14 @@
}
}
},
+ "abort-controller": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
+ "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
+ "requires": {
+ "event-target-shim": "^5.0.0"
+ }
+ },
"accepts": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
@@ -191,27 +694,194 @@
"integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=",
"dev": true
},
+ "ansi-colors": {
+ "version": "3.2.4",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA=="
+ },
"ansi-escapes": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
"integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
"dev": true
},
- "ansi-regex": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
- "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
+ "ansi-regex": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
+ "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
+ },
+ "ansi-styles": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
+ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
+ "dev": true
+ },
+ "any-promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
+ "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8="
+ },
+ "anymatch": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
+ "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
+ "requires": {
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
+ }
+ },
+ "apisauce": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/apisauce/-/apisauce-1.1.1.tgz",
+ "integrity": "sha512-xAXMRFyv+6yjhgDIEMozAhioE2qLdxMJxIDbjwT2obttZso27WUOpVGKYK0SD2T+IjlcpNQAklYj0IG0U7YKXQ==",
+ "requires": {
+ "axios": "^0.19.0",
+ "ramda": "^0.25.0"
+ }
+ },
+ "apollo-boost": {
+ "version": "0.4.9",
+ "resolved": "https://registry.npmjs.org/apollo-boost/-/apollo-boost-0.4.9.tgz",
+ "integrity": "sha512-05y5BKcDaa8w47f8d81UVwKqrAjn8uKLv6QM9fNdldoNzQ+rnOHgFlnrySUZRz9QIT3vPftQkEz2UEASp1Mi5g==",
+ "requires": {
+ "apollo-cache": "^1.3.5",
+ "apollo-cache-inmemory": "^1.6.6",
+ "apollo-client": "^2.6.10",
+ "apollo-link": "^1.0.6",
+ "apollo-link-error": "^1.0.3",
+ "apollo-link-http": "^1.3.1",
+ "graphql-tag": "^2.4.2",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "apollo-cache": {
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/apollo-cache/-/apollo-cache-1.3.5.tgz",
+ "integrity": "sha512-1XoDy8kJnyWY/i/+gLTEbYLnoiVtS8y7ikBr/IfmML4Qb+CM7dEEbIUOjnY716WqmZ/UpXIxTfJsY7rMcqiCXA==",
+ "requires": {
+ "apollo-utilities": "^1.3.4",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "apollo-cache-inmemory": {
+ "version": "1.6.6",
+ "resolved": "https://registry.npmjs.org/apollo-cache-inmemory/-/apollo-cache-inmemory-1.6.6.tgz",
+ "integrity": "sha512-L8pToTW/+Xru2FFAhkZ1OA9q4V4nuvfoPecBM34DecAugUZEBhI2Hmpgnzq2hTKZ60LAMrlqiASm0aqAY6F8/A==",
+ "requires": {
+ "apollo-cache": "^1.3.5",
+ "apollo-utilities": "^1.3.4",
+ "optimism": "^0.10.0",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "apollo-client": {
+ "version": "2.6.10",
+ "resolved": "https://registry.npmjs.org/apollo-client/-/apollo-client-2.6.10.tgz",
+ "integrity": "sha512-jiPlMTN6/5CjZpJOkGeUV0mb4zxx33uXWdj/xQCfAMkuNAC3HN7CvYDyMHHEzmcQ5GV12LszWoQ/VlxET24CtA==",
+ "requires": {
+ "@types/zen-observable": "^0.8.0",
+ "apollo-cache": "1.3.5",
+ "apollo-link": "^1.0.0",
+ "apollo-utilities": "1.3.4",
+ "symbol-observable": "^1.0.2",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.10.0",
+ "zen-observable": "^0.8.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
+ },
+ "apollo-link": {
+ "version": "1.2.14",
+ "resolved": "https://registry.npmjs.org/apollo-link/-/apollo-link-1.2.14.tgz",
+ "integrity": "sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg==",
+ "requires": {
+ "apollo-utilities": "^1.3.0",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.9.3",
+ "zen-observable-ts": "^0.8.21"
+ }
+ },
+ "apollo-link-error": {
+ "version": "1.1.13",
+ "resolved": "https://registry.npmjs.org/apollo-link-error/-/apollo-link-error-1.1.13.tgz",
+ "integrity": "sha512-jAZOOahJU6bwSqb2ZyskEK1XdgUY9nkmeclCrW7Gddh1uasHVqmoYc4CKdb0/H0Y1J9lvaXKle2Wsw/Zx1AyUg==",
+ "requires": {
+ "apollo-link": "^1.2.14",
+ "apollo-link-http-common": "^0.2.16",
+ "tslib": "^1.9.3"
+ }
+ },
+ "apollo-link-http": {
+ "version": "1.5.17",
+ "resolved": "https://registry.npmjs.org/apollo-link-http/-/apollo-link-http-1.5.17.tgz",
+ "integrity": "sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg==",
+ "requires": {
+ "apollo-link": "^1.2.14",
+ "apollo-link-http-common": "^0.2.16",
+ "tslib": "^1.9.3"
+ }
+ },
+ "apollo-link-http-common": {
+ "version": "0.2.16",
+ "resolved": "https://registry.npmjs.org/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz",
+ "integrity": "sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg==",
+ "requires": {
+ "apollo-link": "^1.2.14",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.9.3"
+ }
},
- "ansi-styles": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
- "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
- "dev": true
+ "apollo-utilities": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/apollo-utilities/-/apollo-utilities-1.3.4.tgz",
+ "integrity": "sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig==",
+ "requires": {
+ "@wry/equality": "^0.1.2",
+ "fast-json-stable-stringify": "^2.0.0",
+ "ts-invariant": "^0.4.0",
+ "tslib": "^1.10.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
+ "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
+ }
+ }
},
- "any-promise": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
- "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8="
+ "app-module-path": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz",
+ "integrity": "sha1-ZBqlXft9am8KgUHEucCqULbCTdU="
},
"aproba": {
"version": "1.2.0",
@@ -255,7 +925,6 @@
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
- "dev": true,
"requires": {
"sprintf-js": "~1.0.2"
}
@@ -280,6 +949,11 @@
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
+ "asmcrypto.js": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/asmcrypto.js/-/asmcrypto.js-2.3.2.tgz",
+ "integrity": "sha512-3FgFARf7RupsZETQ1nHnhLUUvpcttcCq1iZCaVAbJZbCZ5VNRrNyvpDyHTOb0KC3llFcsyOT/a99NZcCbeiEsA=="
+ },
"asn1": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
@@ -298,6 +972,41 @@
"minimalistic-assert": "^1.0.0"
}
},
+ "assemblyscript": {
+ "version": "git+https://github.com/AssemblyScript/assemblyscript.git#36040d5b5312f19a025782b5e36663823494c2f3",
+ "from": "git+https://github.com/AssemblyScript/assemblyscript.git#36040d5b5312f19a025782b5e36663823494c2f3",
+ "requires": {
+ "@protobufjs/utf8": "^1.1.0",
+ "binaryen": "77.0.0-nightly.20190407",
+ "glob": "^7.1.3",
+ "long": "^4.0.0",
+ "opencollective-postinstall": "^2.0.0",
+ "source-map-support": "^0.5.11"
+ },
+ "dependencies": {
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ }
+ }
+ },
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
@@ -358,6 +1067,14 @@
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4="
},
+ "axios": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz",
+ "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==",
+ "requires": {
+ "follow-redirects": "1.5.10"
+ }
+ },
"babel-code-frame": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
@@ -722,6 +1439,16 @@
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz",
"integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ=="
},
+ "binary-extensions": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz",
+ "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="
+ },
+ "binaryen": {
+ "version": "77.0.0-nightly.20190407",
+ "resolved": "https://registry.npmjs.org/binaryen/-/binaryen-77.0.0-nightly.20190407.tgz",
+ "integrity": "sha512-1mxYNvQ0xywMe582K7V6Vo2zzhZZxMTeGHH8aE/+/AND8f64D8Q1GThVY3RVRwGY/4p+p95ccw9Xbw2ovFXRIg=="
+ },
"bindings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
@@ -855,6 +1582,11 @@
}
}
},
+ "blakejs": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz",
+ "integrity": "sha1-ad+S75U6qIylGjLfarHFShVfx6U="
+ },
"blockstack": {
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/blockstack/-/blockstack-18.3.1.tgz",
@@ -1085,6 +1817,46 @@
}
}
},
+ "borc": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/borc/-/borc-2.1.2.tgz",
+ "integrity": "sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w==",
+ "requires": {
+ "bignumber.js": "^9.0.0",
+ "buffer": "^5.5.0",
+ "commander": "^2.15.0",
+ "ieee754": "^1.1.13",
+ "iso-url": "~0.4.7",
+ "json-text-sequence": "~0.1.0",
+ "readable-stream": "^3.6.0"
+ },
+ "dependencies": {
+ "bignumber.js": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz",
+ "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
@@ -1259,6 +2031,11 @@
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
+ "builtin-status-codes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
+ "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
+ },
"bytes": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
@@ -1347,7 +2124,6 @@
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
@@ -1358,7 +2134,6 @@
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
"requires": {
"color-convert": "^1.9.0"
}
@@ -1366,14 +2141,12 @@
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
- "dev": true
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
"requires": {
"has-flag": "^3.0.0"
}
@@ -1462,11 +2235,58 @@
"lodash.some": "^4.4.0"
}
},
+ "chokidar": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.0.tgz",
+ "integrity": "sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ==",
+ "requires": {
+ "anymatch": "~3.1.1",
+ "braces": "~3.0.2",
+ "fsevents": "~2.1.2",
+ "glob-parent": "~5.1.0",
+ "is-binary-path": "~2.1.0",
+ "is-glob": "~4.0.1",
+ "normalize-path": "~3.0.0",
+ "readdirp": "~3.4.0"
+ }
+ },
"chownr": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz",
"integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw=="
},
+ "cids": {
+ "version": "0.7.5",
+ "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz",
+ "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "class-is": "^1.1.0",
+ "multibase": "~0.6.0",
+ "multicodec": "^1.0.0",
+ "multihashes": "~0.4.15"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "multicodec": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.3.tgz",
+ "integrity": "sha512-8G4JKbHWSe/39Xx2uiI+/b/S6mGgimzwEN4TOCokFUIfofg1T8eHny88ht9eWImD2dng+EEQRsApXxA5ubhU4g==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "varint": "^5.0.0"
+ }
+ }
+ }
+ },
"cipher-base": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
@@ -1482,6 +2302,11 @@
"integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
"dev": true
},
+ "class-is": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz",
+ "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw=="
+ },
"classnames": {
"version": "2.2.6",
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
@@ -1497,6 +2322,50 @@
"restore-cursor": "^2.0.0"
}
},
+ "cli-spinners": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.3.0.tgz",
+ "integrity": "sha512-Xs2Hf2nzrvJMFKimOR7YR0QwZ8fc0u98kdtwN1eNAZzNQgH3vK2pXzff6GJtKh7S5hoJ87ECiAiZFS2fb5Ii2w=="
+ },
+ "cli-table3": {
+ "version": "0.5.1",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.5.1.tgz",
+ "integrity": "sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw==",
+ "requires": {
+ "colors": "^1.1.2",
+ "object-assign": "^4.1.0",
+ "string-width": "^2.1.1"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
+ "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
+ },
+ "string-width": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
+ "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
+ "requires": {
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
"cli-width": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz",
@@ -1549,6 +2418,11 @@
"integrity": "sha1-seU0MJHFIC28UlMoY+HEp4RX8D0=",
"dev": true
},
+ "clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
+ },
"clone-response": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
@@ -1580,6 +2454,11 @@
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
+ "colors": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz",
+ "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA=="
+ },
"combined-stream": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
@@ -1588,6 +2467,11 @@
"delayed-stream": "~1.0.0"
}
},
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ },
"concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
@@ -1597,7 +2481,6 @@
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
"integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
- "dev": true,
"requires": {
"buffer-from": "^1.0.0",
"inherits": "^2.0.3",
@@ -1609,7 +2492,6 @@
"version": "2.3.7",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
- "dev": true,
"requires": {
"core-util-is": "~1.0.0",
"inherits": "~2.0.3",
@@ -1624,7 +2506,6 @@
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
- "dev": true,
"requires": {
"safe-buffer": "~5.1.0"
}
@@ -1696,6 +2577,18 @@
"vary": "^1"
}
},
+ "cosmiconfig": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
+ "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
+ "requires": {
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.1.0",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.7.2"
+ }
+ },
"create-ecdh": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
@@ -1998,6 +2891,14 @@
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
+ "defaults": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
+ "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
+ "requires": {
+ "clone": "^1.0.2"
+ }
+ },
"defer-to-connect": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz",
@@ -2023,6 +2924,11 @@
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
},
+ "delimit-stream": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/delimit-stream/-/delimit-stream-0.1.0.tgz",
+ "integrity": "sha1-m4MZR3wOX4rrPONXrjBfwl6hzSs="
+ },
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
@@ -2062,6 +2968,11 @@
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
"integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups="
},
+ "detect-node": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz",
+ "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw=="
+ },
"diff": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
@@ -2106,6 +3017,68 @@
}
}
},
+ "docker-compose": {
+ "version": "0.23.4",
+ "resolved": "https://registry.npmjs.org/docker-compose/-/docker-compose-0.23.4.tgz",
+ "integrity": "sha512-yWdXby9uQ8o4syOfvoSJ9ZlTnLipvUmDn59uaYY5VGIUSUAfMPPGqE1DE3pOCnfSg9Tl9UOOFO0PCSAzuIHmuA=="
+ },
+ "docker-modem": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/docker-modem/-/docker-modem-1.0.9.tgz",
+ "integrity": "sha512-lVjqCSCIAUDZPAZIeyM125HXfNvOmYYInciphNrLrylUtKyW66meAjSPXWchKVzoIYZx69TPnAepVSSkeawoIw==",
+ "requires": {
+ "JSONStream": "1.3.2",
+ "debug": "^3.2.6",
+ "readable-stream": "~1.0.26-4",
+ "split-ca": "^1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
+ "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "isarray": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
+ "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8="
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "readable-stream": {
+ "version": "1.0.34",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+ "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "0.0.1",
+ "string_decoder": "~0.10.x"
+ }
+ },
+ "string_decoder": {
+ "version": "0.10.31",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
+ "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ="
+ }
+ }
+ },
+ "dockerode": {
+ "version": "2.5.8",
+ "resolved": "https://registry.npmjs.org/dockerode/-/dockerode-2.5.8.tgz",
+ "integrity": "sha512-+7iOUYBeDTScmOmQqpUYQaE7F4vvIt6+gIZNHWhqAQEI887tiPFB9OvXI/HzQYqfUNvukMK+9myLW63oTJPZpw==",
+ "requires": {
+ "concat-stream": "~1.6.2",
+ "docker-modem": "^1.0.8",
+ "tar-fs": "~1.16.3"
+ }
+ },
"doctrine": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
@@ -2209,6 +3182,11 @@
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
+ "ejs": {
+ "version": "2.7.4",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz",
+ "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="
+ },
"electron-to-chromium": {
"version": "1.3.27",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.27.tgz",
@@ -2254,11 +3232,32 @@
"once": "^1.4.0"
}
},
+ "enquirer": {
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.4.tgz",
+ "integrity": "sha512-pkYrrDZumL2VS6VBGDhqbajCM2xpkUNLuKfGPjfKaSIBKYopQbqEFyrOkRMIb2HDR/rO1kGhEt/5twBwtzKBXw==",
+ "requires": {
+ "ansi-colors": "^3.2.1"
+ }
+ },
"entities": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
},
+ "err-code": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA=="
+ },
+ "error-ex": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
+ "requires": {
+ "is-arrayish": "^0.2.1"
+ }
+ },
"es-abstract": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz",
@@ -2372,8 +3371,7 @@
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
- "dev": true
+ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
},
"eslint": {
"version": "4.18.2",
@@ -2663,8 +3661,7 @@
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
},
"esquery": {
"version": "1.3.1",
@@ -2917,6 +3914,11 @@
"es5-ext": "~0.10.14"
}
},
+ "event-target-shim": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
+ "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ=="
+ },
"eventemitter3": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz",
@@ -2931,6 +3933,98 @@
"safe-buffer": "^5.1.1"
}
},
+ "execa": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz",
+ "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==",
+ "requires": {
+ "cross-spawn": "^7.0.0",
+ "get-stream": "^5.0.0",
+ "human-signals": "^1.1.1",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.0",
+ "onetime": "^5.1.0",
+ "p-finally": "^2.0.0",
+ "signal-exit": "^3.0.2",
+ "strip-final-newline": "^2.0.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "get-stream": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz",
+ "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==",
+ "requires": {
+ "pump": "^3.0.0"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
+ },
+ "onetime": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
+ "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "p-finally": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz",
+ "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ }
+ }
+ },
+ "expand-template": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
+ "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
+ "optional": true
+ },
+ "explain-error": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/explain-error/-/explain-error-1.0.4.tgz",
+ "integrity": "sha1-p5PTrAytTGq1cemWj7urbLJTKSk="
+ },
"express": {
"version": "4.17.1",
"resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
@@ -3094,6 +4188,11 @@
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
},
+ "eyes": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz",
+ "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A="
+ },
"faker": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/faker/-/faker-3.1.0.tgz",
@@ -3259,7 +4358,30 @@
"integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
"dev": true,
"requires": {
- "glob": "^7.1.3"
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
+ "flatmap": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/flatmap/-/flatmap-0.0.3.tgz",
+ "integrity": "sha1-Hxik2TgVLUlZZfnJWNkjqy3WabQ="
+ },
+ "follow-redirects": {
+ "version": "1.5.10",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
+ "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
+ "requires": {
+ "debug": "=3.1.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
+ "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "requires": {
+ "ms": "2.0.0"
}
}
}
@@ -3313,6 +4435,11 @@
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
},
+ "fs-constants": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="
+ },
"fs-extra": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
@@ -3323,6 +4450,48 @@
"klaw": "^1.0.0"
}
},
+ "fs-jetpack": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/fs-jetpack/-/fs-jetpack-2.4.0.tgz",
+ "integrity": "sha512-S/o9Dd7K9A7gicVU32eT8G0kHcmSu0rCVdP79P0MWInKFb8XpTc8Syhoo66k9no+HDshtlh4pUJTws8X+8fdFQ==",
+ "requires": {
+ "minimatch": "^3.0.2",
+ "rimraf": "^2.6.3"
+ },
+ "dependencies": {
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "dependencies": {
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ }
+ }
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ }
+ }
+ },
"fs-minipass": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.0.0.tgz",
@@ -3336,6 +4505,12 @@
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
},
+ "fsevents": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
+ "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
+ "optional": true
+ },
"fstream": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz",
@@ -3406,6 +4581,12 @@
"resolved": "https://registry.npmjs.org/gini/-/gini-1.1.7.tgz",
"integrity": "sha1-So7SRJ74sLxCJ6tV8Xpc74A2Rrs="
},
+ "github-from-package": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
+ "integrity": "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4=",
+ "optional": true
+ },
"glob": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz",
@@ -3419,6 +4600,14 @@
"path-is-absolute": "^1.0.0"
}
},
+ "glob-parent": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
+ "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
+ "requires": {
+ "is-glob": "^4.0.1"
+ }
+ },
"global": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz",
@@ -3434,6 +4623,96 @@
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
"dev": true
},
+ "gluegun": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/gluegun/-/gluegun-4.3.1.tgz",
+ "integrity": "sha512-TyOf60807SUYvd0v7fiRbhWrBSl9974clwZwCVc3qxYB83TQQQUSggwcz3yUeOl1MBALpwrz0Q0GUmi25quVOg==",
+ "requires": {
+ "apisauce": "^1.0.1",
+ "app-module-path": "^2.2.0",
+ "cli-table3": "~0.5.0",
+ "colors": "^1.3.3",
+ "cosmiconfig": "6.0.0",
+ "cross-spawn": "^7.0.0",
+ "ejs": "^2.6.1",
+ "enquirer": "2.3.4",
+ "execa": "^3.0.0",
+ "fs-jetpack": "^2.2.2",
+ "lodash.camelcase": "^4.3.0",
+ "lodash.kebabcase": "^4.1.1",
+ "lodash.lowercase": "^4.3.0",
+ "lodash.lowerfirst": "^4.3.1",
+ "lodash.pad": "^4.5.1",
+ "lodash.padend": "^4.6.1",
+ "lodash.padstart": "^4.6.1",
+ "lodash.repeat": "^4.1.0",
+ "lodash.snakecase": "^4.1.1",
+ "lodash.startcase": "^4.4.0",
+ "lodash.trim": "^4.5.1",
+ "lodash.trimend": "^4.5.1",
+ "lodash.trimstart": "^4.5.1",
+ "lodash.uppercase": "^4.3.0",
+ "lodash.upperfirst": "^4.3.1",
+ "ora": "^4.0.0",
+ "pluralize": "^8.0.0",
+ "ramdasauce": "^2.1.0",
+ "semver": "^7.0.0",
+ "which": "^2.0.0",
+ "yargs-parser": "^16.1.0"
+ },
+ "dependencies": {
+ "cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "requires": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ }
+ },
+ "pluralize": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz",
+ "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA=="
+ },
+ "semver": {
+ "version": "7.3.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
+ "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="
+ },
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "requires": {
+ "isexe": "^2.0.0"
+ }
+ },
+ "yargs-parser": {
+ "version": "16.1.0",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-16.1.0.tgz",
+ "integrity": "sha512-H/V41UNZQPkUMIT5h5hiwg4QKIY1RPvoBV4XcjUbRM8Bk2oKqqyZ0DIEbTFZB0XjbtSPG8SAa/0DxCQmiRgzKg==",
+ "requires": {
+ "camelcase": "^5.0.0",
+ "decamelize": "^1.2.0"
+ }
+ }
+ }
+ },
"got": {
"version": "9.6.0",
"resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
@@ -3462,6 +4741,19 @@
"resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
"integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU="
},
+ "graphql": {
+ "version": "14.7.0",
+ "resolved": "https://registry.npmjs.org/graphql/-/graphql-14.7.0.tgz",
+ "integrity": "sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==",
+ "requires": {
+ "iterall": "^1.2.2"
+ }
+ },
+ "graphql-tag": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.10.3.tgz",
+ "integrity": "sha512-4FOv3ZKfA4WdOKJeHdz6B3F/vxBLSgmBcGeAFPf4n1F64ltJUvOOerNj0rsJxONQGdhUMynQIvd6LzB+1J5oKA=="
+ },
"hapi": {
"version": "17.8.5",
"resolved": "https://registry.npmjs.org/hapi/-/hapi-17.8.5.tgz",
@@ -3871,6 +5163,11 @@
}
}
},
+ "hi-base32": {
+ "version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/hi-base32/-/hi-base32-0.5.0.tgz",
+ "integrity": "sha512-DDRmxSyoYuvjUb9EnXdoiMChBZ7ZcUVJsK5Frd3kqMhuBxvmZdnBeynAVfj7/ECbn++CekcoprvC/rprHPAtow=="
+ },
"hmac-drbg": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
@@ -3892,6 +5189,27 @@
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw==",
"dev": true
},
+ "html-dom-parser": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-0.3.0.tgz",
+ "integrity": "sha512-WDEYpO5gHGKuJbf0rwndGq7yUHJ4xboNj9l9mRGw5RsKFc3jfRozCsGAMu69zXxt4Ol8UkbqubKxu8ys0BLKtA==",
+ "requires": {
+ "@types/domhandler": "2.4.1",
+ "domhandler": "2.4.2",
+ "htmlparser2": "3.10.1"
+ }
+ },
+ "html-react-parser": {
+ "version": "0.13.0",
+ "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-0.13.0.tgz",
+ "integrity": "sha512-hU94hE2p9xhMM61EOoiY3Kr+DfzH/uY7hGeVXQpGFRjgbYRUeyuSKORDNMIaY8IAcuHQ6Ov9pJ3x94Wvso/OmQ==",
+ "requires": {
+ "@types/htmlparser2": "3.10.1",
+ "html-dom-parser": "0.3.0",
+ "react-property": "1.0.1",
+ "style-to-object": "0.3.0"
+ }
+ },
"htmlparser2": {
"version": "3.10.1",
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
@@ -3969,6 +5287,11 @@
}
}
},
+ "human-signals": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz",
+ "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="
+ },
"human-standard-token-abi": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/human-standard-token-abi/-/human-standard-token-abi-2.0.0.tgz",
@@ -4041,6 +5364,27 @@
}
}
},
+ "immutable": {
+ "version": "3.8.2",
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz",
+ "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM="
+ },
+ "import-fresh": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
+ "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
+ "requires": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+ }
+ }
+ },
"imurmurhash": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
@@ -4066,6 +5410,11 @@
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
"integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="
},
+ "inline-style-parser": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz",
+ "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q=="
+ },
"inquirer": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz",
@@ -4106,34 +5455,433 @@
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
"dev": true,
"requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
+ "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
+ "dev": true,
+ "requires": {
+ "ansi-regex": "^3.0.0"
+ }
+ }
+ }
+ },
+ "invariant": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
+ "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
+ "dev": true,
+ "requires": {
+ "loose-envify": "^1.0.0"
+ }
+ },
+ "ip": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz",
+ "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo="
+ },
+ "ip-regex": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.1.0.tgz",
+ "integrity": "sha512-pKnZpbgCTfH/1NLIlOduP/V+WRXzC2MOz3Qo8xmxk8C5GudJLgK5QyLVXOSWy3ParAH7Eemurl3xjv/WXYFvMA=="
+ },
+ "ipaddr.js": {
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz",
+ "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="
+ },
+ "ipfs-block": {
+ "version": "0.8.1",
+ "resolved": "https://registry.npmjs.org/ipfs-block/-/ipfs-block-0.8.1.tgz",
+ "integrity": "sha512-0FaCpmij+jZBoUYhjoB5ptjdl9QzvrdRIoBmUU5JiBnK2GA+4YM/ifklaB8ePRhA/rRzhd+KYBjvMFMAL4NrVQ==",
+ "requires": {
+ "cids": "~0.7.0",
+ "class-is": "^1.1.0"
+ }
+ },
+ "ipfs-http-client": {
+ "version": "34.0.0",
+ "resolved": "https://registry.npmjs.org/ipfs-http-client/-/ipfs-http-client-34.0.0.tgz",
+ "integrity": "sha512-4RCkk8ix4Dqn6sxqFVwuXWCZ1eLFPsVaj6Ijvu1fs9VYgxgVudsW9PWwarlr4mw1xUCmPWYyXnEbGgzBrfMy0Q==",
+ "requires": {
+ "abort-controller": "^3.0.0",
+ "async": "^2.6.1",
+ "bignumber.js": "^9.0.0",
+ "bl": "^3.0.0",
+ "bs58": "^4.0.1",
+ "buffer": "^5.4.2",
+ "cids": "~0.7.1",
+ "concat-stream": "github:hugomrdias/concat-stream#feat/smaller",
+ "debug": "^4.1.0",
+ "detect-node": "^2.0.4",
+ "end-of-stream": "^1.4.1",
+ "err-code": "^2.0.0",
+ "explain-error": "^1.0.4",
+ "flatmap": "0.0.3",
+ "glob": "^7.1.3",
+ "ipfs-block": "~0.8.1",
+ "ipfs-utils": "~0.0.3",
+ "ipld-dag-cbor": "~0.15.0",
+ "ipld-dag-pb": "~0.17.3",
+ "ipld-raw": "^4.0.0",
+ "is-ipfs": "~0.6.1",
+ "is-pull-stream": "0.0.0",
+ "is-stream": "^2.0.0",
+ "iso-stream-http": "~0.1.2",
+ "iso-url": "~0.4.6",
+ "iterable-ndjson": "^1.1.0",
+ "just-kebab-case": "^1.1.0",
+ "just-map-keys": "^1.1.0",
+ "kind-of": "^6.0.2",
+ "ky": "^0.11.2",
+ "ky-universal": "^0.2.2",
+ "lru-cache": "^5.1.1",
+ "multiaddr": "^6.0.6",
+ "multibase": "~0.6.0",
+ "multicodec": "~0.5.1",
+ "multihashes": "~0.4.14",
+ "ndjson": "github:hugomrdias/ndjson#feat/readable-stream3",
+ "once": "^1.4.0",
+ "peer-id": "~0.12.3",
+ "peer-info": "~0.15.1",
+ "promise-nodeify": "^3.0.1",
+ "promisify-es6": "^1.0.3",
+ "pull-defer": "~0.2.3",
+ "pull-stream": "^3.6.9",
+ "pull-to-stream": "~0.1.1",
+ "pump": "^3.0.0",
+ "qs": "^6.5.2",
+ "readable-stream": "^3.1.1",
+ "stream-to-pull-stream": "^1.7.2",
+ "tar-stream": "^2.0.1",
+ "through2": "^3.0.1"
+ },
+ "dependencies": {
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
+ "bignumber.js": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz",
+ "integrity": "sha512-t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="
+ },
+ "bl": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-3.0.0.tgz",
+ "integrity": "sha512-EUAyP5UHU5hxF8BPT0LKW8gjYLhq1DQIcneOX/pL/m2Alo+OYDQAJlHq+yseMP50Os2nHXOSic6Ss3vSQeyf4A==",
+ "requires": {
+ "readable-stream": "^3.0.1"
+ }
+ },
+ "concat-stream": {
+ "version": "github:hugomrdias/concat-stream#057bc7b5d6d8df26c8cf00a3f151b6721a0a8034",
+ "from": "github:hugomrdias/concat-stream#feat/smaller",
+ "requires": {
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.0.2"
+ }
+ },
+ "debug": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
+ "requires": {
+ "ms": "^2.1.1"
+ }
+ },
+ "glob": {
+ "version": "7.1.6",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
+ "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ },
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="
+ },
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "minimatch": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
+ "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
+ "requires": {
+ "brace-expansion": "^1.1.7"
+ }
+ },
+ "ms": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ },
+ "qs": {
+ "version": "6.9.4",
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.9.4.tgz",
+ "integrity": "sha512-A1kFqHekCTM7cz0udomYUoYNWjBebHm/5wzU/XqrBRBNWectVH0QIiN+NEcZ0Dte5hvzHwbr8+XQmguPhJ6WdQ=="
+ },
+ "tar-stream": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.2.tgz",
+ "integrity": "sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q==",
+ "requires": {
+ "bl": "^4.0.1",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
+ },
+ "dependencies": {
+ "bl": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.2.tgz",
+ "integrity": "sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ }
+ }
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="
+ }
+ }
+ },
+ "ipfs-utils": {
+ "version": "0.0.4",
+ "resolved": "https://registry.npmjs.org/ipfs-utils/-/ipfs-utils-0.0.4.tgz",
+ "integrity": "sha512-7cZf6aGj2FG3XJWhCNwn4mS93Q0GEWjtBZvEHqzgI43U2qzNDCyzfS1pei1Y5F+tw/zDJ5U4XG0G9reJxR53Ig==",
+ "requires": {
+ "buffer": "^5.2.1",
+ "is-buffer": "^2.0.3",
+ "is-electron": "^2.2.0",
+ "is-pull-stream": "0.0.0",
+ "is-stream": "^2.0.0",
+ "kind-of": "^6.0.2",
+ "readable-stream": "^3.4.0"
+ },
+ "dependencies": {
+ "is-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
+ "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "ipld-dag-cbor": {
+ "version": "0.15.3",
+ "resolved": "https://registry.npmjs.org/ipld-dag-cbor/-/ipld-dag-cbor-0.15.3.tgz",
+ "integrity": "sha512-m23nG7ZyoVFnkK55/bLAErc7EfiMgaEQlqHWDTGzPI+O5r6bPfp+qbL5zTVSIT8tpbHmu174dwerVtLoVgeVyA==",
+ "requires": {
+ "borc": "^2.1.2",
+ "buffer": "^5.5.0",
+ "cids": "~0.8.0",
+ "is-circular": "^1.0.2",
+ "multicodec": "^1.0.0",
+ "multihashing-async": "~0.8.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "cids": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/cids/-/cids-0.8.3.tgz",
+ "integrity": "sha512-yoXTbV3llpm+EBGWKeL9xKtksPE/s6DPoDSY4fn8I8TEW1zehWXPSB0pwAXVDlLaOlrw+sNynj995uD9abmPhA==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "class-is": "^1.1.0",
+ "multibase": "^1.0.0",
+ "multicodec": "^1.0.1",
+ "multihashes": "^1.0.1"
+ }
+ },
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ },
+ "multicodec": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.3.tgz",
+ "integrity": "sha512-8G4JKbHWSe/39Xx2uiI+/b/S6mGgimzwEN4TOCokFUIfofg1T8eHny88ht9eWImD2dng+EEQRsApXxA5ubhU4g==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "varint": "^5.0.0"
+ }
+ },
+ "multihashes": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-1.0.1.tgz",
+ "integrity": "sha512-S27Tepg4i8atNiFaU5ZOm3+gl3KQlUanLs/jWcBxQHFttgq+5x1OgbQmf2d8axJ/48zYGBd/wT9d723USMFduw==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "multibase": "^1.0.1",
+ "varint": "^5.0.0"
+ }
+ }
+ }
+ },
+ "ipld-dag-pb": {
+ "version": "0.17.4",
+ "resolved": "https://registry.npmjs.org/ipld-dag-pb/-/ipld-dag-pb-0.17.4.tgz",
+ "integrity": "sha512-YwCxETEMuXVspOKOhjIOHJvKvB/OZfCDkpSFiYBQN2/JQjM9y/RFCYzIQGm0wg7dCFLrhvfjAZLTSaKs65jzWA==",
+ "requires": {
+ "cids": "~0.7.0",
+ "class-is": "^1.1.0",
+ "multicodec": "~0.5.1",
+ "multihashing-async": "~0.7.0",
+ "protons": "^1.0.1",
+ "stable": "~0.1.8"
+ },
+ "dependencies": {
+ "err-code": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz",
+ "integrity": "sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA="
+ },
+ "multihashing-async": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/multihashing-async/-/multihashing-async-0.7.0.tgz",
+ "integrity": "sha512-SCbfl3f+DzJh+/5piukga9ofIOxwfT05t8R4jfzZIJ88YE9zU9+l3K2X+XB19MYyxqvyK9UJRNWbmQpZqQlbRA==",
+ "requires": {
+ "blakejs": "^1.1.0",
+ "buffer": "^5.2.1",
+ "err-code": "^1.1.2",
+ "js-sha3": "~0.8.0",
+ "multihashes": "~0.4.13",
+ "murmurhash3js-revisited": "^3.0.0"
+ }
+ }
+ }
+ },
+ "ipld-raw": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/ipld-raw/-/ipld-raw-4.0.1.tgz",
+ "integrity": "sha512-WjIdtZ06jJEar8zh+BHB84tE6ZdbS/XNa7+XCArOYfmeJ/c01T9VQpeMwdJQYn5c3s5UvvCu7y4VIi3vk2g1bA==",
+ "requires": {
+ "cids": "~0.7.0",
+ "multicodec": "^1.0.0",
+ "multihashing-async": "~0.8.0"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
}
},
- "strip-ansi": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
- "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
- "dev": true,
+ "multicodec": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.3.tgz",
+ "integrity": "sha512-8G4JKbHWSe/39Xx2uiI+/b/S6mGgimzwEN4TOCokFUIfofg1T8eHny88ht9eWImD2dng+EEQRsApXxA5ubhU4g==",
"requires": {
- "ansi-regex": "^3.0.0"
+ "buffer": "^5.6.0",
+ "varint": "^5.0.0"
}
}
}
},
- "invariant": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
- "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
- "dev": true,
+ "is-arrayish": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
+ "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0="
+ },
+ "is-binary-path": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"requires": {
- "loose-envify": "^1.0.0"
+ "binary-extensions": "^2.0.0"
}
},
- "ipaddr.js": {
- "version": "1.9.0",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz",
- "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="
+ "is-buffer": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz",
+ "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A=="
},
"is-callable": {
"version": "1.1.3",
@@ -4141,12 +5889,27 @@
"integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=",
"dev": true
},
+ "is-circular": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-circular/-/is-circular-1.0.2.tgz",
+ "integrity": "sha512-YttjnrswnUYRVJvxCvu8z+PGMUSzC2JttP0OEXezlAEdp3EXzhf7IZ3j0gRAybJBQupedIZFhY61Tga6E0qASA=="
+ },
"is-date-object": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
"integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
"dev": true
},
+ "is-electron": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-electron/-/is-electron-2.2.0.tgz",
+ "integrity": "sha512-SpMppC2XR3YdxSzczXReBjqs2zGscWQpBIKqwXYBFic0ERaxNVgwLCHwOLZeESfdJQjX0RDvrJ1lBXX2ij+G1Q=="
+ },
+ "is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
+ },
"is-fullwidth-code-point": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
@@ -4160,11 +5923,141 @@
"resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz",
"integrity": "sha1-Es+5i2W1fdPRk6MSH19uL0N2ArU="
},
+ "is-glob": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
+ "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
+ "requires": {
+ "is-extglob": "^2.1.1"
+ }
+ },
"is-hex-prefixed": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz",
"integrity": "sha1-fY035q135dEnFIkTxXPggtd39VQ="
},
+ "is-interactive": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+ "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w=="
+ },
+ "is-ip": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-3.1.0.tgz",
+ "integrity": "sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==",
+ "requires": {
+ "ip-regex": "^4.0.0"
+ }
+ },
+ "is-ipfs": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/is-ipfs/-/is-ipfs-0.6.3.tgz",
+ "integrity": "sha512-HyRot1dvLcxImtDqPxAaY1miO6WsiP/z7Yxpg2qpaLWv5UdhAPtLvHJ4kMLM0w8GSl8AFsVF23PHe1LzuWrUlQ==",
+ "requires": {
+ "bs58": "^4.0.1",
+ "cids": "~0.7.0",
+ "mafmt": "^7.0.0",
+ "multiaddr": "^7.2.1",
+ "multibase": "~0.6.0",
+ "multihashes": "~0.4.13"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "multiaddr": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/multiaddr/-/multiaddr-7.5.0.tgz",
+ "integrity": "sha512-GvhHsIGDULh06jyb6ev+VfREH9evJCFIRnh3jUt9iEZ6XDbyoisZRFEI9bMvK/AiR6y66y6P+eoBw9mBYMhMvw==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "cids": "~0.8.0",
+ "class-is": "^1.1.0",
+ "is-ip": "^3.1.0",
+ "multibase": "^0.7.0",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "cids": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/cids/-/cids-0.8.3.tgz",
+ "integrity": "sha512-yoXTbV3llpm+EBGWKeL9xKtksPE/s6DPoDSY4fn8I8TEW1zehWXPSB0pwAXVDlLaOlrw+sNynj995uD9abmPhA==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "class-is": "^1.1.0",
+ "multibase": "^1.0.0",
+ "multicodec": "^1.0.1",
+ "multihashes": "^1.0.1"
+ },
+ "dependencies": {
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ }
+ }
+ },
+ "multibase": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz",
+ "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ },
+ "multihashes": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-1.0.1.tgz",
+ "integrity": "sha512-S27Tepg4i8atNiFaU5ZOm3+gl3KQlUanLs/jWcBxQHFttgq+5x1OgbQmf2d8axJ/48zYGBd/wT9d723USMFduw==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "multibase": "^1.0.1",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ }
+ }
+ }
+ }
+ },
+ "multicodec": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.3.tgz",
+ "integrity": "sha512-8G4JKbHWSe/39Xx2uiI+/b/S6mGgimzwEN4TOCokFUIfofg1T8eHny88ht9eWImD2dng+EEQRsApXxA5ubhU4g==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "varint": "^5.0.0"
+ }
+ }
+ }
+ },
"is-natural-number": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz",
@@ -4185,6 +6078,16 @@
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
"integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4="
},
+ "is-promise": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz",
+ "integrity": "sha1-MVc3YcBX4zwukaq56W2gjO++duU="
+ },
+ "is-pull-stream": {
+ "version": "0.0.0",
+ "resolved": "https://registry.npmjs.org/is-pull-stream/-/is-pull-stream-0.0.0.tgz",
+ "integrity": "sha1-o7w9HG0wVRUcRr3m85nv7SFEDKk="
+ },
"is-regex": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
@@ -4246,6 +6149,42 @@
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
},
+ "iso-random-stream": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/iso-random-stream/-/iso-random-stream-1.1.1.tgz",
+ "integrity": "sha512-YEt/7xOwTdu4KXIgtdgGFkiLUsBaddbnkmHyaFdjJYIcD7V4gpQHPvYC5tyh3kA0PQ01y9lWm1ruVdf8Mqzovg==",
+ "requires": {
+ "buffer": "^5.4.3",
+ "readable-stream": "^3.4.0"
+ },
+ "dependencies": {
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "iso-stream-http": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/iso-stream-http/-/iso-stream-http-0.1.2.tgz",
+ "integrity": "sha512-oHEDNOysIMTNypbg2f1SlydqRBvjl4ZbSE9+0awVxnkx3K2stGTFwB/kpVqnB6UEfF8QD36kAjDwZvqyXBLMnQ==",
+ "requires": {
+ "builtin-status-codes": "^3.0.0",
+ "inherits": "^2.0.1",
+ "readable-stream": "^3.1.1"
+ }
+ },
+ "iso-url": {
+ "version": "0.4.7",
+ "resolved": "https://registry.npmjs.org/iso-url/-/iso-url-0.4.7.tgz",
+ "integrity": "sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog=="
+ },
"isomorphic-fetch": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
@@ -4253,6 +6192,17 @@
"requires": {
"node-fetch": "^1.0.1",
"whatwg-fetch": ">=0.10.0"
+ },
+ "dependencies": {
+ "node-fetch": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
+ "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
+ "requires": {
+ "encoding": "^0.1.11",
+ "is-stream": "^1.0.1"
+ }
+ }
}
},
"isstream": {
@@ -4269,6 +6219,19 @@
"is-object": "^1.0.1"
}
},
+ "iterable-ndjson": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/iterable-ndjson/-/iterable-ndjson-1.1.0.tgz",
+ "integrity": "sha512-OOp1Lb0o3k5MkXHx1YaIY5Z0ELosZfTnBaas9f8opJVcZGBIONA2zY/6CYE+LKkqrSDooIneZbrBGgOZnHPkrg==",
+ "requires": {
+ "string_decoder": "^1.2.0"
+ }
+ },
+ "iterall": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz",
+ "integrity": "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg=="
+ },
"its-set": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/its-set/-/its-set-1.2.3.tgz",
@@ -4279,6 +6242,31 @@
"lodash.get": "^4.4.2"
}
},
+ "jayson": {
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/jayson/-/jayson-3.3.3.tgz",
+ "integrity": "sha512-0bQ/vNvWyi+fzNoMvRK63m7BGU+PWwaJRVaGgJWZeAL5euOSqJtqzqyCrfiS3Sdw3OrvgKWF5f5N8ut87gxrng==",
+ "requires": {
+ "@types/connect": "^3.4.32",
+ "@types/express-serve-static-core": "^4.16.9",
+ "@types/lodash": "^4.14.139",
+ "@types/node": "^12.7.7",
+ "JSONStream": "^1.3.1",
+ "commander": "^2.12.2",
+ "es6-promisify": "^5.0.0",
+ "eyes": "^0.1.8",
+ "json-stringify-safe": "^5.0.1",
+ "lodash": "^4.17.15",
+ "uuid": "^3.2.1"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
+ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
+ }
+ }
+ },
"js-base64": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.0.tgz",
@@ -4298,7 +6286,6 @@
"version": "3.13.1",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
"integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
- "dev": true,
"requires": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -4314,6 +6301,11 @@
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
"integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg="
},
+ "json-parse-better-errors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="
+ },
"json-schema": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
@@ -4362,6 +6354,14 @@
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
},
+ "json-text-sequence": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/json-text-sequence/-/json-text-sequence-0.1.1.tgz",
+ "integrity": "sha1-py8hfcSvxGKf/1/rME3BvVGi89I=",
+ "requires": {
+ "delimit-stream": "0.1.0"
+ }
+ },
"jsonfile": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
@@ -4375,6 +6375,11 @@
"resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
},
+ "jsonparse": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
+ "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA="
+ },
"jsontokens": {
"version": "0.7.8",
"resolved": "https://registry.npmjs.org/jsontokens/-/jsontokens-0.7.8.tgz",
@@ -4404,6 +6409,16 @@
"integrity": "sha1-OGchPo3Xm/Ho8jAMDPwe+xgsDfE=",
"dev": true
},
+ "just-kebab-case": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/just-kebab-case/-/just-kebab-case-1.1.0.tgz",
+ "integrity": "sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA=="
+ },
+ "just-map-keys": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/just-map-keys/-/just-map-keys-1.1.0.tgz",
+ "integrity": "sha512-oNKi+4y7fr8lXnhKYpBbCkiwHRVkAnx0VDkCeTDtKKMzGr1Lz1Yym+RSieKUTKim68emC5Yxrb4YmiF9STDO+g=="
+ },
"keccak": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/keccak/-/keccak-1.4.0.tgz",
@@ -4447,49 +6462,245 @@
}
}
},
- "bn.js": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-3.3.0.tgz",
- "integrity": "sha1-ETjld4if3Je72rUYRPIZDfwK49c="
- },
- "elliptic": {
+ "bn.js": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-3.3.0.tgz",
+ "integrity": "sha1-ETjld4if3Je72rUYRPIZDfwK49c="
+ },
+ "elliptic": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-5.2.1.tgz",
+ "integrity": "sha1-+ilLZWPG3bybo9yFlGh66ECFjxA=",
+ "requires": {
+ "bn.js": "^3.1.1",
+ "brorand": "^1.0.1",
+ "hash.js": "^1.0.0",
+ "inherits": "^2.0.1"
+ }
+ }
+ }
+ },
+ "keypair": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/keypair/-/keypair-1.0.1.tgz",
+ "integrity": "sha1-dgNxknCvtlZO04oiCHoG/Jqk6hs="
+ },
+ "keytar": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/keytar/-/keytar-5.6.0.tgz",
+ "integrity": "sha512-ueulhshHSGoryfRXaIvTj0BV1yB0KddBGhGoqCxSN9LR1Ks1GKuuCdVhF+2/YOs5fMl6MlTI9On1a4DHDXoTow==",
+ "optional": true,
+ "requires": {
+ "nan": "2.14.1",
+ "prebuild-install": "5.3.3"
+ },
+ "dependencies": {
+ "nan": {
+ "version": "2.14.1",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz",
+ "integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==",
+ "optional": true
+ }
+ }
+ },
+ "keyv": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
+ "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
+ "requires": {
+ "json-buffer": "3.0.0"
+ }
+ },
+ "kind-of": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
+ },
+ "klaw": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
+ "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
+ "requires": {
+ "graceful-fs": "^4.1.9"
+ }
+ },
+ "ky": {
+ "version": "0.11.2",
+ "resolved": "https://registry.npmjs.org/ky/-/ky-0.11.2.tgz",
+ "integrity": "sha512-5Aou5BWue5/mkPqIRqzSWW+0Hkl403pr/2AIrCKYw7cVl/Xoe8Xe4KLBO0PRjbz7GnRe1/8wW1KhqQNFFE7/GQ=="
+ },
+ "ky-universal": {
+ "version": "0.2.2",
+ "resolved": "https://registry.npmjs.org/ky-universal/-/ky-universal-0.2.2.tgz",
+ "integrity": "sha512-fb32o/fKy/ux2ALWa9HU2hvGtfOq7/vn2nH0FpVE+jwNzyTeORlAbj3Fiw+WLMbUlmVqZIWupnLZ2USHvqwZHw==",
+ "requires": {
+ "abort-controller": "^3.0.0",
+ "node-fetch": "^2.3.0"
+ },
+ "dependencies": {
+ "node-fetch": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.0.tgz",
+ "integrity": "sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA=="
+ }
+ }
+ },
+ "levn": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
+ "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
+ "dev": true,
+ "requires": {
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
+ }
+ },
+ "libp2p-crypto": {
+ "version": "0.16.3",
+ "resolved": "https://registry.npmjs.org/libp2p-crypto/-/libp2p-crypto-0.16.3.tgz",
+ "integrity": "sha512-ro7/5Tu+f8p2+qDS1JrROnO++nNaAaBFs+VVXVHLuTMnbnMASu1eUtSlWPk1uOwikAlBFTvfqe5J1bK6Bpq6Pg==",
+ "requires": {
+ "asmcrypto.js": "^2.3.2",
+ "asn1.js": "^5.0.1",
+ "async": "^2.6.1",
+ "bn.js": "^4.11.8",
+ "browserify-aes": "^1.2.0",
+ "bs58": "^4.0.1",
+ "iso-random-stream": "^1.1.0",
+ "keypair": "^1.0.1",
+ "libp2p-crypto-secp256k1": "~0.3.0",
+ "multihashing-async": "~0.5.1",
+ "node-forge": "~0.9.1",
+ "pem-jwk": "^2.0.0",
+ "protons": "^1.0.1",
+ "rsa-pem-to-jwk": "^1.1.3",
+ "tweetnacl": "^1.0.0",
+ "ursa-optional": "~0.10.0"
+ },
+ "dependencies": {
+ "asn1.js": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "safer-buffer": "^2.1.0"
+ }
+ },
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
+ "multihashing-async": {
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/multihashing-async/-/multihashing-async-0.5.2.tgz",
+ "integrity": "sha512-mmyG6M/FKxrpBh9xQDUvuJ7BbqT93ZeEeH5X6LeMYKoYshYLr9BDdCsvDtZvn+Egf+/Xi+aOznrWL4vp3s+p0Q==",
+ "requires": {
+ "blakejs": "^1.1.0",
+ "js-sha3": "~0.8.0",
+ "multihashes": "~0.4.13",
+ "murmurhash3js": "^3.0.1",
+ "nodeify": "^1.0.1"
+ }
+ },
+ "tweetnacl": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz",
+ "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw=="
+ }
+ }
+ },
+ "libp2p-crypto-secp256k1": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/libp2p-crypto-secp256k1/-/libp2p-crypto-secp256k1-0.3.1.tgz",
+ "integrity": "sha512-evrfK/CeUSd/lcELUdDruyPBvxDmLairth75S32OLl3H+++2m2fV24JEtxzdFS9JH3xEFw0h6JFO8DBa1bP9dA==",
+ "requires": {
+ "async": "^2.6.2",
+ "bs58": "^4.0.1",
+ "multihashing-async": "~0.6.0",
+ "nodeify": "^1.0.1",
+ "safe-buffer": "^5.1.2",
+ "secp256k1": "^3.6.2"
+ },
+ "dependencies": {
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ },
+ "create-hash": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
+ "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
+ "requires": {
+ "cipher-base": "^1.0.1",
+ "inherits": "^2.0.1",
+ "md5.js": "^1.3.4",
+ "ripemd160": "^2.0.1",
+ "sha.js": "^2.4.0"
+ }
+ },
+ "elliptic": {
+ "version": "6.5.3",
+ "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz",
+ "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==",
+ "requires": {
+ "bn.js": "^4.4.0",
+ "brorand": "^1.0.1",
+ "hash.js": "^1.0.0",
+ "hmac-drbg": "^1.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "minimalistic-crypto-utils": "^1.0.0"
+ }
+ },
+ "multihashing-async": {
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/multihashing-async/-/multihashing-async-0.6.0.tgz",
+ "integrity": "sha512-Qv8pgg99Lewc191A5nlXy0bSd2amfqlafNJZmarU6Sj7MZVjpR94SCxQjf4DwPtgWZkiLqsjUQBXA2RSq+hYyA==",
+ "requires": {
+ "blakejs": "^1.1.0",
+ "js-sha3": "~0.8.0",
+ "multihashes": "~0.4.13",
+ "murmurhash3js": "^3.0.1",
+ "nodeify": "^1.0.1"
+ }
+ },
+ "safe-buffer": {
"version": "5.2.1",
- "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-5.2.1.tgz",
- "integrity": "sha1-+ilLZWPG3bybo9yFlGh66ECFjxA=",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
+ },
+ "secp256k1": {
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-3.8.0.tgz",
+ "integrity": "sha512-k5ke5avRZbtl9Tqx/SA7CbY3NF6Ro+Sj9cZxezFzuBlLDmyqPiL8hJJ+EmzD8Ig4LUDByHJ3/iPOVoRixs/hmw==",
"requires": {
- "bn.js": "^3.1.1",
- "brorand": "^1.0.1",
- "hash.js": "^1.0.0",
- "inherits": "^2.0.1"
+ "bindings": "^1.5.0",
+ "bip66": "^1.1.5",
+ "bn.js": "^4.11.8",
+ "create-hash": "^1.2.0",
+ "drbg.js": "^1.0.1",
+ "elliptic": "^6.5.2",
+ "nan": "^2.14.0",
+ "safe-buffer": "^5.1.2"
}
}
}
},
- "keyv": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
- "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
- "requires": {
- "json-buffer": "3.0.0"
- }
- },
- "klaw": {
- "version": "1.3.1",
- "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
- "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
- "requires": {
- "graceful-fs": "^4.1.9"
- }
- },
- "levn": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
- "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
- "dev": true,
- "requires": {
- "prelude-ls": "~1.1.2",
- "type-check": "~0.3.2"
- }
+ "lines-and-columns": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
+ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA="
},
"lodash": {
"version": "4.17.15",
@@ -4506,6 +6717,11 @@
"resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz",
"integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU="
},
+ "lodash.camelcase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
+ "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY="
+ },
"lodash.cond": {
"version": "4.5.2",
"resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz",
@@ -4556,6 +6772,21 @@
"integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=",
"dev": true
},
+ "lodash.kebabcase": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz",
+ "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY="
+ },
+ "lodash.lowercase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.lowercase/-/lodash.lowercase-4.3.0.tgz",
+ "integrity": "sha1-RlFaztSssLcJMTMzOvBo5MOxTp0="
+ },
+ "lodash.lowerfirst": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz",
+ "integrity": "sha1-3jx7EuAsZSSgBZwvbLfFxSZVoT0="
+ },
"lodash.map": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
@@ -4566,6 +6797,21 @@
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
},
+ "lodash.pad": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.5.1.tgz",
+ "integrity": "sha1-QzCUmoM6fI2iLMIPaibE1Z3runA="
+ },
+ "lodash.padend": {
+ "version": "4.6.1",
+ "resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz",
+ "integrity": "sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4="
+ },
+ "lodash.padstart": {
+ "version": "4.6.1",
+ "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz",
+ "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs="
+ },
"lodash.pick": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz",
@@ -4581,11 +6827,69 @@
"resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz",
"integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU="
},
+ "lodash.repeat": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-4.1.0.tgz",
+ "integrity": "sha1-/H3oEx2MisB+S0n3T/6CnR8r7EQ="
+ },
+ "lodash.snakecase": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz",
+ "integrity": "sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40="
+ },
"lodash.some": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz",
"integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0="
},
+ "lodash.startcase": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz",
+ "integrity": "sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg="
+ },
+ "lodash.trim": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/lodash.trim/-/lodash.trim-4.5.1.tgz",
+ "integrity": "sha1-NkJefukL5KpeJ7zruFt9EepHqlc="
+ },
+ "lodash.trimend": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/lodash.trimend/-/lodash.trimend-4.5.1.tgz",
+ "integrity": "sha1-EoBENyhrmMrYmWt5QU4RMAEUCC8="
+ },
+ "lodash.trimstart": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/lodash.trimstart/-/lodash.trimstart-4.5.1.tgz",
+ "integrity": "sha1-j/TexTLYJIavWVc8OURZFOlEp/E="
+ },
+ "lodash.uppercase": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.uppercase/-/lodash.uppercase-4.3.0.tgz",
+ "integrity": "sha1-xASr/RRp+Tkx+bskz2zH1XBZvHM="
+ },
+ "lodash.upperfirst": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz",
+ "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984="
+ },
+ "log-symbols": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
+ "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
+ "requires": {
+ "chalk": "^2.4.2"
+ }
+ },
+ "long": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz",
+ "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA=="
+ },
+ "looper": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz",
+ "integrity": "sha1-LvpUw7HLq6m5Su4uWRSwvlf7t0k="
+ },
"loose-envify": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
@@ -4624,6 +6928,108 @@
}
}
},
+ "mafmt": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/mafmt/-/mafmt-7.1.0.tgz",
+ "integrity": "sha512-vpeo9S+hepT3k2h5iFxzEHvvR0GPBx9uKaErmnRzYNcaKb03DgOArjEMlgG4a9LcuZZ89a3I8xbeto487n26eA==",
+ "requires": {
+ "multiaddr": "^7.3.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "cids": {
+ "version": "0.8.3",
+ "resolved": "https://registry.npmjs.org/cids/-/cids-0.8.3.tgz",
+ "integrity": "sha512-yoXTbV3llpm+EBGWKeL9xKtksPE/s6DPoDSY4fn8I8TEW1zehWXPSB0pwAXVDlLaOlrw+sNynj995uD9abmPhA==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "class-is": "^1.1.0",
+ "multibase": "^1.0.0",
+ "multicodec": "^1.0.1",
+ "multihashes": "^1.0.1"
+ },
+ "dependencies": {
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ }
+ }
+ },
+ "multiaddr": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/multiaddr/-/multiaddr-7.5.0.tgz",
+ "integrity": "sha512-GvhHsIGDULh06jyb6ev+VfREH9evJCFIRnh3jUt9iEZ6XDbyoisZRFEI9bMvK/AiR6y66y6P+eoBw9mBYMhMvw==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "cids": "~0.8.0",
+ "class-is": "^1.1.0",
+ "is-ip": "^3.1.0",
+ "multibase": "^0.7.0",
+ "varint": "^5.0.0"
+ }
+ },
+ "multibase": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz",
+ "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ },
+ "multicodec": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.3.tgz",
+ "integrity": "sha512-8G4JKbHWSe/39Xx2uiI+/b/S6mGgimzwEN4TOCokFUIfofg1T8eHny88ht9eWImD2dng+EEQRsApXxA5ubhU4g==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "varint": "^5.0.0"
+ }
+ },
+ "multihashes": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-1.0.1.tgz",
+ "integrity": "sha512-S27Tepg4i8atNiFaU5ZOm3+gl3KQlUanLs/jWcBxQHFttgq+5x1OgbQmf2d8axJ/48zYGBd/wT9d723USMFduw==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "multibase": "^1.0.1",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ }
+ }
+ }
+ }
+ },
"make-dir": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
@@ -4674,6 +7080,11 @@
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
"integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
},
+ "merge-stream": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
+ "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
+ },
"merkle-lib": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/merkle-lib/-/merkle-lib-2.0.10.tgz",
@@ -5538,6 +7949,12 @@
}
}
},
+ "mkdirp-classic": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
+ "optional": true
+ },
"mkdirp-promise": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz",
@@ -5577,6 +7994,182 @@
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
},
+ "multiaddr": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/multiaddr/-/multiaddr-6.1.1.tgz",
+ "integrity": "sha512-Q1Ika0F9MNhMtCs62Ue+GWIJtRFEhZ3Xz8wH7/MZDVZTWhil1/H2bEGN02kUees3hkI3q1oHSjmXYDM0gxaFjQ==",
+ "requires": {
+ "bs58": "^4.0.1",
+ "class-is": "^1.1.0",
+ "hi-base32": "~0.5.0",
+ "ip": "^1.1.5",
+ "is-ip": "^2.0.0",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "ip-regex": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
+ "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk="
+ },
+ "is-ip": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-2.0.0.tgz",
+ "integrity": "sha1-aO6gfooKCpTC0IDdZ0xzGrKkYas=",
+ "requires": {
+ "ip-regex": "^2.0.0"
+ }
+ }
+ }
+ },
+ "multibase": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz",
+ "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ }
+ }
+ },
+ "multicodec": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz",
+ "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==",
+ "requires": {
+ "varint": "^5.0.0"
+ }
+ },
+ "multihashes": {
+ "version": "0.4.21",
+ "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz",
+ "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "multibase": "^0.7.0",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "multibase": {
+ "version": "0.7.0",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz",
+ "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ }
+ }
+ }
+ },
+ "multihashing-async": {
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/multihashing-async/-/multihashing-async-0.8.2.tgz",
+ "integrity": "sha512-2lKa1autuCy8x7KIEj9aVNbAb3aIMRFYIwN7mq/zD4pxgNIVgGlm+f6GKY4880EOF2Y3GktHYssRy7TAJQ2DyQ==",
+ "requires": {
+ "blakejs": "^1.1.0",
+ "buffer": "^5.4.3",
+ "err-code": "^2.0.0",
+ "js-sha3": "^0.8.0",
+ "multihashes": "^1.0.1",
+ "murmurhash3js-revisited": "^3.0.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz",
+ "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "multibase": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multibase/-/multibase-1.0.1.tgz",
+ "integrity": "sha512-KcCxpBVY8fdVKu4dJMAahq4F/2Z/9xqEjIiR7PiMe7LRGeorFn2NLmicN6nLBCqQvft6MG2Lc9X5P0IdyvnxEw==",
+ "requires": {
+ "base-x": "^3.0.8",
+ "buffer": "^5.5.0"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ }
+ }
+ },
+ "multihashes": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-1.0.1.tgz",
+ "integrity": "sha512-S27Tepg4i8atNiFaU5ZOm3+gl3KQlUanLs/jWcBxQHFttgq+5x1OgbQmf2d8axJ/48zYGBd/wT9d723USMFduw==",
+ "requires": {
+ "buffer": "^5.6.0",
+ "multibase": "^1.0.1",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ }
+ }
+ }
+ }
+ },
+ "murmurhash3js": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/murmurhash3js/-/murmurhash3js-3.0.1.tgz",
+ "integrity": "sha1-Ppg+W0fCoG9DpxMXTn5DXKBEuZg="
+ },
+ "murmurhash3js-revisited": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/murmurhash3js-revisited/-/murmurhash3js-revisited-3.0.0.tgz",
+ "integrity": "sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g=="
+ },
"mute-stream": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz",
@@ -5593,12 +8186,28 @@
"resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz",
"integrity": "sha1-DMj20OK2IrR5xA1JnEbWS3Vcb18="
},
+ "napi-build-utils": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
+ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==",
+ "optional": true
+ },
"natural-compare": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
"dev": true
},
+ "ndjson": {
+ "version": "github:hugomrdias/ndjson#4db16da6b42e5b39bf300c3a7cde62abb3fa3a11",
+ "from": "github:hugomrdias/ndjson#feat/readable-stream3",
+ "requires": {
+ "json-stringify-safe": "^5.0.1",
+ "minimist": "^1.2.0",
+ "split2": "^3.1.0",
+ "through2": "^3.0.0"
+ }
+ },
"needle": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/needle/-/needle-2.3.2.tgz",
@@ -5634,15 +8243,20 @@
"resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
"integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw="
},
- "node-fetch": {
- "version": "1.7.3",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
- "integrity": "sha1-mA9vcthSEaU0fGsrwYxbhMPrR+8=",
+ "node-abi": {
+ "version": "2.18.0",
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.18.0.tgz",
+ "integrity": "sha512-yi05ZoiuNNEbyT/xXfSySZE+yVnQW6fxPZuFbLyS1s6b5Kw3HzV2PHOM4XR+nsjzkHxByK+2Wg+yCQbe35l8dw==",
+ "optional": true,
"requires": {
- "encoding": "^0.1.11",
- "is-stream": "^1.0.1"
+ "semver": "^5.4.1"
}
},
+ "node-forge": {
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.1.tgz",
+ "integrity": "sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ=="
+ },
"node-pre-gyp": {
"version": "0.14.0",
"resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz",
@@ -5711,6 +8325,31 @@
}
}
},
+ "nodeify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/nodeify/-/nodeify-1.0.1.tgz",
+ "integrity": "sha1-ZKtpp7268DzhB7TwM1yHwLnpGx0=",
+ "requires": {
+ "is-promise": "~1.0.0",
+ "promise": "~1.3.0"
+ },
+ "dependencies": {
+ "promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/promise/-/promise-1.3.0.tgz",
+ "integrity": "sha1-5cyaTIJ45GZP/twBx9qEhCsEAXU=",
+ "requires": {
+ "is-promise": "~1"
+ }
+ }
+ }
+ },
+ "noop-logger": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz",
+ "integrity": "sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI=",
+ "optional": true
+ },
"nopt": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz",
@@ -5720,6 +8359,11 @@
"osenv": "^0.1.4"
}
},
+ "normalize-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
+ },
"normalize-range": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
@@ -5753,6 +8397,14 @@
"npm-normalize-package-bin": "^1.0.1"
}
},
+ "npm-run-path": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
+ "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
+ "requires": {
+ "path-key": "^3.0.0"
+ }
+ },
"npmlog": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
@@ -5866,8 +8518,23 @@
"opencollective-postinstall": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz",
- "integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==",
- "dev": true
+ "integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw=="
+ },
+ "optimism": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/optimism/-/optimism-0.10.3.tgz",
+ "integrity": "sha512-9A5pqGoQk49H6Vhjb9kPgAeeECfUDF6aIICbMDL23kDLStBn1MWk3YvcZ4xWF9CsSf6XEgvRLkXy4xof/56vVw==",
+ "requires": {
+ "@wry/context": "^0.4.0"
+ }
+ },
+ "optimist": {
+ "version": "0.3.7",
+ "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz",
+ "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=",
+ "requires": {
+ "wordwrap": "~0.0.2"
+ }
},
"optionator": {
"version": "0.8.3",
@@ -5883,6 +8550,115 @@
"word-wrap": "~1.2.3"
}
},
+ "ora": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-4.0.4.tgz",
+ "integrity": "sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww==",
+ "requires": {
+ "chalk": "^3.0.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.2.0",
+ "is-interactive": "^1.0.0",
+ "log-symbols": "^3.0.0",
+ "mute-stream": "0.0.8",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
+ },
+ "dependencies": {
+ "ansi-regex": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
+ "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
+ },
+ "ansi-styles": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
+ "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
+ "requires": {
+ "@types/color-name": "^1.1.1",
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "requires": {
+ "restore-cursor": "^3.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="
+ },
+ "mute-stream": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz",
+ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
+ },
+ "onetime": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz",
+ "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==",
+ "requires": {
+ "mimic-fn": "^2.1.0"
+ }
+ },
+ "restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "requires": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "strip-ansi": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
+ "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
+ "requires": {
+ "ansi-regex": "^5.0.0"
+ }
+ },
+ "supports-color": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
+ "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
"os-homedir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
@@ -5920,6 +8696,21 @@
"p-finally": "^1.0.0"
}
},
+ "parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "requires": {
+ "callsites": "^3.0.0"
+ },
+ "dependencies": {
+ "callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
+ }
+ }
+ },
"parse-asn1": {
"version": "5.1.5",
"resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz",
@@ -5938,6 +8729,17 @@
"resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.3.tgz",
"integrity": "sha512-QhhZ+DCCit2Coi2vmAKbq5RGTRcQUOE2+REgv8vdyu7MnYx2eZztegqtTx99TZ86GTIwqiy3+4nQTWZ2tgmdCA=="
},
+ "parse-json": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
+ "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
+ "requires": {
+ "@babel/code-frame": "^7.0.0",
+ "error-ex": "^1.3.1",
+ "json-parse-better-errors": "^1.0.1",
+ "lines-and-columns": "^1.1.6"
+ }
+ },
"parseurl": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
@@ -5963,6 +8765,11 @@
"integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
"dev": true
},
+ "path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
+ },
"path-parse": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
@@ -5974,6 +8781,11 @@
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
"integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
},
+ "path-type": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
+ },
"pathval": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz",
@@ -5992,6 +8804,69 @@
"sha.js": "^2.4.8"
}
},
+ "peer-id": {
+ "version": "0.12.5",
+ "resolved": "https://registry.npmjs.org/peer-id/-/peer-id-0.12.5.tgz",
+ "integrity": "sha512-3xVWrtIvNm9/OPzaQBgXDrfWNx63AftgFQkvqO6YSZy7sP3Fuadwwbn54F/VO9AnpyW/26i0WRQz9FScivXrmw==",
+ "requires": {
+ "async": "^2.6.3",
+ "class-is": "^1.1.0",
+ "libp2p-crypto": "~0.16.1",
+ "multihashes": "~0.4.15"
+ },
+ "dependencies": {
+ "async": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
+ "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
+ "requires": {
+ "lodash": "^4.17.14"
+ }
+ }
+ }
+ },
+ "peer-info": {
+ "version": "0.15.1",
+ "resolved": "https://registry.npmjs.org/peer-info/-/peer-info-0.15.1.tgz",
+ "integrity": "sha512-Y91Q2tZRC0CpSTPd1UebhGqniOrOAk/aj60uYUcWJXCoLTAnGu+4LJGoiay8ayudS6ice7l3SKhgL/cS62QacA==",
+ "requires": {
+ "mafmt": "^6.0.2",
+ "multiaddr": "^6.0.3",
+ "peer-id": "~0.12.2",
+ "unique-by": "^1.0.0"
+ },
+ "dependencies": {
+ "mafmt": {
+ "version": "6.0.10",
+ "resolved": "https://registry.npmjs.org/mafmt/-/mafmt-6.0.10.tgz",
+ "integrity": "sha512-FjHDnew6dW9lUu3eYwP0FvvJl9uvNbqfoJM+c1WJcSyutNEIlyu6v3f/rlPnD1cnmue38IjuHlhBdIh3btAiyw==",
+ "requires": {
+ "multiaddr": "^6.1.0"
+ }
+ }
+ }
+ },
+ "pem-jwk": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/pem-jwk/-/pem-jwk-2.0.0.tgz",
+ "integrity": "sha512-rFxu7rVoHgQ5H9YsP50dDWf0rHjreVA2z0yPiWr5WdH/UHb29hKtF7h6l8vNd1cbYR1t0QL+JKhW55a2ZV4KtA==",
+ "requires": {
+ "asn1.js": "^5.0.1"
+ },
+ "dependencies": {
+ "asn1.js": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz",
+ "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
+ "requires": {
+ "bn.js": "^4.0.0",
+ "inherits": "^2.0.1",
+ "minimalistic-assert": "^1.0.0",
+ "safer-buffer": "^2.1.0"
+ }
+ }
+ }
+ },
"pend": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
@@ -6018,6 +8893,11 @@
"which": "^1.2.10"
}
},
+ "picomatch": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz",
+ "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg=="
+ },
"pify": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
@@ -6054,6 +8934,11 @@
"find-up": "^1.0.0"
}
},
+ "pkginfo": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz",
+ "integrity": "sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8="
+ },
"pluralize": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
@@ -6146,6 +9031,122 @@
"resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz",
"integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU="
},
+ "prebuild-install": {
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.3.tgz",
+ "integrity": "sha512-GV+nsUXuPW2p8Zy7SarF/2W/oiK8bFQgJcncoJ0d7kRpekEA0ftChjfEaF9/Y+QJEc/wFR7RAEa8lYByuUIe2g==",
+ "optional": true,
+ "requires": {
+ "detect-libc": "^1.0.3",
+ "expand-template": "^2.0.3",
+ "github-from-package": "0.0.0",
+ "minimist": "^1.2.0",
+ "mkdirp": "^0.5.1",
+ "napi-build-utils": "^1.0.1",
+ "node-abi": "^2.7.0",
+ "noop-logger": "^0.1.1",
+ "npmlog": "^4.0.1",
+ "pump": "^3.0.0",
+ "rc": "^1.2.7",
+ "simple-get": "^3.0.3",
+ "tar-fs": "^2.0.0",
+ "tunnel-agent": "^0.6.0",
+ "which-pm-runs": "^1.0.0"
+ },
+ "dependencies": {
+ "bl": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.0.2.tgz",
+ "integrity": "sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==",
+ "optional": true,
+ "requires": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "optional": true
+ },
+ "readable-stream": {
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
+ "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
+ "optional": true,
+ "requires": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ }
+ }
+ }
+ },
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "optional": true,
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ },
+ "decompress-response": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz",
+ "integrity": "sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw==",
+ "optional": true,
+ "requires": {
+ "mimic-response": "^2.0.0"
+ }
+ },
+ "mimic-response": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-2.1.0.tgz",
+ "integrity": "sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA==",
+ "optional": true
+ },
+ "simple-get": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz",
+ "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==",
+ "optional": true,
+ "requires": {
+ "decompress-response": "^4.2.0",
+ "once": "^1.3.1",
+ "simple-concat": "^1.0.0"
+ }
+ },
+ "tar-fs": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.0.tgz",
+ "integrity": "sha512-9uW5iDvrIMCVpvasdFHW0wJPez0K4JnMZtsuIeDI7HyMGJNxmDZDOCQROr7lXyS+iL/QMpj07qcjGYTSdRFXUg==",
+ "optional": true,
+ "requires": {
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.0.0"
+ }
+ },
+ "tar-stream": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.2.tgz",
+ "integrity": "sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q==",
+ "optional": true,
+ "requires": {
+ "bl": "^4.0.1",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
+ }
+ }
+ }
+ },
"prelude-ls": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
@@ -6157,6 +9158,11 @@
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc="
},
+ "prettier": {
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
+ "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="
+ },
"process": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz",
@@ -6180,6 +9186,16 @@
"asap": "~2.0.3"
}
},
+ "promise-nodeify": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/promise-nodeify/-/promise-nodeify-3.0.1.tgz",
+ "integrity": "sha512-ghsSuzZXJX8iO7WVec2z7GI+Xk/EyiD+JZK7AZKhUqYfpLa/Zs4ylUD+CwwnKlG6G3HnkUPMAi6PO7zeqGKssg=="
+ },
+ "promisify-es6": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/promisify-es6/-/promisify-es6-1.0.3.tgz",
+ "integrity": "sha512-N9iVG+CGJsI4b4ZGazjwLnxErD2d9Pe4DPvvXSxYA9tFNu8ymXME4Qs5HIQ0LMJpNM7zj+m0NlNnNeqFpKzqnA=="
+ },
"prop-types": {
"version": "15.7.2",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz",
@@ -6205,6 +9221,33 @@
}
}
},
+ "protocol-buffers-schema": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.4.0.tgz",
+ "integrity": "sha512-G/2kcamPF2S49W5yaMGdIpkG6+5wZF0fzBteLKgEHjbNzqjZQ85aAs1iJGto31EJaSTkNvHs5IXuHSaTLWBAiA=="
+ },
+ "protons": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/protons/-/protons-1.2.1.tgz",
+ "integrity": "sha512-2oqDyc/SN+tNcJf8XxrXhYL7sQn2/OMl8mSdD7NVGsWjMEmAbks4eDVnCyf0vAoRbBWyWTEXWk4D8XfuKVl3zg==",
+ "requires": {
+ "buffer": "^5.5.0",
+ "protocol-buffers-schema": "^3.3.1",
+ "signed-varint": "^2.0.1",
+ "varint": "^5.0.0"
+ },
+ "dependencies": {
+ "buffer": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz",
+ "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==",
+ "requires": {
+ "base64-js": "^1.0.2",
+ "ieee754": "^1.1.4"
+ }
+ }
+ }
+ },
"proxy-addr": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz",
@@ -6245,6 +9288,24 @@
}
}
},
+ "pull-defer": {
+ "version": "0.2.3",
+ "resolved": "https://registry.npmjs.org/pull-defer/-/pull-defer-0.2.3.tgz",
+ "integrity": "sha512-/An3KE7mVjZCqNhZsr22k1Tx8MACnUnHZZNPSJ0S62td8JtYr/AiRG42Vz7Syu31SoTLUzVIe61jtT/pNdjVYA=="
+ },
+ "pull-stream": {
+ "version": "3.6.14",
+ "resolved": "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.14.tgz",
+ "integrity": "sha512-KIqdvpqHHaTUA2mCYcLG1ibEbu/LCKoJZsBWyv9lSYtPkJPBq8m3Hxa103xHi6D2thj5YXa0TqK3L3GUkwgnew=="
+ },
+ "pull-to-stream": {
+ "version": "0.1.1",
+ "resolved": "https://registry.npmjs.org/pull-to-stream/-/pull-to-stream-0.1.1.tgz",
+ "integrity": "sha512-thZkMv6F9PILt9zdvpI2gxs19mkDrlixYKX6cOBxAW16i1NZH+yLAmF4r8QfJ69zuQh27e01JZP9y27tsH021w==",
+ "requires": {
+ "readable-stream": "^3.1.1"
+ }
+ },
"pump": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
@@ -6302,6 +9363,26 @@
"strict-uri-encode": "^1.0.0"
}
},
+ "ramda": {
+ "version": "0.25.0",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.25.0.tgz",
+ "integrity": "sha512-GXpfrYVPwx3K7RQ6aYT8KPS8XViSXUVJT1ONhoKPE9VAleW42YE+U+8VEyGWt41EnEQW7gwecYJriTI0pKoecQ=="
+ },
+ "ramdasauce": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ramdasauce/-/ramdasauce-2.1.3.tgz",
+ "integrity": "sha512-Ml3CPim4SKwmg5g9UI77lnRSeKr/kQw7YhQ6rfdMcBYy6DMlwmkEwQqjygJ3OhxPR+NfFfpjKl3Tf8GXckaqqg==",
+ "requires": {
+ "ramda": "^0.24.1"
+ },
+ "dependencies": {
+ "ramda": {
+ "version": "0.24.1",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.24.1.tgz",
+ "integrity": "sha1-w7d1UZfzW43DUCIoJixMkd22uFc="
+ }
+ }
+ },
"randexp": {
"version": "0.4.9",
"resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.9.tgz",
@@ -6432,6 +9513,18 @@
}
}
},
+ "react-apollo": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/react-apollo/-/react-apollo-3.1.5.tgz",
+ "integrity": "sha512-xOxMqxORps+WHrUYbjVHPliviomefOpu5Sh35oO3osuOyPTxvrljdfTLGCggMhcXBsDljtS5Oy4g+ijWg3D4JQ==",
+ "requires": {
+ "@apollo/react-common": "^3.1.4",
+ "@apollo/react-components": "^3.1.5",
+ "@apollo/react-hoc": "^3.1.5",
+ "@apollo/react-hooks": "^3.1.5",
+ "@apollo/react-ssr": "^3.1.5"
+ }
+ },
"react-dnd": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-5.0.0.tgz",
@@ -6517,6 +9610,11 @@
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==",
"dev": true
},
+ "react-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/react-property/-/react-property-1.0.1.tgz",
+ "integrity": "sha512-1tKOwxFn3dXVomH6pM9IkLkq2Y8oh+fh/lYW3MJ/B03URswUTqttgckOlbxY2XHF3vPG6uanSc4dVsLW/wk3wQ=="
+ },
"react-tag-input": {
"version": "6.4.2",
"resolved": "https://registry.npmjs.org/react-tag-input/-/react-tag-input-6.4.2.tgz",
@@ -6539,6 +9637,14 @@
"util-deprecate": "^1.0.1"
}
},
+ "readdirp": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
+ "integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
+ "requires": {
+ "picomatch": "^2.2.1"
+ }
+ },
"recompose": {
"version": "0.27.1",
"resolved": "https://registry.npmjs.org/recompose/-/recompose-0.27.1.tgz",
@@ -6696,6 +9802,30 @@
"safe-buffer": "^5.1.1"
}
},
+ "rsa-pem-to-jwk": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/rsa-pem-to-jwk/-/rsa-pem-to-jwk-1.1.3.tgz",
+ "integrity": "sha1-JF52vbfnI0z+58oDLTG1TDj6uY4=",
+ "requires": {
+ "object-assign": "^2.0.0",
+ "rsa-unpack": "0.0.6"
+ },
+ "dependencies": {
+ "object-assign": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz",
+ "integrity": "sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo="
+ }
+ }
+ },
+ "rsa-unpack": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/rsa-unpack/-/rsa-unpack-0.0.6.tgz",
+ "integrity": "sha1-9Q69VqYoN45jHylxYQJs6atO3bo=",
+ "requires": {
+ "optimist": "~0.3.5"
+ }
+ },
"run-async": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
@@ -7118,6 +10248,14 @@
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
"integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0="
},
+ "signed-varint": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz",
+ "integrity": "sha1-UKmYnafJjCxh2tEZvJdHDvhSgSk=",
+ "requires": {
+ "varint": "~5.0.0"
+ }
+ },
"simple-concat": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz",
@@ -7175,6 +10313,35 @@
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
},
+ "source-map-support": {
+ "version": "0.5.19",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz",
+ "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==",
+ "requires": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
+ }
+ }
+ },
+ "split-ca": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/split-ca/-/split-ca-1.0.1.tgz",
+ "integrity": "sha1-bIOv82kvphJW4M0ZfgXp3hV2kaY="
+ },
+ "split2": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/split2/-/split2-3.1.1.tgz",
+ "integrity": "sha512-emNzr1s7ruq4N+1993yht631/JH+jaj0NYBosuKmLcq+JkGQ9MmTw1RB1fGaTCzUuseRIClrlSLHRNYGwWQ58Q==",
+ "requires": {
+ "readable-stream": "^3.0.0"
+ }
+ },
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
@@ -7196,11 +10363,25 @@
"tweetnacl": "~0.14.0"
}
},
+ "stable": {
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
+ "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w=="
+ },
"statuses": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
"integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
},
+ "stream-to-pull-stream": {
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/stream-to-pull-stream/-/stream-to-pull-stream-1.7.3.tgz",
+ "integrity": "sha512-6sNyqJpr5dIOQdgNy/xcDWwDuzAsAwVzhzrWlAPAQ7Lkjx/rv0wgvxEyKwTq6FmNd5rjTrELt/CLmaSw7crMGg==",
+ "requires": {
+ "looper": "^3.0.0",
+ "pull-stream": "^3.2.3"
+ }
+ },
"strict-uri-encode": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz",
@@ -7245,6 +10426,11 @@
"is-natural-number": "^4.0.1"
}
},
+ "strip-final-newline": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
+ "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="
+ },
"strip-hex-prefix": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz",
@@ -7258,6 +10444,14 @@
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
"integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo="
},
+ "style-to-object": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz",
+ "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==",
+ "requires": {
+ "inline-style-parser": "0.1.1"
+ }
+ },
"supports-color": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
@@ -7408,8 +10602,7 @@
"symbol-observable": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
- "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==",
- "dev": true
+ "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
"table": {
"version": "4.0.2",
@@ -7483,6 +10676,28 @@
"yallist": "^4.0.0"
}
},
+ "tar-fs": {
+ "version": "1.16.3",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.3.tgz",
+ "integrity": "sha512-NvCeXpYx7OsmOh8zIOP/ebG55zZmxLE0etfWRbWok+q2Qo8x/vOR/IJT1taADXPe+jsiu9axDb3X4B+iIgNlKw==",
+ "requires": {
+ "chownr": "^1.0.1",
+ "mkdirp": "^0.5.1",
+ "pump": "^1.0.0",
+ "tar-stream": "^1.1.2"
+ },
+ "dependencies": {
+ "pump": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz",
+ "integrity": "sha512-8k0JupWme55+9tCVE+FS5ULT3K6AbgqrGa58lTT49RpyfwwcGedHqaC5LlQNdEAumn/wFsu6aPwkuPMioy8kqw==",
+ "requires": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ }
+ }
+ },
"tar-stream": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.2.tgz",
@@ -7539,6 +10754,22 @@
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
},
+ "through2": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz",
+ "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==",
+ "requires": {
+ "inherits": "^2.0.4",
+ "readable-stream": "2 || 3"
+ },
+ "dependencies": {
+ "inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
+ }
+ }
+ },
"timed-out": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
@@ -7625,6 +10856,14 @@
"uglify-js": "^3.1.9"
}
},
+ "ts-invariant": {
+ "version": "0.4.4",
+ "resolved": "https://registry.npmjs.org/ts-invariant/-/ts-invariant-0.4.4.tgz",
+ "integrity": "sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==",
+ "requires": {
+ "tslib": "^1.9.3"
+ }
+ },
"tslib": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
@@ -7754,6 +10993,11 @@
"util-deprecate": "^1.0.2"
}
},
+ "unique-by": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/unique-by/-/unique-by-1.0.0.tgz",
+ "integrity": "sha1-UiDIa6e8Vy+3E610ZRRwy2RCEr0="
+ },
"universalify": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
@@ -7802,6 +11046,15 @@
"resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz",
"integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k="
},
+ "ursa-optional": {
+ "version": "0.10.1",
+ "resolved": "https://registry.npmjs.org/ursa-optional/-/ursa-optional-0.10.1.tgz",
+ "integrity": "sha512-/pgpBXVJut57dHNrdGF+1/qXi+5B7JrlmZDWPSyoivEcbwFWRZJBJGkWb6ivknMBA3bnFA7lqsb6iHiFfp79QQ==",
+ "requires": {
+ "bindings": "^1.5.0",
+ "nan": "^2.14.0"
+ }
+ },
"utf8": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/utf8/-/utf8-2.1.1.tgz",
@@ -7827,6 +11080,11 @@
"resolved": "https://registry.npmjs.org/validator/-/validator-7.2.0.tgz",
"integrity": "sha512-c8NGTUYeBEcUIGeMppmNVKHE7wwfm3mYbNZxV+c5mlv9fDHI7Ad3p07qfNrn/CvpdkK2k61fOLRO2sTEhgQXmg=="
},
+ "varint": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz",
+ "integrity": "sha1-2Ca4n3SQcy+rwMDtaT7Uddyynr8="
+ },
"varuint-bitcoin": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/varuint-bitcoin/-/varuint-bitcoin-1.1.2.tgz",
@@ -7857,6 +11115,14 @@
}
}
},
+ "wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
+ "requires": {
+ "defaults": "^1.0.3"
+ }
+ },
"web3": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/web3/-/web3-1.2.6.tgz",
@@ -8268,6 +11534,12 @@
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
"integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho="
},
+ "which-pm-runs": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz",
+ "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=",
+ "optional": true
+ },
"wide-align": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",
@@ -8301,6 +11573,11 @@
"its-set": "^1.1.5"
}
},
+ "wordwrap": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
+ "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc="
+ },
"wrap-ansi": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
@@ -8469,6 +11746,11 @@
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
+ "yaml": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz",
+ "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg=="
+ },
"yamljs": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/yamljs/-/yamljs-0.3.0.tgz",
@@ -8627,6 +11909,20 @@
"fd-slicer": "~1.0.1"
}
},
+ "zen-observable": {
+ "version": "0.8.15",
+ "resolved": "https://registry.npmjs.org/zen-observable/-/zen-observable-0.8.15.tgz",
+ "integrity": "sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ=="
+ },
+ "zen-observable-ts": {
+ "version": "0.8.21",
+ "resolved": "https://registry.npmjs.org/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz",
+ "integrity": "sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg==",
+ "requires": {
+ "tslib": "^1.9.3",
+ "zen-observable": "^0.8.0"
+ }
+ },
"zone-file": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/zone-file/-/zone-file-0.2.3.tgz",
diff --git a/package.json b/package.json
index 3cb3190d9..483d57643 100644
--- a/package.json
+++ b/package.json
@@ -26,8 +26,11 @@
"postinstall": "opencollective-postinstall || exit 0"
},
"dependencies": {
+ "@apollo/react-hooks": "^3.1.5",
"@babel/runtime": "^7.9.6",
+ "@graphprotocol/graph-cli": "^0.18.0",
"abi-decoder": "^1.2.0",
+ "apollo-boost": "^0.4.9",
"atob": "^2.1.2",
"autoprefixer": "^6.4.1",
"babel-runtime": "^6.26.0",
@@ -53,8 +56,10 @@
"fortmatic": "^1.1.3",
"fstream": "^1.0.12",
"gini": "^1.1.7",
+ "graphql": "^14.7.0",
"hapi": "^17.8.5",
"hoek": "^5.0.4",
+ "html-react-parser": "^0.13.0",
"https-proxy-agent": "^2.2.4",
"human-standard-token-abi": "^2.0.0",
"json-schema-faker": "^0.4.7",
@@ -71,6 +76,7 @@
"randomfill": "^1.0.4",
"react": "^16.12.0",
"react-addons-pure-render-mixin": "^15.6.2",
+ "react-apollo": "^3.1.5",
"react-dom": "^16.12.0",
"react-fastclick": "^3.0.2",
"slugify": "^1.3.6",
diff --git a/private/lib/dao.json b/private/lib/dao.json
index 5a238ad11..ba6301142 100644
--- a/private/lib/dao.json
+++ b/private/lib/dao.json
@@ -9,795 +9,6 @@
"publicAddress": "0x0372f3696fa7dc99801f435fd6737e57818239f2"
}
}
- },
- {
- "name": "Moloch DAO",
- "profile": {
- "logo": "/images/moloch.png",
- "bio": "A community DAO focused on funding Ethereum development, in the name of Moloch the God of Coordination Failure",
- "blockchain": {
- "publicAddress": "0x1fd169a4f5c59acf79d0fd5d91d1201ef1bce9f1"
- }
- }
- },
- {
- "name": "Raid Guild",
- "profile": {
- "logo": "/images/raid.png",
- "bio": "⚔️A dao for builders to form Raid Parties and team up on epic boss fights (open source web3 projects). Pledge Tribute: 1 weth for 10 shares",
- "blockchain": {
- "publicAddress": "0xbd6fa666fbb6fdeb4fc5eb36cdd5c87b069b24c1"
- }
- }
- },
- {
- "name": "Rocket LP DAO",
- "profile": {
- "logo": "/images/rocket.png",
- "bio": "Lending pools for (risk-taking) Rocket Bank LPs.",
- "blockchain": {
- "publicAddress": "0xa9ade79ab198a579772dd5e310ea28643e4a4421"
- }
- }
- },
- {
- "name": "Meta Gamma Delta",
- "profile": {
- "logo": "/images/metagammadelta.jpg",
- "bio": "The home of women in Web3",
- "blockchain": {
- "publicAddress": "0x1b3d7efb93ec432b0d1d56880c23303979b379e9"
- }
- }
- },
- {
- "name": "Marketing DAO",
- "profile": {
- "logo": "/images/marketing.jpg",
- "bio": "Inspired by Moloch DAO, Marketing DAO comes to life to fund brand and marketing initiatives for Ethereum and its ecosystem.",
- "blockchain": {
- "publicAddress": "0x6c9b4f1bdddd7704a26a5caf5242e88501dc5f0b"
- }
- }
- },
- {
- "name": "Orochi DAO V2",
- "profile": {
- "bio": "⛩️ Party like AD 720 🍶",
- "blockchain": {
- "publicAddress": "0xb42616e266cb0c6d34c1434f09b95ed50bb551ed"
- }
- }
- },
- {
- "name": "DeoraTest",
- "profile": {
- "bio": "some description",
- "blockchain": {
- "publicAddress": "0x48c2f0a379f8cc93b1be3775964e242adebfd8dc"
- }
- }
- },
- {
- "name": "Creative Collabo DAO",
- "profile": {
- "bio": "Gain experience with DAOs for coordinating creative web3 projects.",
- "blockchain": {
- "publicAddress": "0x161e99f7467f20602c7ff9ff85f22be1ecc41b86"
- }
- }
- },
- {
- "name": "DAOSquare",
- "profile": {
- "bio": "Promote the concept of DAO and enlighten people with it. Keep DAO shining every corner of our life while extending the influence of Ethereum ecosystem to society.",
- "blockchain": {
- "publicAddress": "0x486375801734a9c2a607687ec8f8df5886868f94"
- }
- }
- },
- {
- "name": "Zero Collateral DAO",
- "profile": {
- "bio": "Community DAO focused on governing development and growth of the Zero Collateral Protocol. Borrow an undercollateralized DeFi loan today.",
- "blockchain": {
- "publicAddress": "0x56e0840c1b86886a743cc8fb696bc9d45f867bfc"
- }
- }
- },
- {
- "name": "TaoDAO",
- "profile": {
- "bio": "TAO的个人DAO实验",
- "blockchain": {
- "publicAddress": "0x513838f426c3ace6c4930ae74617d2c5c584b648"
- }
- }
- },
- {
- "name": "DAOjones",
- "profile": {
- "bio": "The Dow Jones of Ethereum",
- "blockchain": {
- "publicAddress": "0xfac8b74cfccbaf1c308d83f75832be860dd288c1"
- }
- }
- },
- {
- "name": "HelloWorldDAO",
- "profile": {
- "bio": "The \"Hello World\" of DAOs",
- "blockchain": {
- "publicAddress": "0xd7cb71297625ce3b1351be36ee6144d0c987f06f"
- }
- }
- },
- {
- "name": "ArbitrageDAO",
- "profile": {
- "logo": "/images/arbitrage.png",
- "bio": "A Union Arbitrage Fund. On-chain liquidity + Off-chain bots for Arbitrage Opportunities. Earn a share of all Arbitrage opportunities (DDEX, Compound, dYdX, MakerDAO etc). A DAO to support the DeFi ecosystem.",
- "blockchain": {
- "publicAddress": "0xa8fc468da0417f71393523393bd7d57450143a62"
- }
- }
- },
- {
- "name": "🌱Charity DAO",
- "profile": {
- "bio": "Building tools and promoting crypto giving.",
- "blockchain": {
- "publicAddress": "0x014ded81ddb85f7d178a66bcdd6cd6ca89ba7cc5"
- }
- }
- },
- {
- "name": "johbaTestDAO",
- "profile": {
- "bio": "demoing a DAO",
- "blockchain": {
- "publicAddress": "0xda6f46819152ce84a7e5f975024913320fe0007d"
- }
- }
- },
- {
- "name": "Alex DAO",
- "profile": {
- "bio": "A DAO reserved for people whose name contain \"Alex*\".",
- "blockchain": {
- "publicAddress": "0x96c8c63352d416378040a31ab8a231dd8104da58"
- }
- }
- },
- {
- "name": "cat",
- "profile": {
- "bio": "see spot run",
- "blockchain": {
- "publicAddress": "0xad4b526c28f7b9bc0345cb6ab825b799deeefb37"
- }
- }
- },
- {
- "name": "wagv",
- "profile": {
- "bio": "test",
- "blockchain": {
- "publicAddress": "0xc7694cd015587e8ce621a4f0676cababa21ad7d8"
- }
- }
- },
- {
- "name": "HobbyHodlrs",
- "profile": {
- "bio": "Its not just a movement, its a strategy, its research to maximize returns. Become a hobby hodlr to propose new strategies or projections in the HobbyHodlr App.",
- "blockchain": {
- "publicAddress": "0xdfffd273bb9ef82214177d8255bf7e1652f1a63e"
- }
- }
- },
- {
- "name": "Explorers DAO",
- "profile": {
- "bio": "Tutorial for new DAO-ists",
- "blockchain": {
- "publicAddress": "0x6fac6702e5ab65bf836a5645a567f7e38e56a227"
- }
- }
- },
- {
- "name": "TestDAO",
- "profile": {
- "bio": "testing suitability of platform for use case",
- "blockchain": {
- "publicAddress": "0x5f7e55224669c57e3cfc7244eb9eef49183ee70a"
- }
- }
- },
- {
- "name": "Real Fake DAO",
- "profile": {
- "bio": "Hey are you tired of real DAO tokens cluttering up your ETH wallet where you get 'em and you actually use 'em for social coordination? Get on down to Real Fake DAO, that's us!",
- "blockchain": {
- "publicAddress": "0x482122333e3af9b969871a66f6c3aa8ea76db31a"
- }
- }
- },
- {
- "name": "Help the freelancers",
- "profile": {
- "bio": "TEST Let's help those who once helped the community with technical, marketing and designer skills!",
- "blockchain": {
- "publicAddress": "0x6d3e5416d47478e1bcda74faeb98d16e26d50402"
- }
- }
- },
- {
- "name": "SWEAT DAO",
- "profile": {
- "bio": "Valar Dohaeris",
- "blockchain": {
- "publicAddress": "0xe8a06e64812a06a12c170cecb15c6838f6d26637"
- }
- }
- },
- {
- "name": "SneakerDAO",
- "profile": {
- "bio": "SneakerCred DAO",
- "blockchain": {
- "publicAddress": "0xf7ca63ef8a17379d5d50e5ec6d5845dc58c3a64a"
- }
- }
- },
- {
- "name": "OïkosDAO",
- "profile": {
- "bio": "Oïkos, is a protocol aiming to catalyse the ecological transition in the food production and retail industry. Food production is a huge fossil fuel consumer, farmers are struggling all over the world being dependent on corporation for supply of seeds , weed killer... Alternative exist (Agroforestry, permaculture, silvopasture...), they are more efficient, consume less energy and are real benefits for local economies, also they provide a carbon sink, which is a benefits for the whole. How do Oïkos could work? It connects a resource seeker and its consumer, and the transaction is managed by an algorithm which take into account all the data of production ( water consumption, biodiversity of the farm, production/ha, pesticide use, type of agriculture...) and the data of distribution ( transport emission, packaging...). With all these data, it reward the behavior of the different parties with the Oïkos tokens (the mining process). The Oïkos tokens can then be use to reduce the price of transaction or be saved and use as a basis for DeFi for agricultural projects.",
- "blockchain": {
- "publicAddress": "0x4860317bca9a4fbbb9021f65e6f09a25d6aeaed3"
- }
- }
- },
- {
- "name": "Giveth Test DAO 1",
- "profile": {
- "bio": "This DAO is testing if a Moloch DAO can donate to a Giveth Campaign",
- "blockchain": {
- "publicAddress": "0x34b43f77d22b98876e702622722755c5d74b6d22"
- }
- }
- },
- {
- "name": "LeskoDao",
- "profile": {
- "bio": "Public domain Documentation Publishing & sales to fund public goods and reward contributors.",
- "blockchain": {
- "publicAddress": "0x4dc514426e4c273cec292affffe6fe19cb9a4a81"
- }
- }
- },
- {
- "name": "NOS DAO",
- "profile": {
- "bio": "Ncov Open Source DAO(简称NOS),是一个利用DAO把捐款奖励给为疫情做贡献的开源开发者。任何人都可以通过贡献DAI加入NOS,NOS中任何成员都可以提交提案说明要奖励给哪个开源开发者,如果不同意提案,NOS成员可以退出并取出自己的捐款。",
- "blockchain": {
- "publicAddress": "0x3d83d62a11e6e55376a9f9604ff049b493450b85"
- }
- }
- },
- {
- "name": "DeFi DAO",
- "profile": {
- "bio": "The DAO for everything DeFi.",
- "blockchain": {
- "publicAddress": "0x501c4311350fe29ca477296a40b5c9dbefcb7517"
- }
- }
- },
- {
- "name": "Test Token",
- "profile": {
- "bio": "This is a test token. Do not purchase.",
- "blockchain": {
- "publicAddress": "0x4862376ff04f07922fcee312053ad5ff2d6834b3"
- }
- }
- },
- {
- "name": "ora",
- "profile": {
- "bio": "ukr folks",
- "blockchain": {
- "publicAddress": "0xb40c08ffedf2103cee1d5abd7791e448403e1e97"
- }
- }
- },
- {
- "name": "NFT Art collection DAO",
- "profile": {
- "bio": "For profit DAO. Together buy NFT art and sell it for profit. The price of NFT art has gone up, This DAO will make it possible to get inn on buying a small part of the art collection for then to together vote on selling it or renting it out to virtual galleries.",
- "blockchain": {
- "publicAddress": "0x101aad3a4e4e63f88607144ac3e7318257705e36"
- }
- }
- },
- {
- "name": "InSpaceDAO",
- "profile": {
- "bio": "",
- "blockchain": {
- "publicAddress": "0x93c69e4023e4ebaf13c59daae8dc02b69a6f5be7"
- }
- }
- },
- {
- "name": "Horizin",
- "profile": {
- "bio": "Experimenting with the future.",
- "blockchain": {
- "publicAddress": "0xe3aa9ca8878efcde4990bcb6159445fe9843902f"
- }
- }
- },
- {
- "name": "ComunionDAO",
- "profile": {
- "bio": "Let labor value flow, accumulate and trade freely like capital!",
- "blockchain": {
- "publicAddress": "0x210aa04057418ee6e571921bd02183430f8292eb"
- }
- }
- },
- {
- "name": "Socical money",
- "profile": {
- "bio": "❤️",
- "blockchain": {
- "publicAddress": "0x288f70137c4057550f2952468a68d1d223019073"
- }
- }
- },
- {
- "name": "MontelunaDAO",
- "profile": {
- "bio": "A personal wrapper DAO for consulting services in the Ethereum DApp/DeFi space. Contact msg.monteluna.eth to submit a proposal.",
- "blockchain": {
- "publicAddress": "0xbf7b847ff199802daf98d3026f84f0616fed30bf"
- }
- }
- },
- {
- "name": "Demo Day NYC 2020",
- "profile": {
- "bio": "MetaCartel's Demo Day NYC 2020",
- "blockchain": {
- "publicAddress": "0x7e0d0e6bbc029d5aa78353327115072db8c19140"
- }
- }
- },
- {
- "name": "ssh",
- "profile": {
- "bio": "Do the Value Free to Flow !",
- "blockchain": {
- "publicAddress": "0x46c3e0ee080935768a0d97012841213e88b1fd91"
- }
- }
- },
- {
- "name": "BlackBoxDelta",
- "profile": {
- "bio": "A collaboration to distill a meta strategy for crypto trading. Using automated remote trading, strategies and pools can take positions to see which follows the market the best, and which influences the market the most. It's a DAO for traders, engineers, and automation enthusiasts.",
- "blockchain": {
- "publicAddress": "0xe6d5b72d5433fc5584a7f6d01ddeead735b270e7"
- }
- }
- },
- {
- "name": "DappHero",
- "profile": {
- "bio": "A DappHero Dao",
- "blockchain": {
- "publicAddress": "0x81699a6bfe9e62e8dbdb6e080a9ca2943f981a22"
- }
- }
- },
- {
- "name": "test2",
- "profile": {
- "bio": "test2",
- "blockchain": {
- "publicAddress": "0x22274338be63f4f3e01d51f23fc50be138ee0cae"
- }
- }
- },
- {
- "name": "Song",
- "profile": {
- "bio": "Personal DAO",
- "blockchain": {
- "publicAddress": "0xe0b9cfd861de24553e68b05917a58af28695d04c"
- }
- }
- },
- {
- "name": "FUTURE",
- "profile": {
- "bio": "FUTURE",
- "blockchain": {
- "publicAddress": "0xef8d82a94d5d199827c5bdaeac0e02b879b12b7a"
- }
- }
- },
- {
- "name": "WowDAO",
- "profile": {
- "bio": "Such DAO such WOW!",
- "blockchain": {
- "publicAddress": "0x195ab0b062685b8a940e78a0e6b3b2db230c7fb7"
- }
- }
- },
- {
- "name": "Buildao",
- "profile": {
- "bio": "We are a Dao of devs that build interesting projects to make the space more usable. More open. More powerful. More revolutionary.",
- "blockchain": {
- "publicAddress": "0xeaa32c0fcc78c86e41fe031bbfa7ba695126dff1"
- }
- }
- },
- {
- "name": "TestDAO",
- "profile": {
- "bio": "Test",
- "blockchain": {
- "publicAddress": "0x95213610eeaa4f7fde7d47a216a367b7440b9ddb"
- }
- }
- },
- {
- "name": "Underdog Digital Asset Group",
- "profile": {
- "bio": "A \"family and friends\" style DAO started by Underdog Digital Asset Group, to slowly introduce friends/family into Crypto/DeFi investing",
- "blockchain": {
- "publicAddress": "0x13555020d1d7690ba37d6c0042656fcfa751d2a3"
- }
- }
- },
- {
- "name": "MinterDAO",
- "profile": {
- "bio": "Solve the NFT data storage problem and all that comes with minting NFTs",
- "blockchain": {
- "publicAddress": "0x24f13448d8e068f8388aecd4652e184135ac831c"
- }
- }
- },
- {
- "name": "DeFiZap DAO",
- "profile": {
- "bio": "Democratizing access to create new financial instruments by enabling anyone to customize their own Zaps(aka investment strategies) & submit for approval. If voted in, Zap contract is deployed and creator is awarded with DAO tokens. Accrued fees are proportionally split among DAO token holders. DAO members are aligned to focus on governing development and growth of the DeFiZap Protocol. Building custom Zaps, creators will further user adoption through 1-click access gateways to interesting opportunities in DeFi. 💸Lending,⛽️Staking, 🦄Pooling, 🚀Leveraged Liquidity Pooling and more...",
- "blockchain": {
- "publicAddress": "0x906b0b6dee8e4c9a3b36737f643374485397fa18"
- }
- }
- },
- {
- "name": "UniDao",
- "profile": {
- "bio": "Unidao is an ecosystem for different DAOs and a parent DAO for several DAOs. We have MarsDAO - DAO for DeFi pools and staking, SaturnDAO - DAO for metaverse (Decentraland, Cryptovoxels, somnium space etc.) management, AutolycusDAO - DAO for ENS domains collective ownership and EarthDAO - DAO for patents as ERC721 ownership.",
- "blockchain": {
- "publicAddress": "0x112bc7f1337de4477781207d8dc788ec232170a2"
- }
- }
- },
- {
- "name": "genesis",
- "profile": {
- "bio": "Hack the planet(s)",
- "blockchain": {
- "publicAddress": "0xb5a7deccdfa92187ae77de70994176f774732ded"
- }
- }
- },
- {
- "name": "Spread The Word",
- "profile": {
- "bio": "A word of mouth marketing DAO to support companies in the Ethereum ecosystem. Be rewarded in DAI for helping to create awareness for projects you believe in.",
- "blockchain": {
- "publicAddress": "0xbfac046994715590bdf62e6b5965d0f4565eb822"
- }
- }
- },
- {
- "name": "Minos- test",
- "profile": {
- "bio": "just testing",
- "blockchain": {
- "publicAddress": "0x17a09f59574e87db1a0e94af5147129f68ccf3de"
- }
- }
- },
- {
- "name": "MatrixTest",
- "profile": {
- "bio": "Testing the Matrix DAO.",
- "blockchain": {
- "publicAddress": "0x61cf820d6ac8726a62f1e65376efd81691b51868"
- }
- }
- },
- {
- "name": "K",
- "profile": {
- "bio": "DAO",
- "blockchain": {
- "publicAddress": "0x545c32fa2713ae020570742c78ab17a522a794d5"
- }
- }
- },
- {
- "name": "Scottish Ethereum Community",
- "profile": {
- "bio": "Scottish Ethereum Community",
- "blockchain": {
- "publicAddress": "0x160042db5365a09c1372ee51de92820891c758f6"
- }
- }
- },
- {
- "name": "Guild",
- "profile": {
- "bio": "Prototype DAO for Guild microgrant program.",
- "blockchain": {
- "publicAddress": "0x14f00110956d2f6171afc16baab4c0bac334801f"
- }
- }
- },
- {
- "name": "test",
- "profile": {
- "bio": "test",
- "blockchain": {
- "publicAddress": "0x54af0987ddead435a6fcb2206a2ba97f38309ab0"
- }
- }
- },
- {
- "name": "DAvidO",
- "profile": {
- "bio": "DAvidO is a system that rewards @trustlessstate for producing and releasing articles!",
- "blockchain": {
- "publicAddress": "0x2f2f18904ed01112a5d3c51f6f393d893ba7d6a7"
- }
- }
- },
- {
- "name": "test33",
- "profile": {
- "bio": "lkjlkj",
- "blockchain": {
- "publicAddress": "0x3bcf65756463c54e15fa26b8f441cdd927b66207"
- }
- }
- },
- {
- "name": "Zelda Guild",
- "profile": {
- "bio": "🗡️ Protect the Tri Force at all costs🛡️",
- "blockchain": {
- "publicAddress": "0x8a6b2d789c00c6b0972320df6e558268fed8a5a1"
- }
- }
- },
- {
- "name": "BaoDao",
- "profile": {
- "bio": "Decentralized Dimsum",
- "blockchain": {
- "publicAddress": "0xacf72f22b47cbdfc39c08de103c34cb802576d38"
- }
- }
- },
- {
- "name": "zha DAO",
- "profile": {
- "bio": "if you get, you get",
- "blockchain": {
- "publicAddress": "0x72f7afd4ce96171c30f1a5260cbf7faba32bc3fa"
- }
- }
- },
- {
- "name": "FREEVIRGIL",
- "profile": {
- "bio": "FREEVIRGIL",
- "blockchain": {
- "publicAddress": "0xf556458cd4043b95bf7a0e3f89e9d78febdd5b72"
- }
- }
- },
- {
- "name": "Cheese Dao 2",
- "profile": {
- "bio": "So good the first time",
- "blockchain": {
- "publicAddress": "0x91a0dab8b10fede56f23ab133628ab7f3c65a9b6"
- }
- }
- },
- {
- "name": "CryptoraDAO",
- "profile": {
- "bio": "Colorado blockchains step 0 dao with long term goal of awesomeness. join us",
- "blockchain": {
- "publicAddress": "0xca09277f288b255fb30fe990253e798f48a43715"
- }
- }
- },
- {
- "name": "FriendshipDAO",
- "profile": {
- "bio": "A place for friends to gather (+ free hugz).",
- "blockchain": {
- "publicAddress": "0xe0e3aaac46e9f1147a1f1c6e0a48979cc2c0df51"
- }
- }
- },
- {
- "name": "Dolo DAO",
- "profile": {
- "bio": "DOLO is a decentralized open learning organism, built and run by its members, iterating towards a smarter education system for all.",
- "blockchain": {
- "publicAddress": "0xe4e9cb9b13cf9abf61c3fcacb14d916a01d3ff29"
- }
- }
- },
- {
- "name": "Opensourcecircus",
- "profile": {
- "bio": "Opensourcecircus",
- "blockchain": {
- "publicAddress": "0x148daa26808201add646d16c5c0a4d0e60d8847c"
- }
- }
- },
- {
- "name": "NewNormal",
- "profile": {
- "bio": "NewNormal",
- "blockchain": {
- "publicAddress": "0x7db1f449e67cc4ab38887a364711feea1b2a8101"
- }
- }
- },
- {
- "name": "Porn Dao",
- "profile": {
- "bio": "Porn Dao",
- "blockchain": {
- "publicAddress": "0x0e5a503842c947762e66c42f8a773757edeb2315"
- }
- }
- },
- {
- "name": "SAINT FAME",
- "profile": {
- "bio": "The world's first internet-owned fashion house",
- "blockchain": {
- "publicAddress": "0xba7f8d7093a928929e7564c6c6e869863fade451"
- }
- }
- },
- {
- "name": "Domina Dao",
- "profile": {
- "bio": "Give to your Mistress Ether, my Slave",
- "blockchain": {
- "publicAddress": "0x23bfa86f33660a5135dac82bf3804c153b1ab72f"
- }
- }
- },
- {
- "name": "BillDAO",
- "profile": {
- "bio": "One of the best of my generation destroyed by madness, starving hysterical naked, dragging myself through the negro streets at dawn looking for an angry [caffeine] fix, an angelheaded hipster burning for the ancient heavenly connection to the starry dynamo in the machinery of night...",
- "blockchain": {
- "publicAddress": "0xa83bfad0771dcb68f40b0c93db3d2f63757f628c"
- }
- }
- },
- {
- "name": "Pixer DAO",
- "profile": {
- "bio": "A experimental DAO to funding films 🎬",
- "blockchain": {
- "publicAddress": "0x375cc4d070482484e6c351b9d2de244b3076bf7d"
- }
- }
- },
- {
- "name": "DAO of the Earth",
- "profile": {
- "bio": "A community DAO focused on combatting Climate Change, Deforestation, and the Carbon Crisis.",
- "blockchain": {
- "publicAddress": "0x14bf7c8ef3a9484522f610e1904ad23236289eaa"
- }
- }
- },
- {
- "name": "DefiVC",
- "profile": {
- "bio": "Members of this DAO invest in exciting opportunities in the Decentralised finance space. Funding the future of finance",
- "blockchain": {
- "publicAddress": "0xa1c9014ab15a5dd5e0bd987f36ce878bb607d730"
- }
- }
- },
- {
- "name": "CanEtxa",
- "profile": {
- "bio": "Cooperative Housing - Economic Disobedience & Building Radical Alternatives to State Power",
- "blockchain": {
- "publicAddress": "0x1c4aa92cd9ba7e6a40d19660f94ee8d23eb56639"
- }
- }
- },
- {
- "name": "Timebomb DAO",
- "profile": {
- "bio": "Experimental timebomb dao",
- "blockchain": {
- "publicAddress": "0xf551b1c3822ba1062599e0f7d7db0a282ec4076b"
- }
- }
- },
- {
- "name": "RobinDAO",
- "profile": {
- "bio": "Funding",
- "blockchain": {
- "publicAddress": "0xf4ea80eacd51173c33ae154da6f6e852b5133ecc"
- }
- }
- },
- {
- "name": "RimbleDAO",
- "profile": {
- "bio": "Coordinating the advancement of the open source Rimble project. Experimental.",
- "blockchain": {
- "publicAddress": "0x3b1c5ca91ec6ceda5ef3cef8abc275f63ac35232"
- }
- }
- },
- {
- "name": "DAOfest",
- "profile": {
- "bio": "The Festival and Concert DAO",
- "blockchain": {
- "publicAddress": "0xd32ef859c95d8dd9e673bd150fbf89c648f11a8e"
- }
- }
- },
- {
- "name": "Avarice",
- "profile": {
- "bio": "Experimental. Expect dragons. No promises",
- "blockchain": {
- "publicAddress": "0xd2cf5d07750265706f563351f35940d86b121e30"
- }
- }
- },
- {
- "name": "Degeneracy DAO 7200380134",
- "profile": {
- "bio": "Moloch! Solitude! Filth! Ugliness! Ashcans and unobtainable dollars!",
- "blockchain": {
- "publicAddress": "0x5bcaae60f557b456a902b91fa49fed009eb2d0bf"
- }
- }
}
]
}
diff --git a/public/templates/daoverse/css/daoverse.css b/public/templates/daoverse/css/daoverse.css
index 6835e1c59..c11999ffd 100755
--- a/public/templates/daoverse/css/daoverse.css
+++ b/public/templates/daoverse/css/daoverse.css
@@ -1,3 +1,8 @@
+:root {
+ --main-link-color: #7d6186;
+ --main-menu-color: #580074;
+}
+
body {
padding-right: 0px;
padding-left: 0px;
@@ -82,6 +87,7 @@ a {
}
a:hover {
+ color: var(--main-menu-color);
text-decoration: underline;
}
@@ -815,7 +821,7 @@ blockquote {
margin: 5px;
padding: 9px 14px;
border-radius: 6px;
- background-color: #580074;
+ background-color: var(--main-menu-color);;
font-family: Lato, sans-serif;
color: #fff;
font-size: 14px;
@@ -895,7 +901,7 @@ blockquote {
width: 100%;
margin-right: 0px;
margin-left: 0px;
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
font-size: 12px;
}
@@ -907,9 +913,9 @@ blockquote {
}
.button.login-button:active {
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
background-color: transparent;
- color: #580074;
+ color: var(--main-menu-color);
}
.button.login-button.button-secondary {
@@ -1084,9 +1090,9 @@ blockquote {
.button.button-cta:active {
padding-top: 6px;
padding-bottom: 9px;
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
background-color: transparent;
- color: #580074;
+ color: var(--main-menu-color);
}
.button.button-menu {
@@ -2262,10 +2268,8 @@ blockquote {
.identity {
display: inline-block;
- margin: 0px 20px 0px 5px;
+ margin: 0px;
padding-left: 0px;
- float: left;
- border-radius: 5px;
text-align: left;
}
@@ -2322,7 +2326,7 @@ blockquote {
.identity-label {
display: inline-block;
- color: #48587d;
+ color: var(--main-link-color);
font-size: 16px;
line-height: 22px;
text-decoration: none;
@@ -2368,10 +2372,16 @@ blockquote {
}
.identity-label.identity-label-micro {
- font-size: 11px;
- line-height: 11px;
- letter-spacing: 1px;
- text-transform: uppercase;
+ font-size: 0.75em;
+ line-height: 1em;
+ letter-spacing: 0em;
+ font-weight: 300;
+}
+
+@media (max-width: 479px) {
+ .identity-label.identity-label-micro {
+ font-size: 0.85em;
+ }
}
.identity-label.identity-label-micro.identity-label-post {
@@ -2418,7 +2428,7 @@ blockquote {
}
.verifier {
- margin-top: 5px;
+ margin: 5px 0px;
padding-left: 0px;
clear: both;
color: #7d849f;
@@ -2956,8 +2966,7 @@ blockquote {
}
.identity-peer {
- margin-top: 6px;
- margin-left: 6px;
+ margin: 7px 0px 0px 7px;
float: left;
}
@@ -3560,6 +3569,7 @@ blockquote {
.meta.meta-search.meta-bar {
background:#f8f6f9;
+ padding:10px;
margin-bottom:10px;
border-bottom:1px solid #f1eef3;
}
@@ -3823,9 +3833,8 @@ blockquote {
}
.title-input.title-feed {
- margin-top: 5px;
- margin-bottom: 5px;
border-style: none;
+ margin: 10px 0px;
}
.title-input.title-feed:hover {
@@ -4107,13 +4116,13 @@ blockquote {
}
.navbar-button.navbar-button-active {
- background-color: #580074;
+ background-color: var(--main-menu-color);
}
.navbar-button.navbar-button-active.navbar-button-action {
margin-top: 6px;
margin-bottom: 6px;
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
font-size: 16px;
line-height: 18px;
cursor: pointer;
@@ -4125,9 +4134,9 @@ blockquote {
}
.navbar-button.navbar-button-active.navbar-button-action:active {
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
background-color: hsla(283.6363636363637, 75.57%, 25.69%, 0.10);
- color: #580074;
+ color: var(--main-menu-color);
}
.navbar-button.navbar-button-active.navbar-button-action.navbar-button-action-disabled {
@@ -4678,7 +4687,7 @@ blockquote {
display: inline-block;
overflow: hidden;
margin: 10px auto;
- padding: 0px 10px 0px 5px;
+ padding: 0px 10px 0px 0px;
border-radius: 5px;
color: #7d849f;
font-size: 12px;
@@ -4688,7 +4697,7 @@ blockquote {
}
.micro-button:hover {
- color: #ff617e;
+ color: var(--main-menu-color);
}
.micro-button:active {
@@ -4738,7 +4747,7 @@ blockquote {
.micro-button.micro-button-feed {
display: block;
- margin: 5px 0px 0px 10px;
+ margin: 0px;
float: left;
}
@@ -4763,7 +4772,11 @@ blockquote {
}
.micro-label {
- display: inline-block;
+ margin-top:7px;
+}
+
+.micro-label-button {
+ display:inline-block;
}
.micro {
@@ -5855,7 +5868,7 @@ blockquote {
float: right;
border-radius: 3px;
/* background-color: #f9f9ff; */
- color: #48587d;
+ color: var(--main-link-color);
font-size: 10px;
line-height: 18px;
font-weight: 400;
@@ -5968,7 +5981,8 @@ blockquote {
.option-placeholder.identity-placeholder {
height: 15px;
margin-top: 8px;
- background-color: #f2f2f5;
+ opacity:0.5;
+ background-color: var(--main-link-color);
}
.option-placeholder.short {
@@ -6191,7 +6205,6 @@ blockquote {
}
.token {
- margin-top: 0px;
color: #fff;
font-size:16px;
}
@@ -6653,9 +6666,9 @@ blockquote {
padding-right: 5px;
padding-left: 5px;
float: right;
- border: 1px solid #48587d;
+ border: 1px solid var(--main-link-color);
border-radius: 100px;
- background-color: #48587d;
+ background-color: var(--main-link-color);
color: #fff;
font-size: 10px;
line-height: 15px;
@@ -7625,7 +7638,7 @@ blockquote {
float: left;
max-height:28px;
cursor: move;
- background: #580074;
+ background: var(--main-menu-color);
border-radius: 25px;
color: white;
padding: 0px 10px;
diff --git a/public/templates/daoverse/css/extra.css b/public/templates/daoverse/css/extra.css
index 77400a369..df60d7b53 100644
--- a/public/templates/daoverse/css/extra.css
+++ b/public/templates/daoverse/css/extra.css
@@ -208,7 +208,7 @@ body, h4, h1, h2 {
margin: 15px 0px 0px;
padding: 12px 14px;
border-radius: 6px;
- background-color: #580074;
+ background-color: var(--main-menu-color);
font-family: Lato, sans-serif;
color: #fff;
font-size: 14px;
@@ -216,7 +216,7 @@ body, h4, h1, h2 {
text-align: center;
text-transform: uppercase;
cursor: pointer;
- border: 1px solid #580074;
+ border: 1px solid var(--main-menu-color);
font-size: 14px;
}
@@ -365,13 +365,11 @@ body, h4, h1, h2 {
.poll {
display: inline-block;
width: 100%;
- margin-top:5px;
}
.poll-choice {
padding: 5px;
- float: left;
- /* display: inline-block; */
+ display: inline-block;
width: 50%;
}
@@ -447,7 +445,7 @@ body, h4, h1, h2 {
}
.section-poll {
- margin:0 -5px;
+ margin:0px;
}
.micro-button.micro-button-feed.no-underline.micro-button-poll {
@@ -457,6 +455,10 @@ body, h4, h1, h2 {
height: 25px;
}
+.post-footer {
+ margin: 0px -5px;
+}
+
.login-label-subtitle {
margin-bottom: 15px;
}
@@ -539,18 +541,18 @@ width: 1px;
min-width: 35px;
padding: 3px 3px 3px 5px;
float: left;
- background-color: #9695c3;
- font-size: 0.55em;
+ font-size: 0.65em;
line-height: 11px;
font-weight: 400;
text-align: center;
+ color: var(--main-link-color);
}
.token-balance {
min-width: 20px;
padding: 3px 5px;
float: left;
- color: #9696c1;
+ color: var(--main-link-color);
font-size: 1em;
border-left: 0px;
line-height: 11px;
@@ -559,6 +561,11 @@ width: 1px;
text-transform: uppercase;
}
+.token-ticker:hover {
+ text-decoration:underline;
+}
+
+
.checkbox-mini.checkbox-mini-remove {
background-color: #ff617e;
position: absolute;
@@ -614,7 +621,7 @@ width: 1px;
.election-rule {
background: transparent;
- color: #48587d;
+ color: var(--main-link-color);
font-size: 0.7em;
display: inline-block;
padding: 0px;
@@ -742,14 +749,6 @@ width: 1px;
background: #ff617e;
}
-
-@media (max-width: 991px) {
- .countdown {
- margin-bottom: 15px;
- }
-}
-
-
.help {
display: inline-block;
margin-top: 8px;
@@ -787,34 +786,30 @@ width: 1px;
}
.parameter {
- padding: 0px 25px 10px;
+ padding: 0px 15px 10px;
border-radius: 5px;
text-align: center;
- display: inline-block;
margin: 10px 15px 10px 0px;
- font-size: 11px;
- font-weight: 400;
color: #5a0075;
- border: 1px solid #ae8abd26;
- min-height: 92px;
+ border: 1px solid #f2eff5;
+ min-width: 140px;
+ background: #f9fafb;
+ float: left;
+ height: 80px;
+ overflow: hidden;
}
.parameter-name {
- background: #eceef2;
- color: #8d95a9;
- line-height:28px;
- margin: 0px -25px 10px;
+ color: #7d849f;
+ line-height: 28px;
+ font-size: 11px;
+ font-weight: 400;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
-.parameter-value {
- float: left;
-}
-
.smart-contract {
- margin: 15px auto 0;
- text-align: center;
+ display: inline-block;
}
.margin-top-minus-three {
@@ -823,11 +818,13 @@ width: 1px;
}
.parameter-avatar {
- margin-top: -10px;
+ text-align:center;
}
.parameter-token {
- margin-top: 10px;
+ padding-top: 13px;
+ margin: 0 auto;
+ display: inline-block;
}
.parameter-line {
@@ -856,14 +853,25 @@ width: 1px;
}
.symbol.profile-pic {
- width: 60px;
- height: 60px;
- margin-top: 10px;
- margin-bottom: 10px;
- float: left;
- border: 1px solid #e8e2ef;
- border-radius: 3px;
- background-color: #e8e2ef;
+ width: 60px;
+ height: 60px;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ float: left;
+ border: 1px solid #e8e2ef;
+ border-radius: 3px;
+ background-color: #e8e2ef;
+}
+
+.symbol.dao-pic {
+ width: 60px;
+ height: 60px;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ float: left;
+ border: 1px solid #e8e2ef;
+ border-radius: 50px;
+ background-color: #e8e2ef;
}
h4 {
@@ -871,7 +879,7 @@ h4 {
margin-bottom: 20px;
padding-right: 15px;
padding-left: 15px;
- color: #48587d;
+ color: var(--main-link-color);
font-size: 15px;
line-height: 28px;
font-weight: 100;
@@ -893,7 +901,7 @@ h4 {
}
.parameter-name {
- margin: 0px -10px 14px;
+ margin: 0px -10px 0px;
}
.hero {
@@ -1006,6 +1014,12 @@ h4 {
border: 1px solid #ff3d67;
}
+.period-failed {
+ background: #ffecf0;
+ color: #ff3d67;
+ border: 1px solid #ff3d67;
+}
+
.period-aborted {
background: #e8e8e8;
color: #000;
@@ -1023,7 +1037,7 @@ h4 {
.topbar,
.navbar {
- background: #580074;
+ background: var(--main-menu-color);
box-shadow: 0px -3px 15px 0px rgba(0, 0, 0, 0.65);
border:none;
}
@@ -1046,7 +1060,7 @@ h4 {
}
.qr-code-address:hover {
- border-color: #48587d;
+ border-color: var(--main-link-color);
}
.icon-up2 {
@@ -1404,9 +1418,13 @@ h4 {
background-color: none;
}
+.dao {
+ float:right;
+}
+
.date-info {
- display: inline-block;
- margin-top: 10px;
+ display: block;
+ float: right;
}
.sync-animation {
@@ -1441,6 +1459,12 @@ h4 {
color: #5d5d5d;
}
+.poll-survey {
+ display: block;
+ margin: 5px -5px -5px;
+ padding: 0px;
+}
+
.poll-score-bar.poll-sync {
border: 1px solid #580173;
}