Commit 3dfa3cce authored by isstuev's avatar isstuev

fix

parent 8035161c
...@@ -168,7 +168,7 @@ export const RESOURCES = { ...@@ -168,7 +168,7 @@ export const RESOURCES = {
address_tokens: { address_tokens: {
path: '/api/v2/addresses/:id/tokens', path: '/api/v2/addresses/:id/tokens',
paginationFields: [ 'items_count' as const, 'token_name' as const, 'token_type' as const, 'value' as const ], paginationFields: [ 'items_count' as const, 'token_name' as const, 'token_type' as const, 'value' as const ],
filterFields: [ 'type' ], filterFields: [ 'type' as const ],
}, },
// CONTRACT // CONTRACT
......
...@@ -55,7 +55,7 @@ export interface AddressTokensResponse { ...@@ -55,7 +55,7 @@ export interface AddressTokensResponse {
token_name: 'string' | null; token_name: 'string' | null;
token_type: TokenType; token_type: TokenType;
value: number; value: number;
}; } | null;
} }
export interface AddressTransactionsResponse { export interface AddressTransactionsResponse {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment