Update contract CHANGELOGs

This commit is contained in:
Jacob Evans
2019-03-18 15:13:29 +01:00
parent 548089888d
commit 18c2013625
14 changed files with 91 additions and 0 deletions

View File

@@ -17,6 +17,10 @@
{
"note": "Integration testing for ERC1155Proxy",
"pr": 1673
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -16,6 +16,10 @@
{
"note": "Set `evmVersion` to `constantinople`",
"pr": 1707
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -14,6 +14,10 @@
{
"note": "Created ERC1155 contracts package",
"pr": 1657
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
]
}

View File

@@ -5,6 +5,10 @@
{
"note": "Upgrade contracts to Solidity 0.5.5",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -5,6 +5,10 @@
{
"note": "Upgrade contracts to Solidity 0.5.5",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -5,6 +5,10 @@
{
"note": "Do not reexport external dependencies",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -5,6 +5,10 @@
{
"note": "Upgrade contracts to Solidity 0.5.5",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -13,6 +13,10 @@
{
"note": "Integration testing for ERC1155Proxy",
"pr": 1673
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -9,6 +9,10 @@
{
"note": "Upgrade contracts to Solidity 0.5.5",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -5,6 +5,10 @@
{
"note": "Do not reexport external dependencies",
"pr": 1682
},
{
"note": "Run Web3ProviderEngine without excess block polling",
"pr": 1695
}
],
"timestamp": 1553091633

View File

@@ -1,4 +1,13 @@
[
{
"version": "3.1.0",
"changes": [
{
"note": "Added `startProviderEngine` to `providerUtils`. Preventing excess block polling",
"pr": 1695
}
]
},
{
"version": "3.0.0",
"changes": [

View File

@@ -1,4 +1,13 @@
[
{
"version": "2.2.0",
"changes": [
{
"note": "Added `startProviderEngine` to `providerUtils`. Preventing excess block polling",
"pr": 1695
}
]
},
{
"timestamp": 1553091633,
"version": "2.1.4",

View File

@@ -1,4 +1,13 @@
[
{
"version": "4.1.0",
"changes": [
{
"note": "Added `startProviderEngine` to `providerUtils`. Preventing excess block polling",
"pr": 1695
}
]
},
{
"timestamp": 1553091633,
"version": "4.0.4",

View File

@@ -0,0 +1,24 @@
#!/usr/bin/env node
import { devConstants } from '@0x/dev-utils';
import { MnemonicWalletSubprovider, RPCSubprovider, Web3ProviderEngine } from '@0x/subproviders';
import { logUtils, providerUtils } from '@0x/utils';
import { runMigrationsAsync } from './migration';
(async () => {
let txDefaults;
const provider = new Web3ProviderEngine();
const mnemonic = 'concert load couple harbor equip island argue ramp clarify fence smart topic';
provider.addProvider(new MnemonicWalletSubprovider({ mnemonic }));
provider.addProvider(new RPCSubprovider('http://localhost:8545'));
providerUtils.startProviderEngine(provider);
txDefaults = {
from: devConstants.TESTRPC_FIRST_ADDRESS,
};
await runMigrationsAsync(provider, txDefaults);
process.exit(0);
})().catch(err => {
logUtils.log(err);
process.exit(1);
});