Skip to content

Commit

Permalink
Node 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
polarker committed Aug 5, 2024
1 parent 2c0ef21 commit bfccb9c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
condition: service_healthy

alephium:
image: alephium/alephium:v3.4.0
image: alephium/alephium:v3.5.0
restart: unless-stopped
ports:
- 19973:19973/tcp
Expand Down
2 changes: 1 addition & 1 deletion packages/web3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"author": "Alephium dev <dev@alephium.org>",
"config": {
"alephium_version": "3.4.0",
"alephium_version": "3.5.0",
"explorer_backend_version": "2.0.0"
},
"scripts": {
Expand Down
6 changes: 2 additions & 4 deletions packages/web3/src/api/api-alephium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export interface AddressBalance {
lockedBalance: string
/** @format x.x ALPH */
lockedBalanceHint: string
warning?: string
}

/** AddressInfo */
Expand Down Expand Up @@ -93,7 +92,6 @@ export interface Balance {
lockedTokenBalances?: Token[]
/** @format int32 */
utxoNum: number
warning?: string
}

/** Balances */
Expand Down Expand Up @@ -527,6 +525,7 @@ export interface CompilerOptions {
ignoreUnusedPrivateFunctionsWarnings?: boolean
ignoreUpdateFieldsCheckWarnings?: boolean
ignoreCheckExternalCallerWarnings?: boolean
ignoreUnusedFunctionReturnWarnings?: boolean
}

/** Confirmed */
Expand Down Expand Up @@ -1146,7 +1145,6 @@ export interface UTXO {
/** UTXOs */
export interface UTXOs {
utxos: UTXO[]
warning?: string
}

/** Unauthorized */
Expand Down Expand Up @@ -1495,7 +1493,7 @@ export class HttpClient<SecurityDataType = unknown> {

/**
* @title Alephium API
* @version 3.4.0
* @version 3.5.0
* @baseUrl ../
*/
export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
Expand Down
3 changes: 2 additions & 1 deletion packages/web3/src/contract/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ export const DEFAULT_NODE_COMPILER_OPTIONS: node.CompilerOptions = {
ignoreUnusedFieldsWarnings: false,
ignoreUnusedPrivateFunctionsWarnings: false,
ignoreUpdateFieldsCheckWarnings: false,
ignoreCheckExternalCallerWarnings: false
ignoreCheckExternalCallerWarnings: false,
ignoreUnusedFunctionReturnWarnings: false
}

export const DEFAULT_COMPILER_OPTIONS: CompilerOptions = { errorOnWarnings: true, ...DEFAULT_NODE_COMPILER_OPTIONS }
Expand Down

0 comments on commit bfccb9c

Please sign in to comment.