Function to compute nth root

This commit is contained in:
Greg Hysen
2019-05-23 10:46:49 -07:00
parent 9787cf8296
commit 95b284d648
8 changed files with 139 additions and 3 deletions

View File

@@ -5,6 +5,7 @@
*/
import { ContractArtifact } from 'ethereum-types';
import * as LibMathTest from '../generated-artifacts/LibMathTest.json';
import * as LibZrxToken from '../generated-artifacts/LibZrxToken.json';
import * as MixinStake from '../generated-artifacts/MixinStake.json';
import * as MixinVaultCore from '../generated-artifacts/MixinVaultCore.json';
@@ -16,4 +17,5 @@ export const artifacts = {
LibZrxToken: LibZrxToken as ContractArtifact,
MixinVaultCore: MixinVaultCore as ContractArtifact,
ZrxVault: ZrxVault as ContractArtifact,
LibMathTest: LibMathTest as ContractArtifact,
};