Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up RPC endpoints #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions amman/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Below is an example of a config where the accounts are being pulled from a speci
module.exports = {
validator: {
// By default Amman will pull the account data from the accountsCluster (can be overridden on a per account basis)
accountsCluster: 'https://api.metaplex.solana.com',
accountsCluster: 'https://api.mainnet-beta.solana.com',
accounts: [
{
label: 'Token Metadata Program',
Expand All @@ -140,7 +140,7 @@ module.exports = {
// executable: false,

// Providing a cluster here will override the accountsCluster field
cluster: 'https://metaplex.devnet.rpcpool.com'
cluster: 'https://api.devnet.solana.com'
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion amman/src/validator/init-validator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { AmmanState, ValidatorConfig } from './types'
export const DEFAULT_VALIDATOR_CONFIG: ValidatorConfig = {
killRunningValidators: true,
programs: [],
accountsCluster: 'https://metaplex.devnet.rpcpool.com',
accountsCluster: 'https://api.devnet.solana.com',
accounts: [],
jsonRpcUrl: LOCALHOST,
websocketUrl: '',
Expand Down
Loading