Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
693b636
refactor: remove unused hooks, types, and components to clean up the …
tom1145 Jan 26, 2026
41ce693
refactor: simplify component interfaces and remove unused exports for…
tom1145 Jan 27, 2026
e46040c
refactor: remove unused parameters from components
tom1145 Jan 27, 2026
71c62da
Merge branch 'feat/multi-token' into feat/refactor-and-cleanup
tom1145 Feb 2, 2026
a4268d1
chore: update prettier to version 3.8.1 and add pretty-quick
tom1145 Feb 2, 2026
5cdde80
fix: update package.json
tom1145 Feb 2, 2026
90f0f6b
refactor: improve code
tom1145 Feb 2, 2026
a5ac27d
refactor: next.config.js
tom1145 Feb 2, 2026
432fabc
chore: downgrade next to version 15.5.7
tom1145 Feb 2, 2026
23f835f
fix: build
AdriGeorge Feb 2, 2026
0201e9a
fix: vulnerabilities
AdriGeorge Feb 2, 2026
ca0c9b6
fix: update price handling in add/edit service form
tom1145 Feb 2, 2026
5524eb9
fix: clear advanced SSI policies on disable in the edit asset form
tom1145 Feb 3, 2026
b617b59
refactor: update add param style in edit asset form
tom1145 Feb 3, 2026
800da51
refactor(consumer-params): rename builder and add accordion behavior
tom1145 Feb 3, 2026
ebd3993
fix: build
AdriGeorge Feb 3, 2026
7ff6920
fix: build
tom1145 Feb 3, 2026
f87df0c
Merge branch 'feat/refactor-and-cleanup' of github.com:OceanProtocolE…
tom1145 Feb 3, 2026
2d450c5
Merge branch 'feat/multi-token' into feat/refactor-and-cleanup
tom1145 Feb 3, 2026
cf767a0
fix: remove GPU filter usage on form inputs
tom1145 Feb 3, 2026
97bf19b
fox: use env timer variable instead of a hardcoded one
tom1145 Feb 3, 2026
5cbad73
feat: add a select all button for the credentials modal
tom1145 Feb 3, 2026
7e13bf5
refactor: reuse Modal component instead of dialog, clean code
tom1145 Feb 3, 2026
7706c20
refactor: add border radius for cookie banner consent
tom1145 Feb 3, 2026
0f2b2b8
refactor: modal vpSelector extend width
tom1145 Feb 4, 2026
ac173e3
refactor: remove unused style variables
tom1145 Feb 4, 2026
5d268eb
refactor: update CSS styles for consistency and readability across co…
tom1145 Feb 5, 2026
cace542
refactor: compute modal style
tom1145 Feb 5, 2026
0b298aa
Merge branch 'feat/multi-token' into feat/refactor-and-cleanup
tom1145 Feb 5, 2026
c0913fa
fix: ssi policies default values on check
tom1145 Feb 5, 2026
6c7e027
fix: z-index vp policies modal
tom1145 Feb 5, 2026
806d474
refactor: ssi wallet and credential modal fix
tom1145 Feb 5, 2026
f8f95a6
refactor: ssi wallet style inside
tom1145 Feb 5, 2026
70e1ebc
Merge branch 'feat/multi-token' of https://github.com/OceanProtocolEn…
AdriGeorge Feb 5, 2026
175ecb6
refactor: job details component, clean and reuse code
tom1145 Feb 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
64 changes: 0 additions & 64 deletions .jest/__fixtures__/prices.ts

This file was deleted.

41 changes: 0 additions & 41 deletions .jest/__fixtures__/table.ts

This file was deleted.

33 changes: 0 additions & 33 deletions .jest/__fixtures__/web3.ts

This file was deleted.

4 changes: 2 additions & 2 deletions content/pages/editService.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"label": "New Price",
"type": "number",
"min": "1",
"step": "0.01",
"step": "0.000001",
"placeholder": "1",
"help": "Enter a new price (minimum 1, maximum 1,000,000).",
"required": true
Expand All @@ -57,7 +57,7 @@
"label": "Price",
"type": "number",
"min": "0",
"step": "0.01",
"step": "0.000001",
"placeholder": "0",
"help": "Enter a price (minimum 0, maximum 1,000,000).",
"required": true
Expand Down
6 changes: 3 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const nextConfig = () => {
*/
const config = {
output: 'standalone',
serverExternalPackages: ['wagmi', 'viem', 'connectkit'],
experimental: {
esmExternals: 'loose',
serverComponentsExternalPackages: ['wagmi', 'viem', 'connectkit']
esmExternals: 'loose'
},
webpack: (config, options) => {
const { isServer } = options
Expand Down Expand Up @@ -94,7 +94,7 @@ const nextConfig = () => {
}
}

return withTM(['@oceanprotocol/lib'])(config)
return withTM(['@oceanprotocol/lib', '@oceanprotocol/ddo-js'])(config)
}

export default nextConfig
Loading