Skip to content

Commit

Permalink
Remove Frequency Rococo Faucet
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed May 2, 2024
1 parent 0ed306f commit 33fc0dd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SMF_CONFIG_NETWORK="frequencyRococo"
SMF_CONFIG_NETWORK="frequencyPaseo"

SMF_CONFIG_PORT=5555
SMF_CONFIG_DEPLOYED_REF=local
Expand Down
9 changes: 1 addition & 8 deletions client/src/lib/utils/networkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,7 @@ export interface NetworkData {
export const Frequency: NetworkData = {
networkName: "Frequency",
currency: "XRQCY",
chains: [
{ name: "Frequency Paseo Testnet", id: -1 },
{
name: "Frequency Rococo Testnet",
id: 4044,
endpoint: "https://faucet-api-rococo.liberti.social/drip/web"
}
],
chains: [{ name: "Frequency Paseo Testnet", id: -1 }],
endpoint: faucetUrl("https://faucet-api-paseo.liberti.social/drip/web"),
explorer: null
};
Expand Down
2 changes: 1 addition & 1 deletion client/tests/frequency.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { FaucetTests } from "./faucet.js";

const chains = [{ name: "Frequency Rococo Testnet", id: -1 }];
const chains = [{ name: "Frequency Paseo Testnet", id: -1 }];

const tests = new FaucetTests({
faucetName: "Frequency Faucet",
Expand Down
13 changes: 0 additions & 13 deletions src/networkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,6 @@ const rococo: NetworkData = {
matrixWhitelistPatterns: parityWhitelist,
};

const frequencyRococo: NetworkData = {
balanceCap: 1000,
chains: [{ name: "Frequency Rococo Testnet", id: -1 }],
currency: "XRQCY",
decimals: 8,
dripAmount: "5000",
explorer: null,
networkName: "Frequency Rococo Testnet",
rpcEndpoint: "wss://rpc.rococo.frequency.xyz",
matrixWhitelistPatterns: [],
};

const frequencyPaseo: NetworkData = {
balanceCap: 1000,
chains: [{ name: "Frequency Paseo Testnet", id: -1 }],
Expand Down Expand Up @@ -142,7 +130,6 @@ export const networks: Record<string, NetworkData> = {
e2e,
trappist,
paseo,
frequencyRococo,
frequencyPaseo,
};

Expand Down

0 comments on commit 33fc0dd

Please sign in to comment.