Skip to content

Commit

Permalink
new rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
awojciak committed Sep 8, 2023
1 parent 015ebda commit 5fa117c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
4 changes: 1 addition & 3 deletions src/incentive_apy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ export const createSnapshotForNetwork = async (network: Network) => {

switch (network) {
case Network.MAIN:
provider = Provider.local(
'https://icy-billowing-gadget.solana-mainnet.discover.quiknode.pro/b970ec100ab2d8c249bee494b7d682c8ef75ee6f/'
)
provider = Provider.local('https://rpc.hellomoon.io/a2137852-bea2-4b79-a282-03ed3f020a14')
fileName = './data/incentive_apy_mainnet.json'
ticksFolder = './data/ticks/mainnet/'
rewardsData = MAINNET_REWARDS
Expand Down
4 changes: 1 addition & 3 deletions src/pool_apy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ export const createSnapshotForNetwork = async (network: Network) => {

switch (network) {
case Network.MAIN:
provider = Provider.local(
'https://icy-billowing-gadget.solana-mainnet.discover.quiknode.pro/b970ec100ab2d8c249bee494b7d682c8ef75ee6f/'
)
provider = Provider.local('https://rpc.hellomoon.io/a2137852-bea2-4b79-a282-03ed3f020a14')
fileName = './data/pool_apy_mainnet.json'
archiveFileName = './data/pool_apy_archive_mainnet.json'
ticksFolder = './data/ticks/mainnet/'
Expand Down
4 changes: 1 addition & 3 deletions src/snap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ export const createSnapshotForNetwork = async (network: Network) => {

switch (network) {
case Network.MAIN:
provider = Provider.local(
'https://icy-billowing-gadget.solana-mainnet.discover.quiknode.pro/b970ec100ab2d8c249bee494b7d682c8ef75ee6f/'
)
provider = Provider.local('https://rpc.hellomoon.io/a2137852-bea2-4b79-a282-03ed3f020a14')
fileName = './data/mainnet.json'
snaps = MAINNET_DATA
tokensData = await getTokensData()
Expand Down
4 changes: 1 addition & 3 deletions src/ticks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ export const createSnapshotForNetwork = async (network: Network) => {

switch (network) {
case Network.MAIN:
provider = Provider.local(
'https://icy-billowing-gadget.solana-mainnet.discover.quiknode.pro/b970ec100ab2d8c249bee494b7d682c8ef75ee6f/'
)
provider = Provider.local('https://rpc.hellomoon.io/a2137852-bea2-4b79-a282-03ed3f020a14')
folderName = './data/ticks/mainnet/'
break
case Network.DEV:
Expand Down

0 comments on commit 5fa117c

Please sign in to comment.