From 628eecd2d6a27f620fb0e5539ad4ce4494167bff Mon Sep 17 00:00:00 2001 From: thephez Date: Thu, 11 Jan 2024 12:11:12 -0500 Subject: [PATCH] chore: update sync start height to 875000 (#29) --- 1-Identities-and-Names/identity-register.js | 2 +- 1-Identities-and-Names/identity-retrieve-account-ids.js | 2 +- 1-Identities-and-Names/identity-topup.js | 2 +- 1-Identities-and-Names/identity-transfer-credits.js | 2 +- 1-Identities-and-Names/identity-update-add-key.js | 2 +- 1-Identities-and-Names/identity-update-disable-key.js | 2 +- 1-Identities-and-Names/name-register-alias.js | 2 +- 1-Identities-and-Names/name-register.js | 2 +- 2-Contracts-and-Documents/contract-register-history.js | 2 +- 2-Contracts-and-Documents/contract-register-minimal.js | 2 +- 2-Contracts-and-Documents/contract-update-history.js | 2 +- 2-Contracts-and-Documents/contract-update-minimal.js | 2 +- 2-Contracts-and-Documents/document-delete.js | 2 +- 2-Contracts-and-Documents/document-submit.js | 2 +- 2-Contracts-and-Documents/document-update.js | 2 +- send-funds.js | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/1-Identities-and-Names/identity-register.js b/1-Identities-and-Names/identity-register.js index 8548d31..073a4a2 100644 --- a/1-Identities-and-Names/identity-register.js +++ b/1-Identities-and-Names/identity-register.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/identity-retrieve-account-ids.js b/1-Identities-and-Names/identity-retrieve-account-ids.js index 9b950cf..409ad6c 100644 --- a/1-Identities-and-Names/identity-retrieve-account-ids.js +++ b/1-Identities-and-Names/identity-retrieve-account-ids.js @@ -8,7 +8,7 @@ const client = new Dash.Client({ wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }); diff --git a/1-Identities-and-Names/identity-topup.js b/1-Identities-and-Names/identity-topup.js index 19a6396..292b4f8 100644 --- a/1-Identities-and-Names/identity-topup.js +++ b/1-Identities-and-Names/identity-topup.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/identity-transfer-credits.js b/1-Identities-and-Names/identity-transfer-credits.js index 2a404de..56fffe2 100644 --- a/1-Identities-and-Names/identity-transfer-credits.js +++ b/1-Identities-and-Names/identity-transfer-credits.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: process.env.SYNC_START_HEIGHT, // only sync from early-2022 + skipSynchronizationBeforeHeight: process.env.SYNC_START_HEIGHT, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/identity-update-add-key.js b/1-Identities-and-Names/identity-update-add-key.js index 4f91fe5..26170c7 100644 --- a/1-Identities-and-Names/identity-update-add-key.js +++ b/1-Identities-and-Names/identity-update-add-key.js @@ -11,7 +11,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/identity-update-disable-key.js b/1-Identities-and-Names/identity-update-disable-key.js index ba588f4..ba0a07c 100644 --- a/1-Identities-and-Names/identity-update-disable-key.js +++ b/1-Identities-and-Names/identity-update-disable-key.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/name-register-alias.js b/1-Identities-and-Names/name-register-alias.js index 6195b1f..decad24 100644 --- a/1-Identities-and-Names/name-register-alias.js +++ b/1-Identities-and-Names/name-register-alias.js @@ -10,7 +10,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/1-Identities-and-Names/name-register.js b/1-Identities-and-Names/name-register.js index b99c732..9cfaf61 100644 --- a/1-Identities-and-Names/name-register.js +++ b/1-Identities-and-Names/name-register.js @@ -10,7 +10,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/2-Contracts-and-Documents/contract-register-history.js b/2-Contracts-and-Documents/contract-register-history.js index 4f9b8cc..ae013d5 100644 --- a/2-Contracts-and-Documents/contract-register-history.js +++ b/2-Contracts-and-Documents/contract-register-history.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/2-Contracts-and-Documents/contract-register-minimal.js b/2-Contracts-and-Documents/contract-register-minimal.js index c53bbe9..2582ba2 100644 --- a/2-Contracts-and-Documents/contract-register-minimal.js +++ b/2-Contracts-and-Documents/contract-register-minimal.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/2-Contracts-and-Documents/contract-update-history.js b/2-Contracts-and-Documents/contract-update-history.js index eec6b76..d9664e5 100644 --- a/2-Contracts-and-Documents/contract-update-history.js +++ b/2-Contracts-and-Documents/contract-update-history.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/2-Contracts-and-Documents/contract-update-minimal.js b/2-Contracts-and-Documents/contract-update-minimal.js index 21280b5..278825d 100644 --- a/2-Contracts-and-Documents/contract-update-minimal.js +++ b/2-Contracts-and-Documents/contract-update-minimal.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, }; diff --git a/2-Contracts-and-Documents/document-delete.js b/2-Contracts-and-Documents/document-delete.js index 244d8d9..c01c687 100644 --- a/2-Contracts-and-Documents/document-delete.js +++ b/2-Contracts-and-Documents/document-delete.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, apps: { diff --git a/2-Contracts-and-Documents/document-submit.js b/2-Contracts-and-Documents/document-submit.js index 107c701..b9a1842 100644 --- a/2-Contracts-and-Documents/document-submit.js +++ b/2-Contracts-and-Documents/document-submit.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, apps: { diff --git a/2-Contracts-and-Documents/document-update.js b/2-Contracts-and-Documents/document-update.js index 00de6f8..b3dca25 100644 --- a/2-Contracts-and-Documents/document-update.js +++ b/2-Contracts-and-Documents/document-update.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 650000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, apps: { diff --git a/send-funds.js b/send-funds.js index eac69a6..d39a228 100644 --- a/send-funds.js +++ b/send-funds.js @@ -8,7 +8,7 @@ const clientOpts = { wallet: { mnemonic: process.env.MNEMONIC, // A Dash wallet mnemonic with testnet funds unsafeOptions: { - skipSynchronizationBeforeHeight: 675000, // only sync from early-2022 + skipSynchronizationBeforeHeight: 875000, // only sync from mid-2023 }, }, };