Skip to content

Commit

Permalink
enable faucet on cosmos and osmosis testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
liangping committed Jun 11, 2024
1 parent bb44080 commit 11df41d
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 25 deletions.
44 changes: 35 additions & 9 deletions chains/testnet/cosmos.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
{
"chain_name": "cosmos",
"api": ["https://vega.api.ping.pub", "https://rest.seed-01.theta-testnet.polypore.xyz", "https://rest.seed-02.theta-testnet.polypore.xyz"],
"rpc": ["https://rpc.seed-01.theta-testnet.polypore.xyz", "https://rpc.seed-02.theta-testnet.polypore.xyz"],
"api": [
{
"address": "https://rest.seed-01.theta-testnet.polypore.xyz",
"provider": "polypore"
},
{
"address": "https://rest.seed-02.theta-testnet.polypore.xyz",
"provider": "polypore"
}
],
"rpc": [
{
"address": "https://rpc.seed-01.theta-testnet.polypore.xyz",
"provider": "polypore"
},
{
"address": "https://rpc.seed-02.theta-testnet.polypore.xyz",
"provider": "polypore"
}
],
"sdk_version": "0.45.1",
"coin_type": "118",
"min_tx_fee": "800",
"addr_prefix": "cosmos",
"logo": "/logos/cosmos.svg",
"assets": [{
"base": "uatom",
"symbol": "ATOM",
"exponent": "6",
"coingecko_id": "cosmos",
"logo": "/logos/cosmos.svg"
}]
"assets": [
{
"base": "uatom",
"symbol": "ATOM",
"exponent": "6",
"coingecko_id": "cosmos",
"logo": "/logos/cosmos.svg"
}
],
"faucet": {
"amount": "5000000uatom",
"ip_limit": "1",
"address_limit": "1",
"fees": "800uatom"
}
}
51 changes: 35 additions & 16 deletions chains/testnet/osmosis.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,44 @@
{
"chain_name": "osmosis",
"coingecko": "osmosis",
"api": ["https://lcd.osmotest5.osmosis.zone"],
"rpc": ["https://rpc.osmotest5.osmosis.zone"],
"api": [
{
"address": "https://api.osmotest5.osmosis.zone",
"provider": "osmosis"
}
],
"rpc": [
{
"address": "https://rpc.osmotest5.osmosis.zone",
"provider": "osmosis"
}
],
"snapshot_provider": "",
"sdk_version": "0.44.5",
"coin_type": "118",
"min_tx_fee": "800",
"addr_prefix": "osmo",
"logo": "/logos/osmosis.jpg",
"assets": [{
"base": "uosmo",
"symbol": "OSMO",
"exponent": "6",
"coingecko_id": "osmosis",
"logo": "/logos/osmosis.jpg"
},{
"base": "uion",
"symbol": "ION",
"exponent": "6",
"coingecko_id": "ion",
"logo": "/logos/osmosis.jpg"
}]
}
"assets": [
{
"base": "uosmo",
"symbol": "OSMO",
"exponent": "6",
"coingecko_id": "osmosis",
"logo": "/logos/osmosis.jpg"
},
{
"base": "uion",
"symbol": "ION",
"exponent": "6",
"coingecko_id": "ion",
"logo": "/logos/osmosis.jpg"
}
],
"faucet": {
"amount": "5000000uosmo",
"ip_limit": "1",
"address_limit": "1",
"fees": "800uosmo"
}
}

0 comments on commit 11df41d

Please sign in to comment.