Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
v1rtl committed Jul 13, 2022
1 parent d783201 commit ef8e184
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { createRequire } from 'https://deno.land/std@0.122.0/node/module.ts'
export { existsSync } from 'https://deno.land/std@0.122.0/node/fs.ts'
export { readerFromStreamReader, copy } from 'https://deno.land/std@0.122.0/streams/conversion.ts'
export { process } from 'https://deno.land/std@0.122.0/node/process.ts'
export { createRequire } from 'https://deno.land/std@0.148.0/node/module.ts'
export { existsSync } from 'https://deno.land/std@0.148.0/node/fs.ts'
export { readerFromStreamReader, copy } from 'https://deno.land/std@0.148.0/streams/conversion.ts'
export { process } from 'https://deno.land/std@0.148.0/node/process.ts'
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"entry": "./mod.ts",
"description": "💎 Solidity v0.8.7 bindings for Deno",
"homepage": "https://github.com/deno-libs/solc",
"version": "1.0.3",
"version": "1.0.5",
"releaseType": null,
"unstable": false,
"unlisted": false,
Expand Down
8 changes: 4 additions & 4 deletions types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export type Contract = {
}

export type CompilationError = {
component: string
component: 'general' | string
errorCode: string
formattedMessage: string
message: string
Expand Down Expand Up @@ -101,7 +101,7 @@ export type ContractEVM = {
bytecode: {
functionDebugData: FunctionDebugData
generatedSources: GeneratedSources
linkReferences: Record<string, unknown>
linkReferences: Record<string, string>[]
object: string
opcodes: string
sourceMap: string
Expand All @@ -110,7 +110,7 @@ export type ContractEVM = {
functionDebugData: FunctionDebugData
generatedSources: GeneratedSources
immutableReferences: Record<string, { length: number; start: number }[]>
linkReferences: Record<string, unknown>
linkReferences: Record<string, string>[]
}
gasEstimates: GasEstimates
legacyAssembly: {
Expand Down Expand Up @@ -158,7 +158,7 @@ export type Output = {
error?: CompilationError
errors: CompilationError[]
contracts: Record<string, Record<string, CompiledContract>>
sourceList?: Record<string, any>
sourceList?: string[]
sources: Record<string, { id: number; AST?: any }>
}

Expand Down
2 changes: 1 addition & 1 deletion utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as _assert from 'https://deno.land/x/std@0.122.0/node/assert.ts'
import * as _assert from 'https://deno.land/x/std@0.148.0/node/assert.ts'

export const assert = (actual: unknown, message: string) => _assert.strict(actual, message)

Expand Down

0 comments on commit ef8e184

Please sign in to comment.