Stop nesting interfaces and add necessary type exports
This commit is contained in:
parent
f9b222c127
commit
c4c47d9665
@ -326,24 +326,21 @@ export interface ContractNetworkData {
|
||||
|
||||
export interface StandardContractOutput {
|
||||
abi: ContractAbi;
|
||||
evm: {
|
||||
bytecode: {
|
||||
evm: EvmOutput;
|
||||
}
|
||||
|
||||
export interface EvmOutput {
|
||||
bytecode: EvmBytecodeOutput;
|
||||
deployedBytecode: EvmBytecodeOutput;
|
||||
}
|
||||
|
||||
export interface EvmBytecodeOutput {
|
||||
object: string;
|
||||
sourceMap: string;
|
||||
};
|
||||
deployedBytecode: {
|
||||
object: string;
|
||||
sourceMap: string;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export interface ContractVersionData {
|
||||
compiler: {
|
||||
name: 'solc';
|
||||
version: string;
|
||||
settings: CompilerSettings;
|
||||
};
|
||||
compiler: CompilerOpts;
|
||||
sources: {
|
||||
[sourceName: string]: {
|
||||
id: number;
|
||||
@ -356,6 +353,12 @@ export interface ContractVersionData {
|
||||
compilerOutput: StandardContractOutput;
|
||||
}
|
||||
|
||||
export interface CompilerOpts {
|
||||
name: 'solc';
|
||||
version: string;
|
||||
settings: CompilerSettings;
|
||||
}
|
||||
|
||||
/**
|
||||
* This type defines the schema of the artifact.json file generated by Sol-compiler
|
||||
* schemaVersion: The version of the artifact schema
|
||||
@ -384,10 +387,7 @@ export interface GeneratedCompilerOptions {
|
||||
// Copied from the solc.js library types
|
||||
export interface CompilerSettings {
|
||||
remappings?: string[];
|
||||
optimizer?: {
|
||||
enabled: boolean;
|
||||
runs?: number;
|
||||
};
|
||||
optimizer?: OptimizerSettings;
|
||||
evmVersion?: 'homestead' | 'tangerineWhistle' | 'spuriousDragon' | 'byzantium' | 'constantinople';
|
||||
metadata?: CompilerSettingsMetadata;
|
||||
libraries?: {
|
||||
@ -406,6 +406,11 @@ export interface CompilerSettingsMetadata {
|
||||
useLiteralContent: true;
|
||||
}
|
||||
|
||||
export interface OptimizerSettings {
|
||||
enabled: boolean;
|
||||
runs?: number;
|
||||
}
|
||||
|
||||
export interface Source {
|
||||
id: number;
|
||||
}
|
||||
|
@ -1,2 +1,8 @@
|
||||
export { Compiler } from './compiler';
|
||||
export { CompilerOptions, CompilerSettings, OutputField } from 'ethereum-types';
|
||||
export {
|
||||
CompilerOptions,
|
||||
CompilerSettings,
|
||||
OutputField,
|
||||
CompilerSettingsMetadata,
|
||||
OptimizerSettings,
|
||||
} from 'ethereum-types';
|
||||
|
Loading…
x
Reference in New Issue
Block a user