Skip to content

Commit

Permalink
chore: update sync start height to 875000 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
thephez authored Jan 11, 2024
1 parent 4d6ba7b commit 628eecd
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-register.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-retrieve-account-ids.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
});
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-topup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-transfer-credits.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-update-add-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/identity-update-disable-key.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/name-register-alias.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 1-Identities-and-Names/name-register.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/contract-register-history.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/contract-register-minimal.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/contract-update-history.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/contract-update-minimal.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/document-delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/document-submit.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion 2-Contracts-and-Documents/document-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion send-funds.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
};
Expand Down

0 comments on commit 628eecd

Please sign in to comment.