difftreelog
Update custom types
in: master
2 files changed
README.mddiffbeforeafterboth122 "Owner": "AccountId",122 "Owner": "AccountId",123 "Data": "Vec<u8>"123 "Data": "Vec<u8>"124 },124 },125 "Ownership": {126 "owner": "AccountId",127 "fraction": "u128"128 },129 "ReFungibleItemType": {130 "Collection": u64,131 "Owner": "Vec<Ownership<AccountId>>",132 "Data": "Vec<u8>",133 },125 "CollectionType": {134 "CollectionType": {126 "Owner": "AccountId",135 "Owner": "AccountId",127 "Mode": "CollectionMode",136 "Mode": "CollectionMode",doc/application_development.mddiffbeforeafterboth181819## Custom Types for JS API19## Custom Types for JS API202021```22{23 "Schedule": {21See in root README24 "version": "u32",25 "put_code_per_byte_cost": "Gas",26 "grow_mem_cost": "Gas",27 "regular_op_cost": "Gas",28 "return_data_per_byte_cost": "Gas",29 "event_data_per_byte_cost": "Gas",30 "event_per_topic_cost": "Gas",31 "event_base_cost": "Gas",32 "call_base_cost": "Gas",33 "instantiate_base_cost": "Gas",34 "dispatch_base_cost": "Gas",35 "sandbox_data_read_cost": "Gas",36 "sandbox_data_write_cost": "Gas",37 "transfer_cost": "Gas",38 "instantiate_cost": "Gas",39 "max_event_topics": "u32",40 "max_stack_height": "u32",41 "max_memory_pages": "u32",42 "max_table_size": "u32",43 "enable_println": "bool",44 "max_subject_len": "u32"45 },46 "NftItemType": {47 "Collection": "u64",48 "Owner": "AccountId",49 "Data": "Vec<u8>"50 },51 "CollectionType": {52 "Owner": "AccountId",53 "NextItemId": "u64",54 "Name": "Vec<u16>",55 "Description": "Vec<u16>",56 "TokenPrefix": "Vec<u8>",57 "CustomDataSize": "u32",58 "Sponsor": "AccountId",59 "UnconfirmedSponsor": "AccountId"60 },61 "Address": "AccountId",62 "LookupSource": "AccountId",63 "Weight": "u64"64}65```662267## NFT Palette Methods23## NFT Palette Methods6824