@@ -24,51 +24,51 @@ export const getAsset = (asset: Asset | internal.primitives.StubUint64Compat): A
2424}
2525
2626export const AssetParams : internal . opTypes . AssetParamsType = {
27- assetTotal : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
27+ assetTotal ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
2828 const asset = getAsset ( a )
2929 return asset === undefined ? [ Uint64 ( 0 ) , false ] : [ asset . total , true ]
3030 } ,
31- assetDecimals : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
31+ assetDecimals ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
3232 const asset = getAsset ( a )
3333 return asset === undefined ? [ Uint64 ( 0 ) , false ] : [ asset . decimals , true ]
3434 } ,
35- assetDefaultFrozen : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ boolean , boolean ] {
35+ assetDefaultFrozen ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ boolean , boolean ] {
3636 const asset = getAsset ( a )
3737 return asset === undefined ? [ false , false ] : [ asset . defaultFrozen , true ]
3838 } ,
39- assetUnitName : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
39+ assetUnitName ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
4040 const asset = getAsset ( a )
4141 return asset === undefined ? [ Bytes ( ) , false ] : [ asset . unitName , true ]
4242 } ,
43- assetName : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
43+ assetName ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
4444 const asset = getAsset ( a )
4545 return asset === undefined ? [ Bytes ( ) , false ] : [ asset . name , true ]
4646 } ,
47- assetUrl : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
47+ assetUrl ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
4848 const asset = getAsset ( a )
4949 return asset === undefined ? [ Bytes ( ) , false ] : [ asset . url , true ]
5050 } ,
51- assetMetadataHash : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
51+ assetMetadataHash ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ bytes , boolean ] {
5252 const asset = getAsset ( a )
5353 return asset === undefined ? [ Bytes ( ) , false ] : [ asset . metadataHash , true ]
5454 } ,
55- assetManager : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
55+ assetManager ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
5656 const asset = getAsset ( a )
5757 return asset === undefined ? [ Account ( ) , false ] : [ asset . manager , true ]
5858 } ,
59- assetReserve : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
59+ assetReserve ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
6060 const asset = getAsset ( a )
6161 return asset === undefined ? [ Account ( ) , false ] : [ asset . reserve , true ]
6262 } ,
63- assetFreeze : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
63+ assetFreeze ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
6464 const asset = getAsset ( a )
6565 return asset === undefined ? [ Account ( ) , false ] : [ asset . freeze , true ]
6666 } ,
67- assetClawback : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
67+ assetClawback ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
6868 const asset = getAsset ( a )
6969 return asset === undefined ? [ Account ( ) , false ] : [ asset . clawback , true ]
7070 } ,
71- assetCreator : function ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
71+ assetCreator ( a : Asset | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
7272 const asset = getAsset ( a )
7373 return asset === undefined ? [ Account ( ) , false ] : [ asset . creator , true ]
7474 } ,
0 commit comments