Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
416 changes: 184 additions & 232 deletions bun.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion bunfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ linker = isolated

[test]
coverage = true
coverageSkipTestFiles = true
coverageSkipTestFiles = true
concurrentTestGlob="./test/**/*.test.ts"
2 changes: 1 addition & 1 deletion sdk/blockscout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
2 changes: 1 addition & 1 deletion sdk/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"scripts": {
"build": "bun run build.ts",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion sdk/eas/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion sdk/hasura/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack . || exit 0",
"test": "bun test",
Expand Down
2 changes: 1 addition & 1 deletion sdk/ipfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
2 changes: 1 addition & 1 deletion sdk/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"scripts": {
"codegen": "gql-tada generate-schema ${CONSOLE_GRAPHQL:-https://console.settlemint.com/api/graphql} && gql-tada generate-output",
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
69 changes: 53 additions & 16 deletions sdk/js/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1478,6 +1478,9 @@ type BesuIbftv2BlockchainNetwork implements AbstractClusterService & AbstractEnt
application: Application!
applicationDashBoardDependantsTree: DependantsTree!

"""Image of the artifacts for the installed kit"""
artifactsImageTag: String

"""The blockchain nodes associated with this network"""
blockchainNodes: [BlockchainNodeType!]!
canAddValidatingNodes: [Workspace!]!
Expand Down Expand Up @@ -1542,11 +1545,6 @@ type BesuIbftv2BlockchainNetwork implements AbstractClusterService & AbstractEnt

"""Genesis configuration for the Besu blockchain network"""
genesis: BesuGenesisType!

"""
Genesis artifacts tag for large allocations (stores only the version tag for network-wide pinning)
"""
genesisArtifactsTag: String
genesisWithDiscoveryConfig: BesuGenesisType!

"""Health status of the service"""
Expand All @@ -1567,6 +1565,9 @@ type BesuIbftv2BlockchainNetwork implements AbstractClusterService & AbstractEnt
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -1955,6 +1956,9 @@ type BesuQBFTBlockchainNetwork implements AbstractClusterService & AbstractEntit
application: Application!
applicationDashBoardDependantsTree: DependantsTree!

"""Image of the artifacts for the installed kit"""
artifactsImageTag: String

"""The blockchain nodes associated with this network"""
blockchainNodes: [BlockchainNodeType!]!
canAddValidatingNodes: [Workspace!]!
Expand Down Expand Up @@ -2019,11 +2023,6 @@ type BesuQBFTBlockchainNetwork implements AbstractClusterService & AbstractEntit

"""Genesis configuration for the Besu blockchain network"""
genesis: BesuGenesisType!

"""
Genesis artifacts tag for large allocations (stores only the version tag for network-wide pinning)
"""
genesisArtifactsTag: String
genesisWithDiscoveryConfig: BesuGenesisType!

"""Health status of the service"""
Expand All @@ -2044,6 +2043,9 @@ type BesuQBFTBlockchainNetwork implements AbstractClusterService & AbstractEntit
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -2805,6 +2807,9 @@ interface BlockchainNetwork implements AbstractClusterService & AbstractEntity {
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -3480,6 +3485,8 @@ enum ConsensusAlgorithm {
ARBITRUM_SEPOLIA
AVALANCHE
AVALANCHE_FUJI
BASE_MAINNET
BASE_SEPOLIA
BESU_IBFTv2
BESU_QBFT
BSC_POW
Expand All @@ -3494,6 +3501,8 @@ enum ConsensusAlgorithm {
HEDERA_MAINNET
HEDERA_TESTNET
HOLESKY
LINEA_MAINNET
LINEA_SEPOLIA
OPTIMISM
OPTIMISM_GOERLI
OPTIMISM_SEPOLIA
Expand All @@ -3507,8 +3516,6 @@ enum ConsensusAlgorithm {
QUORUM_QBFT
SEPOLIA
SONEIUM_MINATO
SONIC_BLAZE
SONIC_MAINNET
TEZOS
TEZOS_TESTNET
}
Expand Down Expand Up @@ -3592,6 +3599,9 @@ type CordaBlockchainNetwork implements AbstractClusterService & AbstractEntity &
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -5456,6 +5466,9 @@ type FabricRaftBlockchainNetwork implements AbstractClusterService & AbstractEnt
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -5971,6 +5984,9 @@ type GethCliqueBlockchainNetwork implements AbstractClusterService & AbstractEnt
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -6268,12 +6284,12 @@ input GethGenesisConfigInput {
muirGlacierBlock: Float

"""The block number for the Muir Glacier hard fork (deprecated)"""
muirGlacierblock: Float
muirGlacierblock: Float @deprecated(reason: "Use muirGlacierBlock instead (capital B)")

"""
The block number for the Muir Glacier hard fork (all lowercase - deprecated)
"""
muirglacierblock: Float
muirglacierblock: Float @deprecated(reason: "Use muirGlacierBlock instead (capital B)")

"""The block number for the Petersburg hard fork"""
petersburgBlock: Float
Expand Down Expand Up @@ -8280,6 +8296,9 @@ type Kit {
"""Kit ID"""
id: String!

"""Kit is a pre-release (eg beta, alpha, etc)"""
isPreRelease: Boolean!

"""Kit name"""
name: String!
}
Expand Down Expand Up @@ -11861,6 +11880,9 @@ type PolygonEdgePoABlockchainNetwork implements AbstractClusterService & Abstrac
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -12026,6 +12048,9 @@ type PolygonSupernetBlockchainNetwork implements AbstractClusterService & Abstra
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -12659,6 +12684,9 @@ type PublicEvmBlockchainNetwork implements AbstractClusterService & AbstractEnti
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -13614,10 +13642,10 @@ input QuorumGenesisConfigInput {
muirGlacierBlock: Float

"""Block number for Muir Glacier hard fork (deprecated)"""
muirGlacierblock: Float
muirGlacierblock: Float @deprecated(reason: "Use muirGlacierBlock instead (capital B)")

"""Block number for Muir Glacier hard fork (all lowercase - deprecated)"""
muirglacierblock: Float
muirglacierblock: Float @deprecated(reason: "Use muirGlacierBlock instead (capital B)")

"""Block number for Petersburg hard fork"""
petersburgBlock: Float
Expand Down Expand Up @@ -13942,6 +13970,9 @@ type QuorumQBFTBlockchainNetwork implements AbstractClusterService & AbstractEnt
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -15580,6 +15611,9 @@ type TezosBlockchainNetwork implements AbstractClusterService & AbstractEntity &
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down Expand Up @@ -16039,6 +16073,9 @@ type TezosTestnetBlockchainNetwork implements AbstractClusterService & AbstractE
jobLogs: [String!]!
jobProgress: Float!

"""The ID of the kit used to create this blockchain network"""
kitId: String

"""Date when the service was last completed"""
lastCompletedAt: DateTime!
latestVersion: String!
Expand Down
28 changes: 14 additions & 14 deletions sdk/js/src/helpers/graphql-env.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"scripts": {
"build": "bun run build.ts",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"typecheck": "tsc --noEmit",
"publish-npm": "bun publish --tag ${TAG} --access public || exit 0",
"prepack": "cp ../../LICENSE ."
Expand Down
2 changes: 1 addition & 1 deletion sdk/minio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
2 changes: 1 addition & 1 deletion sdk/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
2 changes: 1 addition & 1 deletion sdk/portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"dev": "tsdown --watch ./src",
"publint": "publint run --strict",
"attw": "attw --pack .",
"test": "bun test",
Expand Down
Loading
Loading