File tree 3 files changed +8
-10
lines changed
3 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,8 @@ export const createDasApiDecorator = (
260
260
getAssetSignatures : async ( input : GetAssetSignaturesRpcInput ) => {
261
261
const signatures = await rpc . call < GetAssetSignaturesRpcResponse | null > (
262
262
'getAssetSignaturesV2' ,
263
- [ input . assetId ,
263
+ [
264
+ input . assetId ,
264
265
input . limit ?? null ,
265
266
input . page ?? null ,
266
267
input . before ?? null ,
Original file line number Diff line number Diff line change 1
- import {
2
- Nullable ,
3
- PublicKey ,
4
- } from '@metaplex-foundation/umi' ;
1
+ import { Nullable , PublicKey } from '@metaplex-foundation/umi' ;
5
2
6
3
// ---------------------------------------- //
7
4
// RPC input. //
@@ -459,7 +456,7 @@ export type GetAssetSignaturesRpcInput = {
459
456
/**
460
457
* The maximum number of assets to retrieve.
461
458
*/
462
- limit ?: Nullable < number > ;
459
+ limit ?: Nullable < number > ;
463
460
464
461
/**
465
462
* The page number of the signatures.
@@ -487,7 +484,7 @@ export type GetAssetSignaturesRpcInput = {
487
484
leaf_index ?: Nullable < number > ;
488
485
489
486
/**
490
- *
487
+ *
491
488
*/
492
489
cursor ?: Nullable < string > ;
493
490
@@ -516,8 +513,8 @@ export type GetAssetSignaturesRpcResponse = {
516
513
*/
517
514
limit : number ;
518
515
519
- before : string ,
520
- after : string ,
516
+ before : string ;
517
+ after : string ;
521
518
522
519
/**
523
520
* The page number of the signatures.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ DAS_API_ENDPOINTS.forEach((endpoint) => {
20
20
'8QoG5BnZH9RVz2qLsKPEQ5jnAaCBu3kdRd9Hf4PgSwx9' ,
21
21
'DAbAU9srHpEUogXWuhy5VZ7g8UX9STymELtndcx1xgP1' ,
22
22
'3HCYqQRcQSChEuAw1ybNYHibrTNNjzbYzm56cmEmivB6' ,
23
- 'GSz87YKd3YoZWcEKhnjSsYJwv8o5aWGdBdGGYUphRfTh'
23
+ 'GSz87YKd3YoZWcEKhnjSsYJwv8o5aWGdBdGGYUphRfTh' ,
24
24
] ,
25
25
node_index : 32 ,
26
26
leaf : 'FGWfA5v5SZnpe9r32NEvDyX9hLeVEoBf3GqEkHX6YK9w' ,
You can’t perform that action at this time.
0 commit comments