Get Outstanding Lowers For Account
Get all available lowers and the data to complete them. This accepts either an Ethereum recipient address or AvN sender address.
await api.query.getOutstandingLowersForAccount(<params>)
important
You can get the AVN_GATEWAY_URL here.
Expected Results
token
- The Ethereum address of the token being lowered.from
: The public key of the sending Aventus account.to
: The address on Ethereum specified to receive the lowered token amount.amount
: The amount of the token lowered.claimData
: An object containing the lowered data required to complete step 2 of the lower process.
Using The Recipient Ethereum Addresss
- Example
- Example Result
- JSON-RPC
- JSON-RPC Output
const AVN_API = require("avn-api");
const AVN_GATEWAY_URL = "<node_url>";
const options = {
suri: "<account_suri>",
};
const API = new AVN_API(AVN_GATEWAY_URL, options);
// The below Ethereum address is just an example
const RECIPIENT_ETHEREUM_ADDRESS = "0x0aa4a0f15864e2c1c3aa17d505faa0f997b4bdf9"
async function main() {
await api.init();
const result = await api.query.getOutstandingLowersForAccount(RECIPIENT_ETHEREUM_ADDRESS)
console.log(result);
}
(async () => {
await main();
})();
[
{
token: '0x0d88ed6e74bbfd96b831231638b66c05571e824f',
from: '0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677',
to: '0x0aa4a0f15864e2c1c3aa17d505faa0f997b4bdf9',
amount: '500000000000000',
claimData: [Object]
}
]
REQUEST
POST <https://AVN_GATEWAY_URL/query>
HEADERS
Content-Type: application/json Authorization': bearer <awtToken>
REQUEST PARAMS
- accountId [required] - a string representing the sender's Ethereum address.
JSON-RPC Example
curl https://AVN_GATEWAY_URL/query \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: bearer <awtToken>" \
-d '{"jsonrpc":"2.0", "method":"getOutstandingLowersForAccount", "params":{"accountId":"0x1a2b3c...a2b3"}, "id":1}'
{
"jsonrpc": "2.0",
"id": 1,
"result": [
{
"token": "0x0d88ed6e74bbfd96b831231638b66c05571e824f",
"from": "0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677",
"to": "0x0aa4a0f15864e2c1c3aa17d505faa0f997b4bdf9",
"amount": "500000000000000",
"claimData": [Object]
}
]
}
Using The Sender's Public Key
- Example
- Example Result
- JSON-RPC
- JSON-RPC Output
const AVN_API = require("avn-api");
const AVN_GATEWAY_URL = "<node_url>";
const options = {
suri: "<account_suri>",
};
const API = new AVN_API(AVN_GATEWAY_URL, options);
// the below public key is just an example
const SENDER_PUBLIC_KEY = "0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677"
async function main() {
await api.init();
// Replace "acct" with the Aventus address or public key
const result = await api.query.getOutstandingLowersForAccount(SENDER_PUBLIC_KEY)
console.log(result);
}
(async () => {
await main();
})();
[
{
token: '0x0d88ed6e74bbfd96b831231638b66c05571e824f',
from: '0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677',
to: '0x0aa4a0f15864e2c1c3aa17d505faa0f997b4bdf9',
amount: '500000000000000',
claimData: [Object]
}
]
REQUEST
POST <https://AVN_GATEWAY_URL/query>
HEADERS
Content-Type: application/json Authorization': bearer <awtToken>
REQUEST PARAMS
- accountId [required] - a string representing the public key of the account to check.
JSON-RPC Example
curl https://AVN_GATEWAY_URL/query \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: bearer <awtToken>" \
-d '{"jsonrpc":"2.0", "method":"getOutstandingLowersForAccount", "params":{"accountId":"0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677"}, "id":1}'
{
"jsonrpc": "2.0",
"id": 1,
"result": [
{
"token": "0x0d88ed6e74bbfd96b831231638b66c05571e824f",
"from": "0x5e3791f8f33eaf8b2b28aac472bd7782e175413afcad5b939d3773fe8b9c4677",
"to": "0x0aa4a0f15864e2c1c3aa17d505faa0f997b4bdf9",
"amount": "500000000000000",
"claimData": [Object]
}
]
}