Node API - Osmosis LCD
API AuthenticationClick to view API Authentication details
Authorization
request header or URL
property. Calls are made to one of the Osmosis Lcd Node API endpoints found in your app's dashboard. For example:
https://osmosis-1--lcd--archive.datahub.figment.io
- Fetch with Header
- Fetch with Parameter
- CURL with Header
- CURL with Parameter
fetch("https://osmosis-1--lcd--archive.datahub.figment.io/osmosis/gamm/v1beta1/num_pools", {
method: 'POST', // can also be 'GET', 'PUT' or any appropriate method
headers: {
"Authorization" : "<api_key>",
"Content-Type": "application/json" // if method is 'POST'
},
body: JSON.stringify({
// JSON Payload
})
})
fetch("https://osmosis-1--lcd--archive.datahub.figment.io/apikey/{{apikey}}/osmosis/gamm/v1beta1/num_pools", {
method: 'POST', // can also be 'GET', 'PUT' or any appropriate method
headers: {
"Content-Type": "application/json" // if method is 'POST'
},
body: JSON.stringify({
// JSON Payload
})
})
curl -X POST 'https://osmosis-1--lcd--archive.datahub.figment.io/osmosis/gamm/v1beta1/num_pools' \
--header 'Content-Type: application/json' \
--header 'Authorization: <api_key>' \
--data '{
// JSON Payload
}'
curl -X POST 'https://osmosis-1--lcd--archive.datahub.figment.io/apikey/{{apikey}}/osmosis/gamm/v1beta1/num_pools' \
--header 'Content-Type: application/json' \
--data '{
// JSON Payload
}'
Available Methods
/osmosis/gamm/v1beta1/num_pools
Queries the total number of pools available.
{
"numPools": "796"
}
SpecificationView Specification
Parameters
- None
Response
- Returns the
numPools
i:e; total number of pools.
/osmosis/gamm/v1beta1/pools
Queries the list of all available Osmosis Pools.
{
"pools": [
{
"@type": "/osmosis.gamm.v1beta1.Pool",
"address": "osmo1mw0ac6rwlp5r8wapwk3zs6g29h8fcscxqakdzw9emkne6c8wjp9q0t3v8t",
"id": "1",
"poolParams": {
"swapFee": "0.002000000000000000",
"exitFee": "0.000000000000000000",
"smoothWeightChangeParams": null
},
"future_pool_governor": "24h",
"totalShares": {
"denom": "gamm/pool/1",
"amount": "293282236993261189282721212"
},
"poolAssets": [
{
"token": {
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"amount": "3453319564669"
},
"weight": "536870912000000"
},
{
"token": {
"denom": "uosmo",
"amount": "34327758771937"
},
"weight": "536870912000000"
}
],
"totalWeight": "1073741824000000"
}
],
"pagination": {
"next_key": "AAAAAAAAAGU=",
"total": "796"
}
}
SpecificationView Specification
Parameters
pagination.key
string($byte) (query) key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.pagination.offset
string($uint64) (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string($uint64) (query) limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.
Response
- Returns the list of pools along with details like
type
,address
,poolParams
,future_pool_governor
,totalShares
,poolAssets
andtotalWeight
.
/osmosis/gamm/v1beta1/pools/{poolId}
Queries the specific pool.
{
"pool": {
"@type": "/osmosis.gamm.v1beta1.Pool",
"address": "osmo1mw0ac6rwlp5r8wapwk3zs6g29h8fcscxqakdzw9emkne6c8wjp9q0t3v8t",
"id": "1",
"poolParams": {
"swapFee": "0.002000000000000000",
"exitFee": "0.000000000000000000",
"smoothWeightChangeParams": null
},
"future_pool_governor": "24h",
"totalShares": {
"denom": "gamm/pool/1",
"amount": "293282081066637379780718863"
},
"poolAssets": [
{
"token": {
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"amount": "3452543291894"
},
"weight": "536870912000000"
},
{
"token": {
"denom": "uosmo",
"amount": "34335514005595"
},
"weight": "536870912000000"
}
],
"totalWeight": "1073741824000000"
}
}
SpecificationView Specification
Parameters
poolId
string($uint64) (path) - Id of the pool.
Response
- Returns details of the specific pool for the given
poolID
liketype
,address
,poolParams
,future_pool_governor
,totalShares
,poolAssets
andtotalWeight
.
/osmosis/gamm/v1beta1/pools/{poolId}/params
Queries params for the specific pool.
{
"params": {
"@type": "/osmosis.gamm.v1beta1.PoolParams",
"swapFee": "0.002000000000000000",
"exitFee": "0.000000000000000000",
"smoothWeightChangeParams": null
}
}
SpecificationView Specification
Parameters
poolId
string($uint64) (path) - Id of the pool.
Response
- Returns the
params
for the givenpoolID
. @type
swapFee
exitFee
smoothWeightChangeParams
/osmosis/gamm/v1beta1/pools/{poolId}/prices
Queries prices for the specific pool.
""
SpecificationView Specification
Parameters
poolId
string($uint64) (path) (required) ID of the pool.tokenInDenom
string (query)tokenOutDenom
string (query)withSwapFee
boolean (query)
Response
- Returns
spotPrice
for the givenpoolID
,``tokenInDenomand
tokenOutDenom`.
/osmosis/gamm/v1beta1/total_liquidity
Queries for the total liquidity.
{
"liquidity": [
{
"denom": "gamm/pool/1",
"amount": "1349781228533367304"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Returns total
liquidity
withdenom
andamount
.
/osmosis/gamm/v1beta1/{poolId}/estimate/swap_exact_amount_in
Queries to estimate the swap - swap_exact_amount_in
.
""
SpecificationView Specification
Parameters
poolId
string($uint64) (path)sender
string (query)tokenIn
string (query)
Response
- Returns
tokenOutAmount
for the givenpoolID
.
/osmosis/gamm/v1beta1/{poolId}/estimate/swap_exact_amount_out
Queries to estimate the swap - swap_exact_amount_out
""
SpecificationView Specification
Parameters
poolId
string($uint64) (path)sender
string (query)tokenOut
string (query)
Response
- Returns
tokenInAmount
for the givenpoolID
.
/osmosis/epochs/v1beta1/current_epoch
Provide current epoch of specified identifier
{
"current_epoch": "0"
}
SpecificationView Specification
Parameters
identifier
string (query)
Response
- Returns the
current_epoch
.
/osmosis/epochs/v1beta1/epochs
Provide running epoch infos
{
"epochs": [
{
"identifier": "day",
"start_time": "2021-06-18T17:00:00Z",
"duration": "86400s",
"current_epoch": "439",
"current_epoch_start_time": "2022-08-31T17:16:09.898160996Z",
"epoch_counting_started": true,
"current_epoch_start_height": "5823267"
},
{
"identifier": "week",
"start_time": "2021-06-18T17:00:00Z",
"duration": "604800s",
"current_epoch": "62",
"current_epoch_start_time": "2022-08-26T17:02:07.229632445Z",
"epoch_counting_started": true,
"current_epoch_start_height": "5753200"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Return
epochs
info inludingidentifier
,start_time
,duration
,current_epoch
,current_epoch_start_time
,epoch_counting_started
,current_epoch_start_height
.
/osmosis/pool-incentives/v1beta1/distr_info
Queries for distr_info
.
{
"distr_info": {
"total_weight": "99999918",
"records": [
{
"gauge_id": "0",
"weight": "28999999"
}
]
}
}
SpecificationView Specification
Parameters
- None
Response
- Returns the
distr_info
inludingtotal_weight
,records
,gauge_id
andweight
.
/osmosis/pool-incentives/v1beta1/gauge-ids/{pool_id}
Takes the pool id and returns the matching gauge ids and durations
{
"gauge_ids_with_duration": [
{
"gauge_id": "1",
"duration": "86400s"
},
{
"gauge_id": "2",
"duration": "604800s"
},
{
"gauge_id": "3",
"duration": "1209600s"
}
]
}
SpecificationView Specification
Parameters
-
poolId
string($uint64) (path) - Id of the pool.
Response
- Returns the
gauge_ids_with_duration
.
/osmosis/pool-incentives/v1beta1/incentivized_pools
Queries for incentivized pools.
{
"incentivized_pools": [
{
"pool_id": "1",
"lockable_duration": "86400s",
"gauge_id": "1"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Returns
incentivized_pools
withpool_id
,lockable_duration
andgauge_id
.
/osmosis/pool-incentives/v1beta1/lockable_durations
Queries for lockable durations.
{
"lockable_durations": [
"86400s",
"604800s",
"1209600s"
]
}
SpecificationView Specification
Parameters
- None
Response
- Returns
lockable_durations
.
/osmosis/pool-incentives/v1beta1/params
Queries params
for pool-incentives.
{
"params": {
"minted_denom": "uosmo"
}
}
SpecificationView Specification
Parameters
- None
Response
- Returns
params
for the pool-incentives minted_denom
/osmosis/lockup/v1beta1/account_locked_coins/{owner}
Return locked coins that can't be withdrawn
{
"coins": [
{
"denom": "gamm/pool/722",
"amount": "58062152777943389351"
},
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)
Response
- Return
coins
withdenom
andamount
.
/osmosis/lockup/v1beta1/account_locked_longer_duration/{owner}
Returns account locked records with longer duration.
{
"locks": [
{
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)duration
string (query)
Response
- Returns
locks
withID
,owner
,duration
,end_time
andcoins
.
/osmosis/lockup/v1beta1/account_locked_longer_duration_denom/{owner}
Returns account's locked records for a denom with longer duration
{
"locks": [
{
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)duration
string (query)denom
string (query)
Response
- Returns
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
anddenom
/osmosis/lockup/v1beta1/account_locked_longer_duration_not_unlocking_only/{owner}
Returns account locked records with longer duration excluding tokens started unlocking
{
"locks": [
{
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)duration
string (query)
Response
- Return
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
.
/osmosis/lockup/v1beta1/account_locked_pasttime/{owner}
Returns locked records of an account with unlock time beyond timestamp
{
"locks": [
{
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)timestamp
string($date-time) (query)
Response
- Returns
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
.
/osmosis/lockup/v1beta1/account_locked_pasttime_denom/{owner}
Returns lock records by address, timestamp, denom.
{
"locks": [
{
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)timestamp
string($date-time) (query)denom
string (query)
Response
- Returns
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
&denom
.
/osmosis/lockup/v1beta1/account_locked_pasttime_not_unlocking_only/{owner}
Returns locked records of an account with unlock time beyond timestamp excluding tokens started unlocking
{
"locks": [
{
"ID": "1479168",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/722",
"amount": "58062152777943389351"
}
]
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)timestamp
string($date-time) (query)
Response
- Returns
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
.
/osmosis/lockup/v1beta1/account_unlockable_coins/{owner}
Returns unlockable coins which are not withdrawn yet.
{
"coins": [
{
"denom": "gamm/pool/722",
"amount": "60062152777943389351"
}
]
}
SpecificationView Specification
Parameters
owner
string (path) (required)
Response
- Return unlockable
coins
withdenom
andamount
.
/osmosis/lockup/v1beta1/account_unlocked_before_time/{owner}
Returns unlocked records with unlock time before timestamp.
{
"locks": []
}
SpecificationView Specification
Parameters
owner
string (path) (required)timestamp
string($date-time) (query)
Response
- Return
locks
withID
,owner
,duration
,end_time
andcoins
for the givenowner
.
/osmosis/lockup/v1beta1/account_unlocking_coins/{owner}
Returns unlocking coins
{
"coins": []
}
SpecificationView Specification
Parameters
owner
string (path) (required)
Response
- Return unlocking
coins
withdenom
andamount
.
/osmosis/lockup/v1beta1/locked_by_id/{lock_id}
Returns lock record by id
{
"lock": {
"ID": "1479165",
"owner": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"duration": "1209600s",
"end_time": "0001-01-01T00:00:00Z",
"coins": [
{
"denom": "gamm/pool/773",
"amount": "10981414108860628281"
}
]
}
}
SpecificationView Specification
Parameters
lock_id
string (path) (required)
Response
- Return
locks
withID
,owner
,duration
,end_time
andcoins
for the givenlock_id
/osmosis/lockup/v1beta1/module_balance
Return full balance of the module
{
"coins": [
{
"denom": "gamm/pool/1",
"amount": "282049764858078233086494989"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Return
coins
withdenom
andamount
to show the full balance of the module.
/osmosis/lockup/v1beta1/module_locked_amount
Return locked balance of the module
{
"coins": [
{
"denom": "gamm/pool/1",
"amount": "282049764858078233086494989"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Return
coins
withdenom
andamount
to show the locked balance of the module.
/osmosis/incentives/v1beta1/active_gauges
Returns active gauges
{
"data": [
{
"id": "3916",
"is_perpetual": false,
"distribute_to": {
"lock_query_type": "ByDuration",
"denom": "gamm/pool/701",
"duration": "86400s",
"timestamp": "1970-01-01T00:00:00Z"
},
"coins": [
{
"denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA",
"amount": "100000000000"
}
],
"start_time": "1970-01-01T00:00:00Z",
"num_epochs_paid_over": "180",
"filled_epochs": "96",
"distributed_coins": [
{
"denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA",
"amount": "53333327218"
}
]
}
],
"pagination": {
"next_key": "BwEAAAAAAAAAHTIwMjEtMDYtMTlUMDQ6MzA6MTkuMDgyNDYyMzY0",
"total": "0"
}
}
SpecificationView Specification
Parameters
pagination.key
string($byte) (query) key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.pagination.offset
string($uint64) (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string($uint64) (query) limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.
Response
- Return active gauges
data
withid
,is_perpetual
,distribute_to
,coins
,start_time
,num_epochs_paid_over
,filled_epochs
anddistributed_coins
.
/osmosis/incentives/v1beta1/gauge_by_id/{id}
Returns Gauge by id
{
"gauge": {
"id": "3916",
"is_perpetual": false,
"distribute_to": {
"lock_query_type": "ByDuration",
"denom": "gamm/pool/701",
"duration": "86400s",
"timestamp": "1970-01-01T00:00:00Z"
},
"coins": [
{
"denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA",
"amount": "100000000000"
}
],
"start_time": "1970-01-01T00:00:00Z",
"num_epochs_paid_over": "180",
"filled_epochs": "96",
"distributed_coins": [
{
"denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA",
"amount": "53333327218"
}
]
}
}
SpecificationView Specification
Parameters
id
string($uint64) (path) (required)
Response
- Return active gauges
data
for the given gaugeid
withid
,is_perpetual
,distribute_to
,coins
,start_time
,num_epochs_paid_over
,filled_epochs
anddistributed_coins
.
/osmosis/incentives/v1beta1/gauges
Returns gauges both upcoming and active
{
"data": [
{
"id": "29549",
"is_perpetual": true,
"distribute_to": {
"lock_query_type": "ByDuration",
"denom": "gamm/pool/722/superbonding/osmovaloper1yp8qwkfs964pkg3rge3k6ree2e6lrttgc8aqzn",
"duration": "1209600s",
"timestamp": "0001-01-01T00:00:00Z"
},
"coins": [],
"start_time": "2022-09-01T03:57:08.821763671Z",
"num_epochs_paid_over": "1",
"filled_epochs": "0",
"distributed_coins": []
}
],
"pagination": {
"next_key": "AAcBAAAAAAAAAB0yMDIyLTEyLTEwVDAwOjAwOjAwLjAwMDAwMDAwMA==",
"total": "0"
}
}
SpecificationView Specification
Parameters
pagination.key
string($byte) (query) key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.pagination.offset
string($uint64) (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string($uint64) (query) limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.
Response
- Return upcoming and active gauges
data
withid
,is_perpetual
,distribute_to
,coins
,start_time
,num_epochs_paid_over
,filled_epochs
anddistributed_coins
.
/osmosis/incentives/v1beta1/module_distributed_coins
Returns coins that are distributed by module so far
{
"coins": [
{
"denom": "gamm/pool/577",
"amount": "23865608"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Retunrn
coins
withdenom
andamount
that are distributed by the module.
/osmosis/incentives/v1beta1/module_to_distribute_coins
Returns coins that are going to be distributed
{
"coins": [
{
"denom": "gamm/pool/577",
"amount": "125200000"
}
]
}
SpecificationView Specification
Parameters
- None
Response
- Retunrn
coins
withdenom
andamount
that are going to be distributed.
/osmosis/incentives/v1beta1/rewards_est/{owner}
Returns an estimate of the rewards at a future specific time. The querier either provides an address or a set of locks for which they want to find the associated rewards.
{
"coins": []
}
SpecificationView Specification
Parameters
owner
string (path) (required)lock_ids
array[string] (query)end_epoch
string($int64) (query)
Response
- Returns the
coins
withdenom
andamount
as an estimate of the rewards at a future specific time.
/osmosis/incentives/v1beta1/upcoming_gauges
Returns scheduled gauges
{
"data": [
{
"id": "29549",
"is_perpetual": true,
"distribute_to": {
"lock_query_type": "ByDuration",
"denom": "gamm/pool/722/superbonding/osmovaloper1yp8qwkfs964pkg3rge3k6ree2e6lrttgc8aqzn",
"duration": "1209600s",
"timestamp": "0001-01-01T00:00:00Z"
},
"coins": [],
"start_time": "2022-09-01T03:57:08.821763671Z",
"num_epochs_paid_over": "1",
"filled_epochs": "0",
"distributed_coins": []
}
],
"pagination": {
"next_key": "BwEAAAAAAAAAHTIwMjItMTItMTBUMDA6MDA6MDAuMDAwMDAwMDAw",
"total": "0"
}
}
SpecificationView Specification
Parameters
pagination.key
string($byte) (query) key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one of offset or key should be set.pagination.offset
string($uint64) (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string($uint64) (query) limit is the total number of results to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.
Response
- Return scheduled gauges
data
for theid
,is_perpetual
,distribute_to
,coins
,start_time
,num_epochs_paid_over
,filled_epochs
anddistributed_coins
.
/osmosis/mint/v1beta1/epoch_provisions
Current minting epoch provisions value.
{
"epoch_provisions": "547945205479.452054246575342465"
}
SpecificationView Specification
Parameters
- None
Response
- Returns current
epoch_provisions
.
/osmosis/mint/v1beta1/params
Params returns the total set of minting parameters.
{
"params": {
"mint_denom": "uosmo",
"genesis_epoch_provisions": "821917808219.178082191780821917",
"epoch_identifier": "day",
"reduction_period_in_epochs": "365",
"reduction_factor": "0.666666666666666666",
"distribution_proportions": {
"staking": "0.250000000000000000",
"pool_incentives": "0.450000000000000000",
"developer_rewards": "0.250000000000000000",
"community_pool": "0.050000000000000000"
},
"weighted_developer_rewards_receivers": [
{
"address": "osmo14kjcwdwcqsujkdt8n5qwpd8x8ty2rys5rjrdjj",
"weight": "0.288700000000000000"
}
],
"minting_rewards_distribution_start_epoch": "1"
}
}
SpecificationView Specification
Parameters
- None
Response
- Returns set of minting
params
withmint_denom
,genesis_epoch_provisions
,epoch_identifier
,reduction_period_in_epochs
,reduction_factor
,distribution_proportions
,weighted_developer_rewards_receivers
andminting_rewards_distribution_start_epoch
.
/cosmos/auth/v1beta1/accounts
Returns all existing accounts.
{
"accounts": [
{
"@type": "/cosmos.auth.v1beta1.BaseAccount",
"address": "osmo1qqqp2a9m665lywtjjskjnrw44a9zmdll74uumu",
"pub_key": null,
"account_number": "0",
"sequence": "0"
},
{
"@type": "/cosmos.auth.v1beta1.BaseAccount",
"address": "osmo1qqqyfe3l7xpxurw9e7lmplwj837uy5nuygvl8q",
"pub_key": null,
"account_number": "26804",
"sequence": "0"
}
],
"pagination": {
"next_key": "AABF5YQb0MiKG04HtrHXpfrxCyY=",
"total": "0"
}
}
SpecificationView Specification
Parameters
pagination.key
string ($byte) (query) Key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one offset or key should be set.pagination.offset
string ($uint64 (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string ($uint64) (query) limit is the total number of Response to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean($boolean) (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.pagination.reverse
boolean ($boolean (query) reverse is set to true if Response are to be returned in the descending order.
Response
- It returns accounts with details including account
type
,address
,pub_key
,account_number
andpagination
/cosmos/auth/v1beta1/accounts/{address}
Returns account details based on address.
{
"account": {
"@type": "/cosmos.auth.v1beta1.BaseAccount",
"address": "osmo16ch9yae5g46uvp6jz24ylukw4q53jz5letcszh",
"pub_key": {
"@type": "/cosmos.crypto.secp256k1.PubKey",
"key": "A3KId9/peMXqRhDFjvgKTP+qhQJpLOWjeRvQnClFnM09"
},
"account_number": "647239",
"sequence": "13"
}
}
SpecificationView Specification
Parameters
address
string (path) address defines the address to query for.
Response
- It returns accounts with details including account
type
,address
,pub_key
,account_number
andsequence
/cosmos/auth/v1beta1/params
Query all parameters.
{
"params": {
"max_memo_characters": "256",
"tx_sig_limit": "7",
"tx_size_cost_per_byte": "10",
"sig_verify_cost_ed25519": "590",
"sig_verify_cost_secp256k1": "1000"
}
}
SpecificationView Specification
Parameters
- None
Response
- Returns
params
withmax_memo_characters
,tx_sig_limit
,tx_size_cost_per_byte
,sig_verify_cost_ed25519
andsig_verify_cost_secp256k1
/cosmos/bank/v1beta1/balances/{address}
Queries the balance of all coins for a single account.
{
"balances": [
{
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"amount": "12"
},
{
"denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A",
"amount": "36182127549864723"
},
{
"denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7",
"amount": "1"
},
{
"denom": "uosmo",
"amount": "121333"
}
],
"pagination": {
"next_key": null,
"total": "4"
}
}
SpecificationView Specification
Parameters
address
string (path) address is the address to query balances for.pagination.key
string ($byte) (query) Key is a value returned in PageResponse.next_key to begin querying the next page most efficiently. Only one offset or key should be set.pagination.offset
string ($uint64 (query) offset is a numeric offset that can be used when key is unavailable. It is less efficient than using key. Only one of offset or key should be set.pagination.limit
string ($uint64) (query) limit is the total number of Response to be returned in the result page. If left empty it will default to a value to be set by each app.pagination.count_total
boolean($boolean) (query) count_total is set to true to indicate that the result set should include a count of the total number of items available for pagination in UIs. count_total is only respected when offset is used. It is ignored when key is set.pagination.reverse
boolean ($boolean (query) reverse is set to true if Response are to be returned in the descending order.
Response
- It returns balances for the given address which includes
denom
,amount
andpagination
/cosmos/bank/v1beta1/denoms_metadata
Queries the client metadata for all registered coin denominations.
{
"metadatas": [
{
"description": "",
"denom_units": [
{
"denom": "factory/osmo1xp0qs6pkay2jssu58p8eap0epdhwx5mqlhs4v7/GuardIONs",
"exponent": 0,
"aliases": []
}
],
"base": "factory/osmo1xp0qs6pkay2jssu58p8eap0epdhwx5mqlhs4v7/GuardIONs",
"display": "",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 100",
"denom_units": [
{
"denom": "gamm/pool/100",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-100",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/100",
"display": "GAMM-100",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 101",
"denom_units": [
{
"denom": "gamm/pool/101",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-101",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/101",
"display": "GAMM-101",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 102",
"denom_units": [
{
"denom": "gamm/pool/102",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-102",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/102",
"display": "GAMM-102",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 103",
"denom_units": [
{
"denom": "gamm/pool/103",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-103",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/103",
"display": "GAMM-103",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 104",
"denom_units": [
{
"denom": "gamm/pool/104",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-104",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/104",
"display": "GAMM-104",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 105",
"denom_units": [
{
"denom": "gamm/pool/105",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-105",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/105",
"display": "GAMM-105",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 106",
"denom_units": [
{
"denom": "gamm/pool/106",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-106",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/106",
"display": "GAMM-106",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 107",
"denom_units": [
{
"denom": "gamm/pool/107",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-107",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/107",
"display": "GAMM-107",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 108",
"denom_units": [
{
"denom": "gamm/pool/108",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-108",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/108",
"display": "GAMM-108",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 109",
"denom_units": [
{
"denom": "gamm/pool/109",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-109",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/109",
"display": "GAMM-109",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 10",
"denom_units": [
{
"denom": "gamm/pool/10",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-10",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/10",
"display": "GAMM-10",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 110",
"denom_units": [
{
"denom": "gamm/pool/110",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-110",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/110",
"display": "GAMM-110",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 111",
"denom_units": [
{
"denom": "gamm/pool/111",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-111",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/111",
"display": "GAMM-111",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 112",
"denom_units": [
{
"denom": "gamm/pool/112",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-112",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/112",
"display": "GAMM-112",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 113",
"denom_units": [
{
"denom": "gamm/pool/113",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-113",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/113",
"display": "GAMM-113",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 114",
"denom_units": [
{
"denom": "gamm/pool/114",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-114",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/114",
"display": "GAMM-114",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 115",
"denom_units": [
{
"denom": "gamm/pool/115",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-115",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/115",
"display": "GAMM-115",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 116",
"denom_units": [
{
"denom": "gamm/pool/116",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-116",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/116",
"display": "GAMM-116",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 117",
"denom_units": [
{
"denom": "gamm/pool/117",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-117",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/117",
"display": "GAMM-117",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 118",
"denom_units": [
{
"denom": "gamm/pool/118",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-118",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/118",
"display": "GAMM-118",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 119",
"denom_units": [
{
"denom": "gamm/pool/119",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-119",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/119",
"display": "GAMM-119",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 11",
"denom_units": [
{
"denom": "gamm/pool/11",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-11",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/11",
"display": "GAMM-11",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 120",
"denom_units": [
{
"denom": "gamm/pool/120",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-120",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/120",
"display": "GAMM-120",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 121",
"denom_units": [
{
"denom": "gamm/pool/121",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-121",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/121",
"display": "GAMM-121",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 122",
"denom_units": [
{
"denom": "gamm/pool/122",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-122",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/122",
"display": "GAMM-122",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 123",
"denom_units": [
{
"denom": "gamm/pool/123",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-123",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/123",
"display": "GAMM-123",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 124",
"denom_units": [
{
"denom": "gamm/pool/124",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-124",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/124",
"display": "GAMM-124",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 125",
"denom_units": [
{
"denom": "gamm/pool/125",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-125",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/125",
"display": "GAMM-125",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 126",
"denom_units": [
{
"denom": "gamm/pool/126",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-126",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/126",
"display": "GAMM-126",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 127",
"denom_units": [
{
"denom": "gamm/pool/127",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-127",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/127",
"display": "GAMM-127",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 128",
"denom_units": [
{
"denom": "gamm/pool/128",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-128",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/128",
"display": "GAMM-128",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 129",
"denom_units": [
{
"denom": "gamm/pool/129",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-129",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/129",
"display": "GAMM-129",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 12",
"denom_units": [
{
"denom": "gamm/pool/12",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-12",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/12",
"display": "GAMM-12",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 130",
"denom_units": [
{
"denom": "gamm/pool/130",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-130",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/130",
"display": "GAMM-130",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 131",
"denom_units": [
{
"denom": "gamm/pool/131",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-131",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/131",
"display": "GAMM-131",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 132",
"denom_units": [
{
"denom": "gamm/pool/132",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-132",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/132",
"display": "GAMM-132",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 133",
"denom_units": [
{
"denom": "gamm/pool/133",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-133",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/133",
"display": "GAMM-133",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 134",
"denom_units": [
{
"denom": "gamm/pool/134",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-134",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/134",
"display": "GAMM-134",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 135",
"denom_units": [
{
"denom": "gamm/pool/135",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-135",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/135",
"display": "GAMM-135",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 136",
"denom_units": [
{
"denom": "gamm/pool/136",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-136",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/136",
"display": "GAMM-136",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 137",
"denom_units": [
{
"denom": "gamm/pool/137",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-137",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/137",
"display": "GAMM-137",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 138",
"denom_units": [
{
"denom": "gamm/pool/138",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-138",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/138",
"display": "GAMM-138",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 139",
"denom_units": [
{
"denom": "gamm/pool/139",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-139",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/139",
"display": "GAMM-139",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 13",
"denom_units": [
{
"denom": "gamm/pool/13",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-13",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/13",
"display": "GAMM-13",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 140",
"denom_units": [
{
"denom": "gamm/pool/140",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-140",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/140",
"display": "GAMM-140",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 141",
"denom_units": [
{
"denom": "gamm/pool/141",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-141",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/141",
"display": "GAMM-141",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 142",
"denom_units": [
{
"denom": "gamm/pool/142",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-142",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/142",
"display": "GAMM-142",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 143",
"denom_units": [
{
"denom": "gamm/pool/143",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-143",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/143",
"display": "GAMM-143",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 144",
"denom_units": [
{
"denom": "gamm/pool/144",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-144",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/144",
"display": "GAMM-144",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 145",
"denom_units": [
{
"denom": "gamm/pool/145",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-145",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/145",
"display": "GAMM-145",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 146",
"denom_units": [
{
"denom": "gamm/pool/146",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-146",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/146",
"display": "GAMM-146",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 147",
"denom_units": [
{
"denom": "gamm/pool/147",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-147",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/147",
"display": "GAMM-147",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 148",
"denom_units": [
{
"denom": "gamm/pool/148",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-148",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/148",
"display": "GAMM-148",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 149",
"denom_units": [
{
"denom": "gamm/pool/149",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-149",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/149",
"display": "GAMM-149",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 14",
"denom_units": [
{
"denom": "gamm/pool/14",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-14",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/14",
"display": "GAMM-14",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 150",
"denom_units": [
{
"denom": "gamm/pool/150",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-150",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/150",
"display": "GAMM-150",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 151",
"denom_units": [
{
"denom": "gamm/pool/151",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-151",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/151",
"display": "GAMM-151",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 152",
"denom_units": [
{
"denom": "gamm/pool/152",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-152",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/152",
"display": "GAMM-152",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 153",
"denom_units": [
{
"denom": "gamm/pool/153",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-153",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/153",
"display": "GAMM-153",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 154",
"denom_units": [
{
"denom": "gamm/pool/154",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-154",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/154",
"display": "GAMM-154",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 155",
"denom_units": [
{
"denom": "gamm/pool/155",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-155",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/155",
"display": "GAMM-155",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 156",
"denom_units": [
{
"denom": "gamm/pool/156",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-156",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/156",
"display": "GAMM-156",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 157",
"denom_units": [
{
"denom": "gamm/pool/157",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-157",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/157",
"display": "GAMM-157",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 158",
"denom_units": [
{
"denom": "gamm/pool/158",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-158",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/158",
"display": "GAMM-158",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 159",
"denom_units": [
{
"denom": "gamm/pool/159",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-159",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/159",
"display": "GAMM-159",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 15",
"denom_units": [
{
"denom": "gamm/pool/15",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-15",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/15",
"display": "GAMM-15",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 160",
"denom_units": [
{
"denom": "gamm/pool/160",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-160",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/160",
"display": "GAMM-160",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 161",
"denom_units": [
{
"denom": "gamm/pool/161",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-161",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/161",
"display": "GAMM-161",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 162",
"denom_units": [
{
"denom": "gamm/pool/162",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-162",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/162",
"display": "GAMM-162",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 163",
"denom_units": [
{
"denom": "gamm/pool/163",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-163",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/163",
"display": "GAMM-163",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 164",
"denom_units": [
{
"denom": "gamm/pool/164",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-164",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/164",
"display": "GAMM-164",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 165",
"denom_units": [
{
"denom": "gamm/pool/165",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-165",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/165",
"display": "GAMM-165",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 166",
"denom_units": [
{
"denom": "gamm/pool/166",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-166",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/166",
"display": "GAMM-166",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 167",
"denom_units": [
{
"denom": "gamm/pool/167",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-167",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/167",
"display": "GAMM-167",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 168",
"denom_units": [
{
"denom": "gamm/pool/168",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-168",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/168",
"display": "GAMM-168",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 169",
"denom_units": [
{
"denom": "gamm/pool/169",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-169",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/169",
"display": "GAMM-169",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 16",
"denom_units": [
{
"denom": "gamm/pool/16",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-16",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/16",
"display": "GAMM-16",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 170",
"denom_units": [
{
"denom": "gamm/pool/170",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-170",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/170",
"display": "GAMM-170",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 171",
"denom_units": [
{
"denom": "gamm/pool/171",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-171",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/171",
"display": "GAMM-171",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 172",
"denom_units": [
{
"denom": "gamm/pool/172",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-172",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/172",
"display": "GAMM-172",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 173",
"denom_units": [
{
"denom": "gamm/pool/173",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-173",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/173",
"display": "GAMM-173",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 174",
"denom_units": [
{
"denom": "gamm/pool/174",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-174",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/174",
"display": "GAMM-174",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 175",
"denom_units": [
{
"denom": "gamm/pool/175",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-175",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/175",
"display": "GAMM-175",
"name": "",
"symbol": ""
},
{
"description": "The share token of the gamm pool 176",
"denom_units": [
{
"denom": "gamm/pool/176",
"exponent": 0,
"aliases": [
"attopoolshare"
]
},
{
"denom": "GAMM-176",
"exponent": 18,
"aliases": []
}
],
"base": "gamm/pool/176",
"display": "GAMM-176",
"name": "",
"symbol": ""
},
{
"description":