-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial browser support * add package link script * port api-common * port api-database * port api-development * port api-http * port api-sync * port api-transaction-pool * port api * port bootstrap * port cli * port configuration-generator * port consensus * port webhooks * port validator * port validator-set-vote-weighted * port validator-set-static * port validation * port utils * port transactions * port transaction-pool * port test-framework * port state * port serializer * port proposer * port processor * port p2p * port networking-ntp * port networking-dns * port logger-winston * port logger-pino * port kernel * port fees * port fees-static * port fees-managed * port fees-burn * port database * port crypto-worker * port crypto-wif * port crypto-validation * port crypto-transaction * port crypto-transaction-vote * port crypto-transaction-validator-resignation * port crypto-transaction-validator-registration * port crypto-transaction-username-resignation * port crypto-transaction-username-registration * port crypto-transaction-transfer * port crypto-transaction-multi-signature-registration * port crypto-transaction-multi-payment * port crypto-signature-schnorr * port crypto-signature-schnorr-secp256k1 * port crypto-signature-ed25519 * port crypto-signature-ecdsa * port crypto-signature-bls12-381 * port crypto-messages * port crypto-key-pair-schnorr * port crypto-key-pair-ed25519 * port crypto-key-pair-ecdsa * port crypto-key-pair-bls12-381 * port crypto-hash-wasm * port crypto-hash-noble * port crypto-hash-bcrypto * port crypto-consensus-bls12-381 * port crypto-config * port crypto-commit * port crypto-block * port crypto-address-ss58 * port crypto-address-keccak256 * port crypto-address-bech32m * port crypto-address-bech32 * port crypto-address-base58 * port core * port contracts * port container * update tsconfig to nodenext * fix kleur/color * update core/bin/run.js * command fixes * lmdb import fixes * p2p fixes * ajv fix * get __dirname * update pnpm-lock.yaml * remove unused @pm2/io dependency * replace fileURLToPath * use filesystem service inside kernel * cleanup * update TypeScript to 5.4.2 * move __dirname into local scope * replace fast-memoize with memoizee * test-runner packacge * re-export test-runner * tests: utils * tests: validation * tests: crypto-config * tests: container * tests: kernel * tests: transactions * style: resolve style guide violations * fix more tests * fix transaction dependency lookup * fix p2p tests * more fixes * fix cli and configuration-generator * cli fixes * kernel fixes * transaction-pool * all pass * commit dirty * style: resolve style guide violations * fix api-http integration tests * fix deps:check * runtime fixes --------- Co-authored-by: oXtxNt9U <[email protected]> Co-authored-by: sebastijankuzner <[email protected]>
- Loading branch information
1 parent
a699d1f
commit e4fc997
Showing
1,375 changed files
with
3,988 additions
and
3,539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export * from "./controller"; | ||
export * as Plugins from "./plugins"; | ||
export * as Schemas from "./schemas"; | ||
export * from "./server"; | ||
export * from "./service-provider"; | ||
export * from "./controller.js"; | ||
export * as Plugins from "./plugins/index.js"; | ||
export * as Schemas from "./schemas.js"; | ||
export * from "./server.js"; | ||
export * from "./service-provider.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export { commaArrayQuery } from "./comma-separated-query"; | ||
export { dotSeparatedQuery } from "./dot-separated-query"; | ||
export { pagination } from "./pagination"; | ||
export { rateLimit } from "./rate-limit"; | ||
export { responseHeaders } from "./response-headers"; | ||
export { whitelist } from "./whitelist"; | ||
export { commaArrayQuery } from "./comma-separated-query.js"; | ||
export { dotSeparatedQuery } from "./dot-separated-query.js"; | ||
export { pagination } from "./pagination/index.js"; | ||
export { rateLimit } from "./rate-limit.js"; | ||
export { responseHeaders } from "./response-headers.js"; | ||
export { whitelist } from "./whitelist.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from "./get-ip"; | ||
export * from "./get-ip.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export * as Contracts from "./contracts"; | ||
export * from "./identifiers"; | ||
export * as Models from "./models"; | ||
export * as Repositories from "./repositories"; | ||
export * as Search from "./search"; | ||
export * from "./service-provider"; | ||
export * as Contracts from "./contracts.js"; | ||
export * from "./identifiers.js"; | ||
export * as Models from "./models/index.js"; | ||
export * as Repositories from "./repositories/index.js"; | ||
export * as Search from "./search/index.js"; | ||
export * from "./service-provider.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export * from "./api-node"; | ||
export * from "./block"; | ||
export * from "./configuration"; | ||
export * from "./mempool-transaction"; | ||
export * from "./peer"; | ||
export * from "./plugin"; | ||
export * from "./state"; | ||
export * from "./transaction"; | ||
export * from "./transaction-type"; | ||
export * from "./validator-round"; | ||
export * from "./wallet"; | ||
export * from "./api-node.js"; | ||
export * from "./block.js"; | ||
export * from "./configuration.js"; | ||
export * from "./mempool-transaction.js"; | ||
export * from "./peer.js"; | ||
export * from "./plugin.js"; | ||
export * from "./state.js"; | ||
export * from "./transaction.js"; | ||
export * from "./transaction-type.js"; | ||
export * from "./validator-round.js"; | ||
export * from "./wallet.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
packages/api-database/source/repositories/api-node-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
packages/api-database/source/repositories/block-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/configuration-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export { makeApiNodeRepository } from "./api-node-repository"; | ||
export { makeBlockRepository } from "./block-repository"; | ||
export { makeConfigurationRepository } from "./configuration-repository"; | ||
export { makeMempoolTransactionRepository } from "./mempool-transaction-repository"; | ||
export { makePeerRepository } from "./peer-repository"; | ||
export { makePluginRepository } from "./plugin-repository"; | ||
export { makeStateRepository } from "./state-repository"; | ||
export { makeTransactionRepository } from "./transaction-repository"; | ||
export { makeTransactionTypeRepository } from "./transaction-type-repository"; | ||
export { makeValidatorRoundRepository } from "./validator-round-repository"; | ||
export { makeWalletRepository } from "./wallet-repository"; | ||
export { makeApiNodeRepository } from "./api-node-repository.js"; | ||
export { makeBlockRepository } from "./block-repository.js"; | ||
export { makeConfigurationRepository } from "./configuration-repository.js"; | ||
export { makeMempoolTransactionRepository } from "./mempool-transaction-repository.js"; | ||
export { makePeerRepository } from "./peer-repository.js"; | ||
export { makePluginRepository } from "./plugin-repository.js"; | ||
export { makeStateRepository } from "./state-repository.js"; | ||
export { makeTransactionRepository } from "./transaction-repository.js"; | ||
export { makeTransactionTypeRepository } from "./transaction-type-repository.js"; | ||
export { makeValidatorRoundRepository } from "./validator-round-repository.js"; | ||
export { makeWalletRepository } from "./wallet-repository.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
packages/api-database/source/repositories/peer-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/plugin-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { PluginRepository, PluginRepositoryExtension, RepositoryDataSource } from "../contracts"; | ||
import { Plugin } from "../models"; | ||
import { makeExtendedRepository } from "./repository-extension"; | ||
import { PluginRepository, PluginRepositoryExtension, RepositoryDataSource } from "../contracts.js"; | ||
import { Plugin } from "../models/index.js"; | ||
import { makeExtendedRepository } from "./repository-extension.js"; | ||
|
||
export const makePluginRepository = (dataSource: RepositoryDataSource): PluginRepository => | ||
makeExtendedRepository<Plugin, PluginRepositoryExtension>(Plugin, dataSource, {}); |
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/repository-extension.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/state-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/transaction-type-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { RepositoryDataSource, TransactionTypeRepository, TransactionTypeRepositoryExtension } from "../contracts"; | ||
import { TransactionType } from "../models/transaction-type"; | ||
import { makeExtendedRepository } from "./repository-extension"; | ||
import { RepositoryDataSource, TransactionTypeRepository, TransactionTypeRepositoryExtension } from "../contracts.js"; | ||
import { TransactionType } from "../models/transaction-type.js"; | ||
import { makeExtendedRepository } from "./repository-extension.js"; | ||
|
||
export const makeTransactionTypeRepository = (dataSource: RepositoryDataSource): TransactionTypeRepository => | ||
makeExtendedRepository<TransactionType, TransactionTypeRepositoryExtension>(TransactionType, dataSource, {}); |
6 changes: 3 additions & 3 deletions
6
packages/api-database/source/repositories/validator-round-repository.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.