git.delta.rocks / unique-network / refs/commits / 719aab2a882e

difftreelog

fix(test-types-definitions) update rmrk rpc type

Fahrrader2022-06-08parent: #68ec820.patch.diff
in: master

2 files changed

modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
437 /**437 /**
438 * Get NFT resource priorities438 * Get NFT resource priorities
439 **/439 **/
440 nftResourcePriorities: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<Bytes>>>;440 nftResourcePriority: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, resourceId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<u32>>>;
441 /**441 /**
442 * Get NFT resources442 * Get NFT resources
443 **/443 **/
modifiedtests/src/interfaces/rmrk/definitions.tsdiffbeforeafterboth
81 ],81 ],
82 'Vec<RmrkTraitsResourceResourceInfo>',82 'Vec<RmrkTraitsResourceResourceInfo>',
83 ),83 ),
84 nftResourcePriorities: fn(84 nftResourcePriority: fn(
85 'Get NFT resource priorities',85 'Get NFT resource priorities',
86 [86 [
87 {name: 'collectionId', type: 'u32'},87 {name: 'collectionId', type: 'u32'},
88 {name: 'nftId', type: 'u32'},88 {name: 'nftId', type: 'u32'},
89 {name: 'resourceId', type: 'u32'},
89 ],90 ],
90 'Vec<Bytes>',91 'Option<u32>',
91 ),92 ),
92 base: fn(93 base: fn(
93 'Get base info',94 'Get base info',