Skip to content

Commit

Permalink
Merge pull request #316 from paritytech/yuri/drip-amounts
Browse files Browse the repository at this point in the history
10 WND drip amount for westend, fixed balance cap for other networks
  • Loading branch information
mutantcornholio authored Jul 3, 2023
2 parents 9fcac8c + f4cb960 commit 794f669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/networkData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface NetworkData {
}

const rococo: NetworkData = {
balanceCap: 100,
balanceCap: 1000,
chains: [
{ name: "Rococo Relay Chain", id: -1 },
{ name: "Rockmine", id: 1000 },
Expand Down Expand Up @@ -53,14 +53,14 @@ const westend: NetworkData = {
],
currency: "WND",
decimals: 12,
dripAmount: "1",
dripAmount: "10",
explorer: "https://westend.subscan.io",
networkName: "Westend",
rpcEndpoint: "wss://westend-rpc.polkadot.io/",
};

const versi: NetworkData = {
balanceCap: 100,
balanceCap: 1000,
chains: [],
currency: "VRS",
decimals: 12,
Expand Down

0 comments on commit 794f669

Please sign in to comment.