Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
oXtxNt9U committed Dec 6, 2024
1 parent 5890961 commit 124de62
Show file tree
Hide file tree
Showing 16 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/configuration-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@mainsail/evm-service": "workspace:*",
"@mainsail/kernel": "workspace:*",
"@mainsail/serializer": "workspace:*",
"@mainsail/snapshot-legacy": "workspace:*",
"@mainsail/snapshot-legacy-exporter": "workspace:*",
"@mainsail/snapshot-legacy-importer": "workspace:*",
"@mainsail/utils": "workspace:*",
"@mainsail/validation": "workspace:*",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mainsail - Snapshot Legacy
# Mainsail - Snapshot Legacy Exporter

![banner](https://raw.githubusercontent.com/ArkEcosystem/mainsail/main/banner.jpeg)

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@mainsail/snapshot-legacy",
"name": "@mainsail/snapshot-legacy-exporter",
"version": "0.0.1-evm.9",
"description": "Mainsail snapshot from V3 legacy state",
"description": "Mainsail V3 legacy state exporter",
"license": "GPL-3.0-only",
"contributors": [],
"type": "module",
Expand Down Expand Up @@ -46,4 +46,4 @@
"alias": "state"
}
}
}
}
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class Generator {
async #connect(): Promise<DataSource> {
const pluginConfig = await this.app
.resolve(Providers.PluginConfiguration)
.discover("@mainsail/snapshot-legacy", process.cwd());
.discover("@mainsail/snapshot-legacy-exporter", process.cwd());

const options = pluginConfig.get<DatabaseOptions>("database");
Utils.assert.defined<DatabaseOptions>(options);
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/snapshot-legacy-importer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@mainsail/evm-consensus": "workspace:*",
"@mainsail/evm-contracts": "workspace:*",
"@mainsail/kernel": "workspace:*",
"@mainsail/snapshot-legacy": "workspace:*",
"@mainsail/snapshot-legacy-exporter": "workspace:*",
"@mainsail/utils": "workspace:*",
"bip39": "3.1.0",
"ethers": "^6.11.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/snapshot-legacy-importer/source/importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Contracts, Identifiers } from "@mainsail/contracts";
import { Identifiers as EvmConsensusIdentifiers } from "@mainsail/evm-consensus";
import { ConsensusAbi, UsernamesAbi } from "@mainsail/evm-contracts";
import { Utils } from "@mainsail/kernel";
import { Interfaces } from "@mainsail/snapshot-legacy";
import { Interfaces } from "@mainsail/snapshot-legacy-exporter";
import { BigNumber } from "@mainsail/utils";
import { entropyToMnemonic } from "bip39";
import { ethers, sha256 } from "ethers";
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/deps/check.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const EXCEPTIONS = {
devDependencies: [],
},
"@mainsail/configuration-generator": {
dependencies: ["@mainsail/crypto-key-pair-ecdsa", "@mainsail/crypto-signature-schnorr-secp256k1", "@mainsail/snapshot-legacy"],
dependencies: ["@mainsail/crypto-key-pair-ecdsa", "@mainsail/crypto-signature-schnorr-secp256k1", "@mainsail/snapshot-legacy-exporter"],
devDependencies: [],
},
"@mainsail/core": {
Expand Down

0 comments on commit 124de62

Please sign in to comment.