You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SecurityToken.ts 104KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882
  1. /* Autogenerated file. Do not edit manually. */
  2. /* tslint:disable */
  3. /* eslint-disable */
  4. import type {
  5. BaseContract,
  6. BigNumberish,
  7. BytesLike,
  8. FunctionFragment,
  9. Result,
  10. Interface,
  11. EventFragment,
  12. AddressLike,
  13. ContractRunner,
  14. ContractMethod,
  15. Listener,
  16. } from "ethers";
  17. import type {
  18. TypedContractEvent,
  19. TypedDeferredTopicFilter,
  20. TypedEventLog,
  21. TypedLogDescription,
  22. TypedListener,
  23. TypedContractMethod,
  24. } from "../common";
  25. export declare namespace ERC1400StorageDomain {
  26. export type LockStruct = {
  27. partition: BytesLike;
  28. lockType: BytesLike;
  29. amount: BigNumberish;
  30. };
  31. export type LockStructOutput = [
  32. partition: string,
  33. lockType: string,
  34. amount: bigint
  35. ] & { partition: string; lockType: string; amount: bigint };
  36. }
  37. export declare namespace IERC20 {
  38. export type TokenDetailsStruct = {
  39. name: string;
  40. symbol: string;
  41. decimals: BigNumberish;
  42. maxSupply: BigNumberish;
  43. isin: BytesLike;
  44. };
  45. export type TokenDetailsStructOutput = [
  46. name: string,
  47. symbol: string,
  48. decimals: bigint,
  49. maxSupply: bigint,
  50. isin: string
  51. ] & {
  52. name: string;
  53. symbol: string;
  54. decimals: bigint;
  55. maxSupply: bigint;
  56. isin: string;
  57. };
  58. }
  59. export declare namespace IPartitions {
  60. export type PartitionStruct = { name: BytesLike; data: BytesLike };
  61. export type PartitionStructOutput = [name: string, data: string] & {
  62. name: string;
  63. data: string;
  64. };
  65. }
  66. export declare namespace IERC1410 {
  67. export type IssuanceStruct = {
  68. partition: BytesLike;
  69. tokenHolder: AddressLike;
  70. value: BigNumberish;
  71. data: BytesLike;
  72. };
  73. export type IssuanceStructOutput = [
  74. partition: string,
  75. tokenHolder: string,
  76. value: bigint,
  77. data: string
  78. ] & { partition: string; tokenHolder: string; value: bigint; data: string };
  79. export type RedemptionStruct = {
  80. partition: BytesLike;
  81. tokenHolder: AddressLike;
  82. value: BigNumberish;
  83. data: BytesLike;
  84. };
  85. export type RedemptionStructOutput = [
  86. partition: string,
  87. tokenHolder: string,
  88. value: bigint,
  89. data: string
  90. ] & { partition: string; tokenHolder: string; value: bigint; data: string };
  91. export type TransferStructStruct = {
  92. partition: BytesLike;
  93. from: AddressLike;
  94. to: AddressLike;
  95. value: BigNumberish;
  96. data: BytesLike;
  97. operatorData: BytesLike;
  98. };
  99. export type TransferStructStructOutput = [
  100. partition: string,
  101. from: string,
  102. to: string,
  103. value: bigint,
  104. data: string,
  105. operatorData: string
  106. ] & {
  107. partition: string;
  108. from: string;
  109. to: string;
  110. value: bigint;
  111. data: string;
  112. operatorData: string;
  113. };
  114. }
  115. export interface SecurityTokenInterface extends Interface {
  116. getFunction(
  117. nameOrSignature:
  118. | "ADMIN_ROLE"
  119. | "CONTROLLER_ROLE"
  120. | "ISSUER_ROLE"
  121. | "KSDOperators"
  122. | "KSD_OPERATOR_ROLE"
  123. | "KYCtokenHolders"
  124. | "LOCKER_ROLE"
  125. | "OPERATOR_ROLE"
  126. | "VERSION"
  127. | "admins"
  128. | "authorizeController"
  129. | "authorizeOperator"
  130. | "availableBalanceByPartition"
  131. | "balanceListOfKSD"
  132. | "balanceOf"
  133. | "balanceOfByPartition"
  134. | "balanceOfKSD"
  135. | "certificateNonce"
  136. | "controllerRedeem"
  137. | "controllerRedeemByPartition"
  138. | "controllerTransfer"
  139. | "controllerTransferByPartition"
  140. | "controllers"
  141. | "createLock"
  142. | "decimals"
  143. | "disposalLimitErasureKSD"
  144. | "disposalLimitSetupKSD"
  145. | "erasureKSD"
  146. | "getAllDocuments"
  147. | "getDefaultPartitions"
  148. | "getDocument"
  149. | "getHolders"
  150. | "getHoldersWithNonZeroBalance"
  151. | "getLocks"
  152. | "getLocksByPartition"
  153. | "getRoleMembers"
  154. | "getRoleMembersLength"
  155. | "getTarget"
  156. | "getTargetImplementation"
  157. | "grantRole"
  158. | "hasLock"
  159. | "hasRole"
  160. | "initialize"
  161. | "isAdmin"
  162. | "isControllable"
  163. | "isController"
  164. | "isIssuable"
  165. | "isIssuer"
  166. | "isKSDOperator"
  167. | "isLocker"
  168. | "isOperator"
  169. | "isTokenHolderKYC"
  170. | "isin"
  171. | "issue"
  172. | "issueByPartition"
  173. | "issueByPartitionAndBatches"
  174. | "issueKSD"
  175. | "issuers"
  176. | "lockedAmount"
  177. | "lockers"
  178. | "maxSupply"
  179. | "name"
  180. | "numOfControllers"
  181. | "operatorRedeemByPartition"
  182. | "operatorRedeemByPartitionAndBatches"
  183. | "operatorTransferBetweenPartitions"
  184. | "operatorTransferByPartition"
  185. | "operatorTransferByPartitionAndBatches"
  186. | "operators"
  187. | "partitionsOf"
  188. | "pledgeErasureKSD"
  189. | "pledgeSetupKSD"
  190. | "redeemFrom"
  191. | "removeDocument"
  192. | "removeLock"
  193. | "renounceIssuance"
  194. | "retrieveHolderListKSD"
  195. | "retrieveIsinKSD"
  196. | "revokeController"
  197. | "revokeOperator"
  198. | "revokeRole"
  199. | "seizureErasureKSD"
  200. | "seizureSetupKSD"
  201. | "setDefaultPartitions"
  202. | "setDocument"
  203. | "setExternalKycRegistry"
  204. | "setTarget"
  205. | "symbol"
  206. | "tokenErasableKSD"
  207. | "tokenIssuableKSD"
  208. | "totalLockedAmount"
  209. | "totalLockedAmountByPartition"
  210. | "totalPartitions"
  211. | "totalSupply"
  212. | "totalSupplyByPartition"
  213. | "totalSupplyKSD"
  214. | "transferKSD"
  215. | "unKYCtokenHolders"
  216. | "unlockAndErasureKSD"
  217. | "unlockAndTransferKSD"
  218. ): FunctionFragment;
  219. getEvent(
  220. nameOrSignatureOrTopic:
  221. | "AuthorizedOperator"
  222. | "ControllerAuthorized"
  223. | "ControllerRedemption"
  224. | "ControllerRedemptionByPartition"
  225. | "ControllerRevoked"
  226. | "ControllerTransfer"
  227. | "ControllerTransferByPartition"
  228. | "DisposalLimitErasureKSD"
  229. | "DisposalLimitSetupKSD"
  230. | "DocumentRemoved"
  231. | "DocumentUpdated"
  232. | "ErasureKSD"
  233. | "Initialized"
  234. | "IssuanceRenunciation"
  235. | "IssueKSD"
  236. | "Issued"
  237. | "IssuedByPartition"
  238. | "LockCreated"
  239. | "LockReleased"
  240. | "PledgeErasureKSD"
  241. | "PledgeSetupKSD"
  242. | "Redeemed"
  243. | "RedeemedByPartition"
  244. | "RevokedOperator"
  245. | "RoleGranted"
  246. | "RoleRevoked"
  247. | "SecurityTokenInitialized"
  248. | "SeizureErasureKSD"
  249. | "SeizureSetupKSD"
  250. | "TokenErasableKSD"
  251. | "TokenErasableKSD2"
  252. | "TokenIssuableKSD"
  253. | "TokenIssuableKSD2"
  254. | "Transfer"
  255. | "TransferByPartition"
  256. | "TransferKSD"
  257. ): EventFragment;
  258. encodeFunctionData(
  259. functionFragment: "ADMIN_ROLE",
  260. values?: undefined
  261. ): string;
  262. encodeFunctionData(
  263. functionFragment: "CONTROLLER_ROLE",
  264. values?: undefined
  265. ): string;
  266. encodeFunctionData(
  267. functionFragment: "ISSUER_ROLE",
  268. values?: undefined
  269. ): string;
  270. encodeFunctionData(
  271. functionFragment: "KSDOperators",
  272. values?: undefined
  273. ): string;
  274. encodeFunctionData(
  275. functionFragment: "KSD_OPERATOR_ROLE",
  276. values?: undefined
  277. ): string;
  278. encodeFunctionData(
  279. functionFragment: "KYCtokenHolders",
  280. values: [AddressLike[]]
  281. ): string;
  282. encodeFunctionData(
  283. functionFragment: "LOCKER_ROLE",
  284. values?: undefined
  285. ): string;
  286. encodeFunctionData(
  287. functionFragment: "OPERATOR_ROLE",
  288. values?: undefined
  289. ): string;
  290. encodeFunctionData(functionFragment: "VERSION", values?: undefined): string;
  291. encodeFunctionData(functionFragment: "admins", values?: undefined): string;
  292. encodeFunctionData(
  293. functionFragment: "authorizeController",
  294. values: [AddressLike, BytesLike]
  295. ): string;
  296. encodeFunctionData(
  297. functionFragment: "authorizeOperator",
  298. values: [AddressLike, AddressLike[]]
  299. ): string;
  300. encodeFunctionData(
  301. functionFragment: "availableBalanceByPartition",
  302. values: [AddressLike, BytesLike]
  303. ): string;
  304. encodeFunctionData(
  305. functionFragment: "balanceListOfKSD",
  306. values: [BytesLike, AddressLike[]]
  307. ): string;
  308. encodeFunctionData(
  309. functionFragment: "balanceOf",
  310. values: [AddressLike]
  311. ): string;
  312. encodeFunctionData(
  313. functionFragment: "balanceOfByPartition",
  314. values: [BytesLike, AddressLike]
  315. ): string;
  316. encodeFunctionData(
  317. functionFragment: "balanceOfKSD",
  318. values: [BytesLike, AddressLike]
  319. ): string;
  320. encodeFunctionData(
  321. functionFragment: "certificateNonce",
  322. values?: undefined
  323. ): string;
  324. encodeFunctionData(
  325. functionFragment: "controllerRedeem",
  326. values: [AddressLike, BigNumberish, BytesLike, BytesLike]
  327. ): string;
  328. encodeFunctionData(
  329. functionFragment: "controllerRedeemByPartition",
  330. values: [BytesLike, AddressLike, BigNumberish, BytesLike, BytesLike]
  331. ): string;
  332. encodeFunctionData(
  333. functionFragment: "controllerTransfer",
  334. values: [AddressLike, AddressLike, BigNumberish, BytesLike, BytesLike]
  335. ): string;
  336. encodeFunctionData(
  337. functionFragment: "controllerTransferByPartition",
  338. values: [
  339. BytesLike,
  340. AddressLike,
  341. AddressLike,
  342. BigNumberish,
  343. BytesLike,
  344. BytesLike
  345. ]
  346. ): string;
  347. encodeFunctionData(
  348. functionFragment: "controllers",
  349. values?: undefined
  350. ): string;
  351. encodeFunctionData(
  352. functionFragment: "createLock",
  353. values: [BytesLike, BytesLike, AddressLike, BigNumberish]
  354. ): string;
  355. encodeFunctionData(functionFragment: "decimals", values?: undefined): string;
  356. encodeFunctionData(
  357. functionFragment: "disposalLimitErasureKSD",
  358. values: [BytesLike, AddressLike, BytesLike, BytesLike, BigNumberish]
  359. ): string;
  360. encodeFunctionData(
  361. functionFragment: "disposalLimitSetupKSD",
  362. values: [BytesLike, AddressLike, BytesLike, BytesLike, BigNumberish]
  363. ): string;
  364. encodeFunctionData(
  365. functionFragment: "erasureKSD",
  366. values: [
  367. BytesLike,
  368. AddressLike,
  369. BytesLike,
  370. BigNumberish,
  371. BytesLike,
  372. BytesLike
  373. ]
  374. ): string;
  375. encodeFunctionData(
  376. functionFragment: "getAllDocuments",
  377. values?: undefined
  378. ): string;
  379. encodeFunctionData(
  380. functionFragment: "getDefaultPartitions",
  381. values?: undefined
  382. ): string;
  383. encodeFunctionData(
  384. functionFragment: "getDocument",
  385. values: [BytesLike]
  386. ): string;
  387. encodeFunctionData(
  388. functionFragment: "getHolders",
  389. values: [AddressLike, BigNumberish]
  390. ): string;
  391. encodeFunctionData(
  392. functionFragment: "getHoldersWithNonZeroBalance",
  393. values: [AddressLike, BigNumberish]
  394. ): string;
  395. encodeFunctionData(
  396. functionFragment: "getLocks",
  397. values: [AddressLike]
  398. ): string;
  399. encodeFunctionData(
  400. functionFragment: "getLocksByPartition",
  401. values: [AddressLike, BytesLike]
  402. ): string;
  403. encodeFunctionData(
  404. functionFragment: "getRoleMembers",
  405. values: [BytesLike]
  406. ): string;
  407. encodeFunctionData(
  408. functionFragment: "getRoleMembersLength",
  409. values: [BytesLike]
  410. ): string;
  411. encodeFunctionData(functionFragment: "getTarget", values?: undefined): string;
  412. encodeFunctionData(
  413. functionFragment: "getTargetImplementation",
  414. values?: undefined
  415. ): string;
  416. encodeFunctionData(
  417. functionFragment: "grantRole",
  418. values: [BytesLike, AddressLike]
  419. ): string;
  420. encodeFunctionData(
  421. functionFragment: "hasLock",
  422. values: [AddressLike, BytesLike]
  423. ): string;
  424. encodeFunctionData(
  425. functionFragment: "hasRole",
  426. values: [BytesLike, AddressLike]
  427. ): string;
  428. encodeFunctionData(
  429. functionFragment: "initialize",
  430. values: [
  431. AddressLike,
  432. AddressLike[],
  433. AddressLike[],
  434. AddressLike[],
  435. AddressLike[],
  436. IERC20.TokenDetailsStruct,
  437. IPartitions.PartitionStruct[]
  438. ]
  439. ): string;
  440. encodeFunctionData(
  441. functionFragment: "isAdmin",
  442. values: [AddressLike]
  443. ): string;
  444. encodeFunctionData(
  445. functionFragment: "isControllable",
  446. values?: undefined
  447. ): string;
  448. encodeFunctionData(
  449. functionFragment: "isController",
  450. values: [AddressLike]
  451. ): string;
  452. encodeFunctionData(
  453. functionFragment: "isIssuable",
  454. values?: undefined
  455. ): string;
  456. encodeFunctionData(
  457. functionFragment: "isIssuer",
  458. values: [AddressLike]
  459. ): string;
  460. encodeFunctionData(
  461. functionFragment: "isKSDOperator",
  462. values: [AddressLike]
  463. ): string;
  464. encodeFunctionData(
  465. functionFragment: "isLocker",
  466. values: [AddressLike]
  467. ): string;
  468. encodeFunctionData(
  469. functionFragment: "isOperator",
  470. values: [AddressLike]
  471. ): string;
  472. encodeFunctionData(
  473. functionFragment: "isTokenHolderKYC",
  474. values: [AddressLike]
  475. ): string;
  476. encodeFunctionData(functionFragment: "isin", values?: undefined): string;
  477. encodeFunctionData(
  478. functionFragment: "issue",
  479. values: [AddressLike, BigNumberish, BytesLike]
  480. ): string;
  481. encodeFunctionData(
  482. functionFragment: "issueByPartition",
  483. values: [BytesLike, AddressLike, BigNumberish, BytesLike]
  484. ): string;
  485. encodeFunctionData(
  486. functionFragment: "issueByPartitionAndBatches",
  487. values: [IERC1410.IssuanceStruct[]]
  488. ): string;
  489. encodeFunctionData(
  490. functionFragment: "issueKSD",
  491. values: [BytesLike, AddressLike, BytesLike, BigNumberish, BytesLike]
  492. ): string;
  493. encodeFunctionData(functionFragment: "issuers", values?: undefined): string;
  494. encodeFunctionData(
  495. functionFragment: "lockedAmount",
  496. values: [AddressLike, BytesLike, BytesLike]
  497. ): string;
  498. encodeFunctionData(functionFragment: "lockers", values?: undefined): string;
  499. encodeFunctionData(functionFragment: "maxSupply", values?: undefined): string;
  500. encodeFunctionData(functionFragment: "name", values?: undefined): string;
  501. encodeFunctionData(
  502. functionFragment: "numOfControllers",
  503. values?: undefined
  504. ): string;
  505. encodeFunctionData(
  506. functionFragment: "operatorRedeemByPartition",
  507. values: [BytesLike, AddressLike, BigNumberish, BytesLike]
  508. ): string;
  509. encodeFunctionData(
  510. functionFragment: "operatorRedeemByPartitionAndBatches",
  511. values: [IERC1410.RedemptionStruct[]]
  512. ): string;
  513. encodeFunctionData(
  514. functionFragment: "operatorTransferBetweenPartitions",
  515. values: [
  516. BytesLike,
  517. BytesLike,
  518. AddressLike,
  519. AddressLike,
  520. BigNumberish,
  521. BytesLike,
  522. BytesLike
  523. ]
  524. ): string;
  525. encodeFunctionData(
  526. functionFragment: "operatorTransferByPartition",
  527. values: [
  528. BytesLike,
  529. AddressLike,
  530. AddressLike,
  531. BigNumberish,
  532. BytesLike,
  533. BytesLike
  534. ]
  535. ): string;
  536. encodeFunctionData(
  537. functionFragment: "operatorTransferByPartitionAndBatches",
  538. values: [IERC1410.TransferStructStruct[]]
  539. ): string;
  540. encodeFunctionData(functionFragment: "operators", values?: undefined): string;
  541. encodeFunctionData(
  542. functionFragment: "partitionsOf",
  543. values: [AddressLike]
  544. ): string;
  545. encodeFunctionData(
  546. functionFragment: "pledgeErasureKSD",
  547. values: [
  548. BytesLike,
  549. AddressLike,
  550. BytesLike,
  551. AddressLike,
  552. BytesLike,
  553. BigNumberish
  554. ]
  555. ): string;
  556. encodeFunctionData(
  557. functionFragment: "pledgeSetupKSD",
  558. values: [
  559. BytesLike,
  560. AddressLike,
  561. BytesLike,
  562. AddressLike,
  563. BytesLike,
  564. BigNumberish
  565. ]
  566. ): string;
  567. encodeFunctionData(
  568. functionFragment: "redeemFrom",
  569. values: [AddressLike, BigNumberish, BytesLike]
  570. ): string;
  571. encodeFunctionData(
  572. functionFragment: "removeDocument",
  573. values: [BytesLike]
  574. ): string;
  575. encodeFunctionData(
  576. functionFragment: "removeLock",
  577. values: [BytesLike, BytesLike, AddressLike, BigNumberish]
  578. ): string;
  579. encodeFunctionData(
  580. functionFragment: "renounceIssuance",
  581. values?: undefined
  582. ): string;
  583. encodeFunctionData(
  584. functionFragment: "retrieveHolderListKSD",
  585. values: [BytesLike, AddressLike, BigNumberish]
  586. ): string;
  587. encodeFunctionData(
  588. functionFragment: "retrieveIsinKSD",
  589. values: [BytesLike]
  590. ): string;
  591. encodeFunctionData(
  592. functionFragment: "revokeController",
  593. values: [AddressLike, BytesLike]
  594. ): string;
  595. encodeFunctionData(
  596. functionFragment: "revokeOperator",
  597. values: [AddressLike, AddressLike[]]
  598. ): string;
  599. encodeFunctionData(
  600. functionFragment: "revokeRole",
  601. values: [BytesLike, AddressLike]
  602. ): string;
  603. encodeFunctionData(
  604. functionFragment: "seizureErasureKSD",
  605. values: [BytesLike, AddressLike, BytesLike, BigNumberish]
  606. ): string;
  607. encodeFunctionData(
  608. functionFragment: "seizureSetupKSD",
  609. values: [BytesLike, AddressLike, BytesLike, BigNumberish]
  610. ): string;
  611. encodeFunctionData(
  612. functionFragment: "setDefaultPartitions",
  613. values: [BytesLike[]]
  614. ): string;
  615. encodeFunctionData(
  616. functionFragment: "setDocument",
  617. values: [BytesLike, string, string, BytesLike]
  618. ): string;
  619. encodeFunctionData(
  620. functionFragment: "setExternalKycRegistry",
  621. values: [AddressLike]
  622. ): string;
  623. encodeFunctionData(
  624. functionFragment: "setTarget",
  625. values: [AddressLike]
  626. ): string;
  627. encodeFunctionData(functionFragment: "symbol", values?: undefined): string;
  628. encodeFunctionData(
  629. functionFragment: "tokenErasableKSD",
  630. values: [BytesLike, BigNumberish, BytesLike[], BigNumberish[], BytesLike]
  631. ): string;
  632. encodeFunctionData(
  633. functionFragment: "tokenIssuableKSD",
  634. values: [BytesLike, BigNumberish, BytesLike[], BigNumberish[], BytesLike]
  635. ): string;
  636. encodeFunctionData(
  637. functionFragment: "totalLockedAmount",
  638. values: [AddressLike]
  639. ): string;
  640. encodeFunctionData(
  641. functionFragment: "totalLockedAmountByPartition",
  642. values: [AddressLike, BytesLike]
  643. ): string;
  644. encodeFunctionData(
  645. functionFragment: "totalPartitions",
  646. values?: undefined
  647. ): string;
  648. encodeFunctionData(
  649. functionFragment: "totalSupply",
  650. values?: undefined
  651. ): string;
  652. encodeFunctionData(
  653. functionFragment: "totalSupplyByPartition",
  654. values: [BytesLike]
  655. ): string;
  656. encodeFunctionData(
  657. functionFragment: "totalSupplyKSD",
  658. values: [BytesLike]
  659. ): string;
  660. encodeFunctionData(
  661. functionFragment: "transferKSD",
  662. values: [
  663. BytesLike,
  664. AddressLike,
  665. BytesLike,
  666. AddressLike,
  667. BytesLike,
  668. BigNumberish,
  669. BytesLike
  670. ]
  671. ): string;
  672. encodeFunctionData(
  673. functionFragment: "unKYCtokenHolders",
  674. values: [AddressLike[]]
  675. ): string;
  676. encodeFunctionData(
  677. functionFragment: "unlockAndErasureKSD",
  678. values: [
  679. BytesLike,
  680. AddressLike,
  681. BytesLike,
  682. BigNumberish,
  683. BytesLike,
  684. BytesLike
  685. ]
  686. ): string;
  687. encodeFunctionData(
  688. functionFragment: "unlockAndTransferKSD",
  689. values: [
  690. BytesLike,
  691. AddressLike,
  692. BytesLike,
  693. AddressLike,
  694. BytesLike,
  695. BigNumberish,
  696. BytesLike
  697. ]
  698. ): string;
  699. decodeFunctionResult(functionFragment: "ADMIN_ROLE", data: BytesLike): Result;
  700. decodeFunctionResult(
  701. functionFragment: "CONTROLLER_ROLE",
  702. data: BytesLike
  703. ): Result;
  704. decodeFunctionResult(
  705. functionFragment: "ISSUER_ROLE",
  706. data: BytesLike
  707. ): Result;
  708. decodeFunctionResult(
  709. functionFragment: "KSDOperators",
  710. data: BytesLike
  711. ): Result;
  712. decodeFunctionResult(
  713. functionFragment: "KSD_OPERATOR_ROLE",
  714. data: BytesLike
  715. ): Result;
  716. decodeFunctionResult(
  717. functionFragment: "KYCtokenHolders",
  718. data: BytesLike
  719. ): Result;
  720. decodeFunctionResult(
  721. functionFragment: "LOCKER_ROLE",
  722. data: BytesLike
  723. ): Result;
  724. decodeFunctionResult(
  725. functionFragment: "OPERATOR_ROLE",
  726. data: BytesLike
  727. ): Result;
  728. decodeFunctionResult(functionFragment: "VERSION", data: BytesLike): Result;
  729. decodeFunctionResult(functionFragment: "admins", data: BytesLike): Result;
  730. decodeFunctionResult(
  731. functionFragment: "authorizeController",
  732. data: BytesLike
  733. ): Result;
  734. decodeFunctionResult(
  735. functionFragment: "authorizeOperator",
  736. data: BytesLike
  737. ): Result;
  738. decodeFunctionResult(
  739. functionFragment: "availableBalanceByPartition",
  740. data: BytesLike
  741. ): Result;
  742. decodeFunctionResult(
  743. functionFragment: "balanceListOfKSD",
  744. data: BytesLike
  745. ): Result;
  746. decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
  747. decodeFunctionResult(
  748. functionFragment: "balanceOfByPartition",
  749. data: BytesLike
  750. ): Result;
  751. decodeFunctionResult(
  752. functionFragment: "balanceOfKSD",
  753. data: BytesLike
  754. ): Result;
  755. decodeFunctionResult(
  756. functionFragment: "certificateNonce",
  757. data: BytesLike
  758. ): Result;
  759. decodeFunctionResult(
  760. functionFragment: "controllerRedeem",
  761. data: BytesLike
  762. ): Result;
  763. decodeFunctionResult(
  764. functionFragment: "controllerRedeemByPartition",
  765. data: BytesLike
  766. ): Result;
  767. decodeFunctionResult(
  768. functionFragment: "controllerTransfer",
  769. data: BytesLike
  770. ): Result;
  771. decodeFunctionResult(
  772. functionFragment: "controllerTransferByPartition",
  773. data: BytesLike
  774. ): Result;
  775. decodeFunctionResult(
  776. functionFragment: "controllers",
  777. data: BytesLike
  778. ): Result;
  779. decodeFunctionResult(functionFragment: "createLock", data: BytesLike): Result;
  780. decodeFunctionResult(functionFragment: "decimals", data: BytesLike): Result;
  781. decodeFunctionResult(
  782. functionFragment: "disposalLimitErasureKSD",
  783. data: BytesLike
  784. ): Result;
  785. decodeFunctionResult(
  786. functionFragment: "disposalLimitSetupKSD",
  787. data: BytesLike
  788. ): Result;
  789. decodeFunctionResult(functionFragment: "erasureKSD", data: BytesLike): Result;
  790. decodeFunctionResult(
  791. functionFragment: "getAllDocuments",
  792. data: BytesLike
  793. ): Result;
  794. decodeFunctionResult(
  795. functionFragment: "getDefaultPartitions",
  796. data: BytesLike
  797. ): Result;
  798. decodeFunctionResult(
  799. functionFragment: "getDocument",
  800. data: BytesLike
  801. ): Result;
  802. decodeFunctionResult(functionFragment: "getHolders", data: BytesLike): Result;
  803. decodeFunctionResult(
  804. functionFragment: "getHoldersWithNonZeroBalance",
  805. data: BytesLike
  806. ): Result;
  807. decodeFunctionResult(functionFragment: "getLocks", data: BytesLike): Result;
  808. decodeFunctionResult(
  809. functionFragment: "getLocksByPartition",
  810. data: BytesLike
  811. ): Result;
  812. decodeFunctionResult(
  813. functionFragment: "getRoleMembers",
  814. data: BytesLike
  815. ): Result;
  816. decodeFunctionResult(
  817. functionFragment: "getRoleMembersLength",
  818. data: BytesLike
  819. ): Result;
  820. decodeFunctionResult(functionFragment: "getTarget", data: BytesLike): Result;
  821. decodeFunctionResult(
  822. functionFragment: "getTargetImplementation",
  823. data: BytesLike
  824. ): Result;
  825. decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
  826. decodeFunctionResult(functionFragment: "hasLock", data: BytesLike): Result;
  827. decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
  828. decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
  829. decodeFunctionResult(functionFragment: "isAdmin", data: BytesLike): Result;
  830. decodeFunctionResult(
  831. functionFragment: "isControllable",
  832. data: BytesLike
  833. ): Result;
  834. decodeFunctionResult(
  835. functionFragment: "isController",
  836. data: BytesLike
  837. ): Result;
  838. decodeFunctionResult(functionFragment: "isIssuable", data: BytesLike): Result;
  839. decodeFunctionResult(functionFragment: "isIssuer", data: BytesLike): Result;
  840. decodeFunctionResult(
  841. functionFragment: "isKSDOperator",
  842. data: BytesLike
  843. ): Result;
  844. decodeFunctionResult(functionFragment: "isLocker", data: BytesLike): Result;
  845. decodeFunctionResult(functionFragment: "isOperator", data: BytesLike): Result;
  846. decodeFunctionResult(
  847. functionFragment: "isTokenHolderKYC",
  848. data: BytesLike
  849. ): Result;
  850. decodeFunctionResult(functionFragment: "isin", data: BytesLike): Result;
  851. decodeFunctionResult(functionFragment: "issue", data: BytesLike): Result;
  852. decodeFunctionResult(
  853. functionFragment: "issueByPartition",
  854. data: BytesLike
  855. ): Result;
  856. decodeFunctionResult(
  857. functionFragment: "issueByPartitionAndBatches",
  858. data: BytesLike
  859. ): Result;
  860. decodeFunctionResult(functionFragment: "issueKSD", data: BytesLike): Result;
  861. decodeFunctionResult(functionFragment: "issuers", data: BytesLike): Result;
  862. decodeFunctionResult(
  863. functionFragment: "lockedAmount",
  864. data: BytesLike
  865. ): Result;
  866. decodeFunctionResult(functionFragment: "lockers", data: BytesLike): Result;
  867. decodeFunctionResult(functionFragment: "maxSupply", data: BytesLike): Result;
  868. decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
  869. decodeFunctionResult(
  870. functionFragment: "numOfControllers",
  871. data: BytesLike
  872. ): Result;
  873. decodeFunctionResult(
  874. functionFragment: "operatorRedeemByPartition",
  875. data: BytesLike
  876. ): Result;
  877. decodeFunctionResult(
  878. functionFragment: "operatorRedeemByPartitionAndBatches",
  879. data: BytesLike
  880. ): Result;
  881. decodeFunctionResult(
  882. functionFragment: "operatorTransferBetweenPartitions",
  883. data: BytesLike
  884. ): Result;
  885. decodeFunctionResult(
  886. functionFragment: "operatorTransferByPartition",
  887. data: BytesLike
  888. ): Result;
  889. decodeFunctionResult(
  890. functionFragment: "operatorTransferByPartitionAndBatches",
  891. data: BytesLike
  892. ): Result;
  893. decodeFunctionResult(functionFragment: "operators", data: BytesLike): Result;
  894. decodeFunctionResult(
  895. functionFragment: "partitionsOf",
  896. data: BytesLike
  897. ): Result;
  898. decodeFunctionResult(
  899. functionFragment: "pledgeErasureKSD",
  900. data: BytesLike
  901. ): Result;
  902. decodeFunctionResult(
  903. functionFragment: "pledgeSetupKSD",
  904. data: BytesLike
  905. ): Result;
  906. decodeFunctionResult(functionFragment: "redeemFrom", data: BytesLike): Result;
  907. decodeFunctionResult(
  908. functionFragment: "removeDocument",
  909. data: BytesLike
  910. ): Result;
  911. decodeFunctionResult(functionFragment: "removeLock", data: BytesLike): Result;
  912. decodeFunctionResult(
  913. functionFragment: "renounceIssuance",
  914. data: BytesLike
  915. ): Result;
  916. decodeFunctionResult(
  917. functionFragment: "retrieveHolderListKSD",
  918. data: BytesLike
  919. ): Result;
  920. decodeFunctionResult(
  921. functionFragment: "retrieveIsinKSD",
  922. data: BytesLike
  923. ): Result;
  924. decodeFunctionResult(
  925. functionFragment: "revokeController",
  926. data: BytesLike
  927. ): Result;
  928. decodeFunctionResult(
  929. functionFragment: "revokeOperator",
  930. data: BytesLike
  931. ): Result;
  932. decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
  933. decodeFunctionResult(
  934. functionFragment: "seizureErasureKSD",
  935. data: BytesLike
  936. ): Result;
  937. decodeFunctionResult(
  938. functionFragment: "seizureSetupKSD",
  939. data: BytesLike
  940. ): Result;
  941. decodeFunctionResult(
  942. functionFragment: "setDefaultPartitions",
  943. data: BytesLike
  944. ): Result;
  945. decodeFunctionResult(
  946. functionFragment: "setDocument",
  947. data: BytesLike
  948. ): Result;
  949. decodeFunctionResult(
  950. functionFragment: "setExternalKycRegistry",
  951. data: BytesLike
  952. ): Result;
  953. decodeFunctionResult(functionFragment: "setTarget", data: BytesLike): Result;
  954. decodeFunctionResult(functionFragment: "symbol", data: BytesLike): Result;
  955. decodeFunctionResult(
  956. functionFragment: "tokenErasableKSD",
  957. data: BytesLike
  958. ): Result;
  959. decodeFunctionResult(
  960. functionFragment: "tokenIssuableKSD",
  961. data: BytesLike
  962. ): Result;
  963. decodeFunctionResult(
  964. functionFragment: "totalLockedAmount",
  965. data: BytesLike
  966. ): Result;
  967. decodeFunctionResult(
  968. functionFragment: "totalLockedAmountByPartition",
  969. data: BytesLike
  970. ): Result;
  971. decodeFunctionResult(
  972. functionFragment: "totalPartitions",
  973. data: BytesLike
  974. ): Result;
  975. decodeFunctionResult(
  976. functionFragment: "totalSupply",
  977. data: BytesLike
  978. ): Result;
  979. decodeFunctionResult(
  980. functionFragment: "totalSupplyByPartition",
  981. data: BytesLike
  982. ): Result;
  983. decodeFunctionResult(
  984. functionFragment: "totalSupplyKSD",
  985. data: BytesLike
  986. ): Result;
  987. decodeFunctionResult(
  988. functionFragment: "transferKSD",
  989. data: BytesLike
  990. ): Result;
  991. decodeFunctionResult(
  992. functionFragment: "unKYCtokenHolders",
  993. data: BytesLike
  994. ): Result;
  995. decodeFunctionResult(
  996. functionFragment: "unlockAndErasureKSD",
  997. data: BytesLike
  998. ): Result;
  999. decodeFunctionResult(
  1000. functionFragment: "unlockAndTransferKSD",
  1001. data: BytesLike
  1002. ): Result;
  1003. }
  1004. export namespace AuthorizedOperatorEvent {
  1005. export type InputTuple = [operator: AddressLike, tokenHolder: AddressLike];
  1006. export type OutputTuple = [operator: string, tokenHolder: string];
  1007. export interface OutputObject {
  1008. operator: string;
  1009. tokenHolder: string;
  1010. }
  1011. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1012. export type Filter = TypedDeferredTopicFilter<Event>;
  1013. export type Log = TypedEventLog<Event>;
  1014. export type LogDescription = TypedLogDescription<Event>;
  1015. }
  1016. export namespace ControllerAuthorizedEvent {
  1017. export type InputTuple = [issuer: AddressLike, newController: AddressLike];
  1018. export type OutputTuple = [issuer: string, newController: string];
  1019. export interface OutputObject {
  1020. issuer: string;
  1021. newController: string;
  1022. }
  1023. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1024. export type Filter = TypedDeferredTopicFilter<Event>;
  1025. export type Log = TypedEventLog<Event>;
  1026. export type LogDescription = TypedLogDescription<Event>;
  1027. }
  1028. export namespace ControllerRedemptionEvent {
  1029. export type InputTuple = [
  1030. _controller: AddressLike,
  1031. _tokenHolder: AddressLike,
  1032. _value: BigNumberish,
  1033. _data: BytesLike,
  1034. _operatorData: BytesLike
  1035. ];
  1036. export type OutputTuple = [
  1037. _controller: string,
  1038. _tokenHolder: string,
  1039. _value: bigint,
  1040. _data: string,
  1041. _operatorData: string
  1042. ];
  1043. export interface OutputObject {
  1044. _controller: string;
  1045. _tokenHolder: string;
  1046. _value: bigint;
  1047. _data: string;
  1048. _operatorData: string;
  1049. }
  1050. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1051. export type Filter = TypedDeferredTopicFilter<Event>;
  1052. export type Log = TypedEventLog<Event>;
  1053. export type LogDescription = TypedLogDescription<Event>;
  1054. }
  1055. export namespace ControllerRedemptionByPartitionEvent {
  1056. export type InputTuple = [
  1057. partition: BytesLike,
  1058. controller: AddressLike,
  1059. tokenHolder: AddressLike,
  1060. value: BigNumberish,
  1061. data: BytesLike,
  1062. controllerData: BytesLike
  1063. ];
  1064. export type OutputTuple = [
  1065. partition: string,
  1066. controller: string,
  1067. tokenHolder: string,
  1068. value: bigint,
  1069. data: string,
  1070. controllerData: string
  1071. ];
  1072. export interface OutputObject {
  1073. partition: string;
  1074. controller: string;
  1075. tokenHolder: string;
  1076. value: bigint;
  1077. data: string;
  1078. controllerData: string;
  1079. }
  1080. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1081. export type Filter = TypedDeferredTopicFilter<Event>;
  1082. export type Log = TypedEventLog<Event>;
  1083. export type LogDescription = TypedLogDescription<Event>;
  1084. }
  1085. export namespace ControllerRevokedEvent {
  1086. export type InputTuple = [issuer: AddressLike, oldController: AddressLike];
  1087. export type OutputTuple = [issuer: string, oldController: string];
  1088. export interface OutputObject {
  1089. issuer: string;
  1090. oldController: string;
  1091. }
  1092. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1093. export type Filter = TypedDeferredTopicFilter<Event>;
  1094. export type Log = TypedEventLog<Event>;
  1095. export type LogDescription = TypedLogDescription<Event>;
  1096. }
  1097. export namespace ControllerTransferEvent {
  1098. export type InputTuple = [
  1099. _controller: AddressLike,
  1100. _from: AddressLike,
  1101. _to: AddressLike,
  1102. _value: BigNumberish,
  1103. _data: BytesLike,
  1104. _operatorData: BytesLike
  1105. ];
  1106. export type OutputTuple = [
  1107. _controller: string,
  1108. _from: string,
  1109. _to: string,
  1110. _value: bigint,
  1111. _data: string,
  1112. _operatorData: string
  1113. ];
  1114. export interface OutputObject {
  1115. _controller: string;
  1116. _from: string;
  1117. _to: string;
  1118. _value: bigint;
  1119. _data: string;
  1120. _operatorData: string;
  1121. }
  1122. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1123. export type Filter = TypedDeferredTopicFilter<Event>;
  1124. export type Log = TypedEventLog<Event>;
  1125. export type LogDescription = TypedLogDescription<Event>;
  1126. }
  1127. export namespace ControllerTransferByPartitionEvent {
  1128. export type InputTuple = [
  1129. partition: BytesLike,
  1130. controller: AddressLike,
  1131. from: AddressLike,
  1132. to: AddressLike,
  1133. value: BigNumberish,
  1134. data: BytesLike,
  1135. controllerData: BytesLike
  1136. ];
  1137. export type OutputTuple = [
  1138. partition: string,
  1139. controller: string,
  1140. from: string,
  1141. to: string,
  1142. value: bigint,
  1143. data: string,
  1144. controllerData: string
  1145. ];
  1146. export interface OutputObject {
  1147. partition: string;
  1148. controller: string;
  1149. from: string;
  1150. to: string;
  1151. value: bigint;
  1152. data: string;
  1153. controllerData: string;
  1154. }
  1155. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1156. export type Filter = TypedDeferredTopicFilter<Event>;
  1157. export type Log = TypedEventLog<Event>;
  1158. export type LogDescription = TypedLogDescription<Event>;
  1159. }
  1160. export namespace DisposalLimitErasureKSDEvent {
  1161. export type InputTuple = [
  1162. isin: BytesLike,
  1163. account: AddressLike,
  1164. KSDAccount: BytesLike,
  1165. disposalLimitCd: BytesLike,
  1166. qty: BigNumberish,
  1167. restrictedDisposalBalance: BigNumberish,
  1168. disposableBalance: BigNumberish
  1169. ];
  1170. export type OutputTuple = [
  1171. isin: string,
  1172. account: string,
  1173. KSDAccount: string,
  1174. disposalLimitCd: string,
  1175. qty: bigint,
  1176. restrictedDisposalBalance: bigint,
  1177. disposableBalance: bigint
  1178. ];
  1179. export interface OutputObject {
  1180. isin: string;
  1181. account: string;
  1182. KSDAccount: string;
  1183. disposalLimitCd: string;
  1184. qty: bigint;
  1185. restrictedDisposalBalance: bigint;
  1186. disposableBalance: bigint;
  1187. }
  1188. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1189. export type Filter = TypedDeferredTopicFilter<Event>;
  1190. export type Log = TypedEventLog<Event>;
  1191. export type LogDescription = TypedLogDescription<Event>;
  1192. }
  1193. export namespace DisposalLimitSetupKSDEvent {
  1194. export type InputTuple = [
  1195. isin: BytesLike,
  1196. account: AddressLike,
  1197. KSDAccount: BytesLike,
  1198. disposalLimitCd: BytesLike,
  1199. qty: BigNumberish,
  1200. restrictedDisposalBalance: BigNumberish,
  1201. disposableBalance: BigNumberish
  1202. ];
  1203. export type OutputTuple = [
  1204. isin: string,
  1205. account: string,
  1206. KSDAccount: string,
  1207. disposalLimitCd: string,
  1208. qty: bigint,
  1209. restrictedDisposalBalance: bigint,
  1210. disposableBalance: bigint
  1211. ];
  1212. export interface OutputObject {
  1213. isin: string;
  1214. account: string;
  1215. KSDAccount: string;
  1216. disposalLimitCd: string;
  1217. qty: bigint;
  1218. restrictedDisposalBalance: bigint;
  1219. disposableBalance: bigint;
  1220. }
  1221. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1222. export type Filter = TypedDeferredTopicFilter<Event>;
  1223. export type Log = TypedEventLog<Event>;
  1224. export type LogDescription = TypedLogDescription<Event>;
  1225. }
  1226. export namespace DocumentRemovedEvent {
  1227. export type InputTuple = [
  1228. _name: string,
  1229. _uri: string,
  1230. _documentHash: BytesLike
  1231. ];
  1232. export type OutputTuple = [
  1233. _name: string,
  1234. _uri: string,
  1235. _documentHash: string
  1236. ];
  1237. export interface OutputObject {
  1238. _name: string;
  1239. _uri: string;
  1240. _documentHash: string;
  1241. }
  1242. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1243. export type Filter = TypedDeferredTopicFilter<Event>;
  1244. export type Log = TypedEventLog<Event>;
  1245. export type LogDescription = TypedLogDescription<Event>;
  1246. }
  1247. export namespace DocumentUpdatedEvent {
  1248. export type InputTuple = [
  1249. _name: string,
  1250. _uri: string,
  1251. _documentHash: BytesLike
  1252. ];
  1253. export type OutputTuple = [
  1254. _name: string,
  1255. _uri: string,
  1256. _documentHash: string
  1257. ];
  1258. export interface OutputObject {
  1259. _name: string;
  1260. _uri: string;
  1261. _documentHash: string;
  1262. }
  1263. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1264. export type Filter = TypedDeferredTopicFilter<Event>;
  1265. export type Log = TypedEventLog<Event>;
  1266. export type LogDescription = TypedLogDescription<Event>;
  1267. }
  1268. export namespace ErasureKSDEvent {
  1269. export type InputTuple = [
  1270. isin: BytesLike,
  1271. account: AddressLike,
  1272. KSDAccount: BytesLike,
  1273. qty: BigNumberish,
  1274. rsnCode: BytesLike,
  1275. slipSeqKSD: BytesLike,
  1276. disposableBalance: BigNumberish
  1277. ];
  1278. export type OutputTuple = [
  1279. isin: string,
  1280. account: string,
  1281. KSDAccount: string,
  1282. qty: bigint,
  1283. rsnCode: string,
  1284. slipSeqKSD: string,
  1285. disposableBalance: bigint
  1286. ];
  1287. export interface OutputObject {
  1288. isin: string;
  1289. account: string;
  1290. KSDAccount: string;
  1291. qty: bigint;
  1292. rsnCode: string;
  1293. slipSeqKSD: string;
  1294. disposableBalance: bigint;
  1295. }
  1296. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1297. export type Filter = TypedDeferredTopicFilter<Event>;
  1298. export type Log = TypedEventLog<Event>;
  1299. export type LogDescription = TypedLogDescription<Event>;
  1300. }
  1301. export namespace InitializedEvent {
  1302. export type InputTuple = [version: BigNumberish];
  1303. export type OutputTuple = [version: bigint];
  1304. export interface OutputObject {
  1305. version: bigint;
  1306. }
  1307. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1308. export type Filter = TypedDeferredTopicFilter<Event>;
  1309. export type Log = TypedEventLog<Event>;
  1310. export type LogDescription = TypedLogDescription<Event>;
  1311. }
  1312. export namespace IssuanceRenunciationEvent {
  1313. export type InputTuple = [issuer: AddressLike];
  1314. export type OutputTuple = [issuer: string];
  1315. export interface OutputObject {
  1316. issuer: string;
  1317. }
  1318. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1319. export type Filter = TypedDeferredTopicFilter<Event>;
  1320. export type Log = TypedEventLog<Event>;
  1321. export type LogDescription = TypedLogDescription<Event>;
  1322. }
  1323. export namespace IssueKSDEvent {
  1324. export type InputTuple = [
  1325. isin: BytesLike,
  1326. account: AddressLike,
  1327. KSDAccount: BytesLike,
  1328. qty: BigNumberish,
  1329. slipSeqKSD: BytesLike,
  1330. disposableBalance: BigNumberish
  1331. ];
  1332. export type OutputTuple = [
  1333. isin: string,
  1334. account: string,
  1335. KSDAccount: string,
  1336. qty: bigint,
  1337. slipSeqKSD: string,
  1338. disposableBalance: bigint
  1339. ];
  1340. export interface OutputObject {
  1341. isin: string;
  1342. account: string;
  1343. KSDAccount: string;
  1344. qty: bigint;
  1345. slipSeqKSD: string;
  1346. disposableBalance: bigint;
  1347. }
  1348. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1349. export type Filter = TypedDeferredTopicFilter<Event>;
  1350. export type Log = TypedEventLog<Event>;
  1351. export type LogDescription = TypedLogDescription<Event>;
  1352. }
  1353. export namespace IssuedEvent {
  1354. export type InputTuple = [
  1355. _operator: AddressLike,
  1356. _to: AddressLike,
  1357. _value: BigNumberish,
  1358. _data: BytesLike
  1359. ];
  1360. export type OutputTuple = [
  1361. _operator: string,
  1362. _to: string,
  1363. _value: bigint,
  1364. _data: string
  1365. ];
  1366. export interface OutputObject {
  1367. _operator: string;
  1368. _to: string;
  1369. _value: bigint;
  1370. _data: string;
  1371. }
  1372. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1373. export type Filter = TypedDeferredTopicFilter<Event>;
  1374. export type Log = TypedEventLog<Event>;
  1375. export type LogDescription = TypedLogDescription<Event>;
  1376. }
  1377. export namespace IssuedByPartitionEvent {
  1378. export type InputTuple = [
  1379. partition: BytesLike,
  1380. operator: AddressLike,
  1381. to: AddressLike,
  1382. amount: BigNumberish,
  1383. data: BytesLike,
  1384. operatorData: BytesLike
  1385. ];
  1386. export type OutputTuple = [
  1387. partition: string,
  1388. operator: string,
  1389. to: string,
  1390. amount: bigint,
  1391. data: string,
  1392. operatorData: string
  1393. ];
  1394. export interface OutputObject {
  1395. partition: string;
  1396. operator: string;
  1397. to: string;
  1398. amount: bigint;
  1399. data: string;
  1400. operatorData: string;
  1401. }
  1402. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1403. export type Filter = TypedDeferredTopicFilter<Event>;
  1404. export type Log = TypedEventLog<Event>;
  1405. export type LogDescription = TypedLogDescription<Event>;
  1406. }
  1407. export namespace LockCreatedEvent {
  1408. export type InputTuple = [
  1409. account: AddressLike,
  1410. partition: BytesLike,
  1411. lockType: BytesLike,
  1412. value: BigNumberish
  1413. ];
  1414. export type OutputTuple = [
  1415. account: string,
  1416. partition: string,
  1417. lockType: string,
  1418. value: bigint
  1419. ];
  1420. export interface OutputObject {
  1421. account: string;
  1422. partition: string;
  1423. lockType: string;
  1424. value: bigint;
  1425. }
  1426. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1427. export type Filter = TypedDeferredTopicFilter<Event>;
  1428. export type Log = TypedEventLog<Event>;
  1429. export type LogDescription = TypedLogDescription<Event>;
  1430. }
  1431. export namespace LockReleasedEvent {
  1432. export type InputTuple = [
  1433. account: AddressLike,
  1434. partition: BytesLike,
  1435. lockType: BytesLike,
  1436. value: BigNumberish
  1437. ];
  1438. export type OutputTuple = [
  1439. account: string,
  1440. partition: string,
  1441. lockType: string,
  1442. value: bigint
  1443. ];
  1444. export interface OutputObject {
  1445. account: string;
  1446. partition: string;
  1447. lockType: string;
  1448. value: bigint;
  1449. }
  1450. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1451. export type Filter = TypedDeferredTopicFilter<Event>;
  1452. export type Log = TypedEventLog<Event>;
  1453. export type LogDescription = TypedLogDescription<Event>;
  1454. }
  1455. export namespace PledgeErasureKSDEvent {
  1456. export type InputTuple = [
  1457. isin: BytesLike,
  1458. accountPledgee: AddressLike,
  1459. pledgeeKSDAccount: BytesLike,
  1460. accountPledgor: AddressLike,
  1461. pledgorKSDAccount: BytesLike,
  1462. qty: BigNumberish,
  1463. pledgedBalance: BigNumberish,
  1464. disposableBalance: BigNumberish
  1465. ];
  1466. export type OutputTuple = [
  1467. isin: string,
  1468. accountPledgee: string,
  1469. pledgeeKSDAccount: string,
  1470. accountPledgor: string,
  1471. pledgorKSDAccount: string,
  1472. qty: bigint,
  1473. pledgedBalance: bigint,
  1474. disposableBalance: bigint
  1475. ];
  1476. export interface OutputObject {
  1477. isin: string;
  1478. accountPledgee: string;
  1479. pledgeeKSDAccount: string;
  1480. accountPledgor: string;
  1481. pledgorKSDAccount: string;
  1482. qty: bigint;
  1483. pledgedBalance: bigint;
  1484. disposableBalance: bigint;
  1485. }
  1486. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1487. export type Filter = TypedDeferredTopicFilter<Event>;
  1488. export type Log = TypedEventLog<Event>;
  1489. export type LogDescription = TypedLogDescription<Event>;
  1490. }
  1491. export namespace PledgeSetupKSDEvent {
  1492. export type InputTuple = [
  1493. isin: BytesLike,
  1494. accountPledgor: AddressLike,
  1495. pledgorKSDAccount: BytesLike,
  1496. accountPledgee: AddressLike,
  1497. pledgeeKSDAccount: BytesLike,
  1498. qty: BigNumberish,
  1499. pledgedBalance: BigNumberish,
  1500. disposableBalance: BigNumberish
  1501. ];
  1502. export type OutputTuple = [
  1503. isin: string,
  1504. accountPledgor: string,
  1505. pledgorKSDAccount: string,
  1506. accountPledgee: string,
  1507. pledgeeKSDAccount: string,
  1508. qty: bigint,
  1509. pledgedBalance: bigint,
  1510. disposableBalance: bigint
  1511. ];
  1512. export interface OutputObject {
  1513. isin: string;
  1514. accountPledgor: string;
  1515. pledgorKSDAccount: string;
  1516. accountPledgee: string;
  1517. pledgeeKSDAccount: string;
  1518. qty: bigint;
  1519. pledgedBalance: bigint;
  1520. disposableBalance: bigint;
  1521. }
  1522. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1523. export type Filter = TypedDeferredTopicFilter<Event>;
  1524. export type Log = TypedEventLog<Event>;
  1525. export type LogDescription = TypedLogDescription<Event>;
  1526. }
  1527. export namespace RedeemedEvent {
  1528. export type InputTuple = [
  1529. _operator: AddressLike,
  1530. _from: AddressLike,
  1531. _value: BigNumberish,
  1532. _data: BytesLike
  1533. ];
  1534. export type OutputTuple = [
  1535. _operator: string,
  1536. _from: string,
  1537. _value: bigint,
  1538. _data: string
  1539. ];
  1540. export interface OutputObject {
  1541. _operator: string;
  1542. _from: string;
  1543. _value: bigint;
  1544. _data: string;
  1545. }
  1546. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1547. export type Filter = TypedDeferredTopicFilter<Event>;
  1548. export type Log = TypedEventLog<Event>;
  1549. export type LogDescription = TypedLogDescription<Event>;
  1550. }
  1551. export namespace RedeemedByPartitionEvent {
  1552. export type InputTuple = [
  1553. partition: BytesLike,
  1554. operator: AddressLike,
  1555. from: AddressLike,
  1556. value: BigNumberish,
  1557. operatorData: BytesLike
  1558. ];
  1559. export type OutputTuple = [
  1560. partition: string,
  1561. operator: string,
  1562. from: string,
  1563. value: bigint,
  1564. operatorData: string
  1565. ];
  1566. export interface OutputObject {
  1567. partition: string;
  1568. operator: string;
  1569. from: string;
  1570. value: bigint;
  1571. operatorData: string;
  1572. }
  1573. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1574. export type Filter = TypedDeferredTopicFilter<Event>;
  1575. export type Log = TypedEventLog<Event>;
  1576. export type LogDescription = TypedLogDescription<Event>;
  1577. }
  1578. export namespace RevokedOperatorEvent {
  1579. export type InputTuple = [operator: AddressLike, tokenHolder: AddressLike];
  1580. export type OutputTuple = [operator: string, tokenHolder: string];
  1581. export interface OutputObject {
  1582. operator: string;
  1583. tokenHolder: string;
  1584. }
  1585. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1586. export type Filter = TypedDeferredTopicFilter<Event>;
  1587. export type Log = TypedEventLog<Event>;
  1588. export type LogDescription = TypedLogDescription<Event>;
  1589. }
  1590. export namespace RoleGrantedEvent {
  1591. export type InputTuple = [role: BytesLike, account: AddressLike];
  1592. export type OutputTuple = [role: string, account: string];
  1593. export interface OutputObject {
  1594. role: string;
  1595. account: string;
  1596. }
  1597. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1598. export type Filter = TypedDeferredTopicFilter<Event>;
  1599. export type Log = TypedEventLog<Event>;
  1600. export type LogDescription = TypedLogDescription<Event>;
  1601. }
  1602. export namespace RoleRevokedEvent {
  1603. export type InputTuple = [role: BytesLike, account: AddressLike];
  1604. export type OutputTuple = [role: string, account: string];
  1605. export interface OutputObject {
  1606. role: string;
  1607. account: string;
  1608. }
  1609. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1610. export type Filter = TypedDeferredTopicFilter<Event>;
  1611. export type Log = TypedEventLog<Event>;
  1612. export type LogDescription = TypedLogDescription<Event>;
  1613. }
  1614. export namespace SecurityTokenInitializedEvent {
  1615. export type InputTuple = [_version: BigNumberish];
  1616. export type OutputTuple = [_version: bigint];
  1617. export interface OutputObject {
  1618. _version: bigint;
  1619. }
  1620. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1621. export type Filter = TypedDeferredTopicFilter<Event>;
  1622. export type Log = TypedEventLog<Event>;
  1623. export type LogDescription = TypedLogDescription<Event>;
  1624. }
  1625. export namespace SeizureErasureKSDEvent {
  1626. export type InputTuple = [
  1627. isin: BytesLike,
  1628. account: AddressLike,
  1629. KSDAccount: BytesLike,
  1630. qty: BigNumberish,
  1631. seizedBalance: BigNumberish,
  1632. disposableBalance: BigNumberish
  1633. ];
  1634. export type OutputTuple = [
  1635. isin: string,
  1636. account: string,
  1637. KSDAccount: string,
  1638. qty: bigint,
  1639. seizedBalance: bigint,
  1640. disposableBalance: bigint
  1641. ];
  1642. export interface OutputObject {
  1643. isin: string;
  1644. account: string;
  1645. KSDAccount: string;
  1646. qty: bigint;
  1647. seizedBalance: bigint;
  1648. disposableBalance: bigint;
  1649. }
  1650. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1651. export type Filter = TypedDeferredTopicFilter<Event>;
  1652. export type Log = TypedEventLog<Event>;
  1653. export type LogDescription = TypedLogDescription<Event>;
  1654. }
  1655. export namespace SeizureSetupKSDEvent {
  1656. export type InputTuple = [
  1657. isin: BytesLike,
  1658. account: AddressLike,
  1659. KSDAccount: BytesLike,
  1660. qty: BigNumberish,
  1661. seizedBalance: BigNumberish,
  1662. disposableBalance: BigNumberish
  1663. ];
  1664. export type OutputTuple = [
  1665. isin: string,
  1666. account: string,
  1667. KSDAccount: string,
  1668. qty: bigint,
  1669. seizedBalance: bigint,
  1670. disposableBalance: bigint
  1671. ];
  1672. export interface OutputObject {
  1673. isin: string;
  1674. account: string;
  1675. KSDAccount: string;
  1676. qty: bigint;
  1677. seizedBalance: bigint;
  1678. disposableBalance: bigint;
  1679. }
  1680. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1681. export type Filter = TypedDeferredTopicFilter<Event>;
  1682. export type Log = TypedEventLog<Event>;
  1683. export type LogDescription = TypedLogDescription<Event>;
  1684. }
  1685. export namespace TokenErasableKSDEvent {
  1686. export type InputTuple = [isin: BytesLike, slipSeqKSD: BytesLike];
  1687. export type OutputTuple = [isin: string, slipSeqKSD: string];
  1688. export interface OutputObject {
  1689. isin: string;
  1690. slipSeqKSD: string;
  1691. }
  1692. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1693. export type Filter = TypedDeferredTopicFilter<Event>;
  1694. export type Log = TypedEventLog<Event>;
  1695. export type LogDescription = TypedLogDescription<Event>;
  1696. }
  1697. export namespace TokenErasableKSD2Event {
  1698. export type InputTuple = [
  1699. isin: BytesLike,
  1700. totalErasureQty: BigNumberish,
  1701. KSDAccount: BytesLike[],
  1702. qty: BigNumberish[],
  1703. slipSeqKSD: BytesLike
  1704. ];
  1705. export type OutputTuple = [
  1706. isin: string,
  1707. totalErasureQty: bigint,
  1708. KSDAccount: string[],
  1709. qty: bigint[],
  1710. slipSeqKSD: string
  1711. ];
  1712. export interface OutputObject {
  1713. isin: string;
  1714. totalErasureQty: bigint;
  1715. KSDAccount: string[];
  1716. qty: bigint[];
  1717. slipSeqKSD: string;
  1718. }
  1719. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1720. export type Filter = TypedDeferredTopicFilter<Event>;
  1721. export type Log = TypedEventLog<Event>;
  1722. export type LogDescription = TypedLogDescription<Event>;
  1723. }
  1724. export namespace TokenIssuableKSDEvent {
  1725. export type InputTuple = [isin: BytesLike, slipSeqKSD: BytesLike];
  1726. export type OutputTuple = [isin: string, slipSeqKSD: string];
  1727. export interface OutputObject {
  1728. isin: string;
  1729. slipSeqKSD: string;
  1730. }
  1731. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1732. export type Filter = TypedDeferredTopicFilter<Event>;
  1733. export type Log = TypedEventLog<Event>;
  1734. export type LogDescription = TypedLogDescription<Event>;
  1735. }
  1736. export namespace TokenIssuableKSD2Event {
  1737. export type InputTuple = [
  1738. isin: BytesLike,
  1739. totalIssueQty: BigNumberish,
  1740. KSDAccounts: BytesLike[],
  1741. amounts: BigNumberish[],
  1742. slipSeqKSD: BytesLike
  1743. ];
  1744. export type OutputTuple = [
  1745. isin: string,
  1746. totalIssueQty: bigint,
  1747. KSDAccounts: string[],
  1748. amounts: bigint[],
  1749. slipSeqKSD: string
  1750. ];
  1751. export interface OutputObject {
  1752. isin: string;
  1753. totalIssueQty: bigint;
  1754. KSDAccounts: string[];
  1755. amounts: bigint[];
  1756. slipSeqKSD: string;
  1757. }
  1758. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1759. export type Filter = TypedDeferredTopicFilter<Event>;
  1760. export type Log = TypedEventLog<Event>;
  1761. export type LogDescription = TypedLogDescription<Event>;
  1762. }
  1763. export namespace TransferEvent {
  1764. export type InputTuple = [
  1765. from: AddressLike,
  1766. to: AddressLike,
  1767. value: BigNumberish
  1768. ];
  1769. export type OutputTuple = [from: string, to: string, value: bigint];
  1770. export interface OutputObject {
  1771. from: string;
  1772. to: string;
  1773. value: bigint;
  1774. }
  1775. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1776. export type Filter = TypedDeferredTopicFilter<Event>;
  1777. export type Log = TypedEventLog<Event>;
  1778. export type LogDescription = TypedLogDescription<Event>;
  1779. }
  1780. export namespace TransferByPartitionEvent {
  1781. export type InputTuple = [
  1782. _fromPartition: BytesLike,
  1783. _toPartition: BytesLike,
  1784. _operator: AddressLike,
  1785. _from: AddressLike,
  1786. _to: AddressLike,
  1787. _value: BigNumberish,
  1788. _data: BytesLike,
  1789. _operatorData: BytesLike
  1790. ];
  1791. export type OutputTuple = [
  1792. _fromPartition: string,
  1793. _toPartition: string,
  1794. _operator: string,
  1795. _from: string,
  1796. _to: string,
  1797. _value: bigint,
  1798. _data: string,
  1799. _operatorData: string
  1800. ];
  1801. export interface OutputObject {
  1802. _fromPartition: string;
  1803. _toPartition: string;
  1804. _operator: string;
  1805. _from: string;
  1806. _to: string;
  1807. _value: bigint;
  1808. _data: string;
  1809. _operatorData: string;
  1810. }
  1811. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1812. export type Filter = TypedDeferredTopicFilter<Event>;
  1813. export type Log = TypedEventLog<Event>;
  1814. export type LogDescription = TypedLogDescription<Event>;
  1815. }
  1816. export namespace TransferKSDEvent {
  1817. export type InputTuple = [
  1818. isin: BytesLike,
  1819. accountFrom: AddressLike,
  1820. KSDAccountFrom: BytesLike,
  1821. accountTo: AddressLike,
  1822. KSDAccountTo: BytesLike,
  1823. qty: BigNumberish,
  1824. rsnCode: BytesLike,
  1825. disposableBalanceFrom: BigNumberish,
  1826. disposableBalanceTo: BigNumberish
  1827. ];
  1828. export type OutputTuple = [
  1829. isin: string,
  1830. accountFrom: string,
  1831. KSDAccountFrom: string,
  1832. accountTo: string,
  1833. KSDAccountTo: string,
  1834. qty: bigint,
  1835. rsnCode: string,
  1836. disposableBalanceFrom: bigint,
  1837. disposableBalanceTo: bigint
  1838. ];
  1839. export interface OutputObject {
  1840. isin: string;
  1841. accountFrom: string;
  1842. KSDAccountFrom: string;
  1843. accountTo: string;
  1844. KSDAccountTo: string;
  1845. qty: bigint;
  1846. rsnCode: string;
  1847. disposableBalanceFrom: bigint;
  1848. disposableBalanceTo: bigint;
  1849. }
  1850. export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
  1851. export type Filter = TypedDeferredTopicFilter<Event>;
  1852. export type Log = TypedEventLog<Event>;
  1853. export type LogDescription = TypedLogDescription<Event>;
  1854. }
  1855. export interface SecurityToken extends BaseContract {
  1856. connect(runner?: ContractRunner | null): SecurityToken;
  1857. waitForDeployment(): Promise<this>;
  1858. interface: SecurityTokenInterface;
  1859. queryFilter<TCEvent extends TypedContractEvent>(
  1860. event: TCEvent,
  1861. fromBlockOrBlockhash?: string | number | undefined,
  1862. toBlock?: string | number | undefined
  1863. ): Promise<Array<TypedEventLog<TCEvent>>>;
  1864. queryFilter<TCEvent extends TypedContractEvent>(
  1865. filter: TypedDeferredTopicFilter<TCEvent>,
  1866. fromBlockOrBlockhash?: string | number | undefined,
  1867. toBlock?: string | number | undefined
  1868. ): Promise<Array<TypedEventLog<TCEvent>>>;
  1869. on<TCEvent extends TypedContractEvent>(
  1870. event: TCEvent,
  1871. listener: TypedListener<TCEvent>
  1872. ): Promise<this>;
  1873. on<TCEvent extends TypedContractEvent>(
  1874. filter: TypedDeferredTopicFilter<TCEvent>,
  1875. listener: TypedListener<TCEvent>
  1876. ): Promise<this>;
  1877. once<TCEvent extends TypedContractEvent>(
  1878. event: TCEvent,
  1879. listener: TypedListener<TCEvent>
  1880. ): Promise<this>;
  1881. once<TCEvent extends TypedContractEvent>(
  1882. filter: TypedDeferredTopicFilter<TCEvent>,
  1883. listener: TypedListener<TCEvent>
  1884. ): Promise<this>;
  1885. listeners<TCEvent extends TypedContractEvent>(
  1886. event: TCEvent
  1887. ): Promise<Array<TypedListener<TCEvent>>>;
  1888. listeners(eventName?: string): Promise<Array<Listener>>;
  1889. removeAllListeners<TCEvent extends TypedContractEvent>(
  1890. event?: TCEvent
  1891. ): Promise<this>;
  1892. ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
  1893. CONTROLLER_ROLE: TypedContractMethod<[], [string], "view">;
  1894. ISSUER_ROLE: TypedContractMethod<[], [string], "view">;
  1895. KSDOperators: TypedContractMethod<[], [string[]], "view">;
  1896. KSD_OPERATOR_ROLE: TypedContractMethod<[], [string], "view">;
  1897. KYCtokenHolders: TypedContractMethod<
  1898. [tokenHolders: AddressLike[]],
  1899. [void],
  1900. "nonpayable"
  1901. >;
  1902. LOCKER_ROLE: TypedContractMethod<[], [string], "view">;
  1903. OPERATOR_ROLE: TypedContractMethod<[], [string], "view">;
  1904. VERSION: TypedContractMethod<[], [bigint], "view">;
  1905. admins: TypedContractMethod<[], [string[]], "view">;
  1906. authorizeController: TypedContractMethod<
  1907. [controller: AddressLike, certificate: BytesLike],
  1908. [void],
  1909. "nonpayable"
  1910. >;
  1911. authorizeOperator: TypedContractMethod<
  1912. [operator: AddressLike, tokenHolders: AddressLike[]],
  1913. [void],
  1914. "nonpayable"
  1915. >;
  1916. availableBalanceByPartition: TypedContractMethod<
  1917. [from: AddressLike, partition: BytesLike],
  1918. [bigint],
  1919. "view"
  1920. >;
  1921. balanceListOfKSD: TypedContractMethod<
  1922. [isin: BytesLike, accountsIn: AddressLike[]],
  1923. [
  1924. [string[], bigint[], bigint[], bigint[], bigint[], bigint[]] & {
  1925. accountsOut: string[];
  1926. balances: bigint[];
  1927. disposableBalances: bigint[];
  1928. pledgedBalances: bigint[];
  1929. seizedBalances: bigint[];
  1930. restrictedDisposalBalances: bigint[];
  1931. }
  1932. ],
  1933. "view"
  1934. >;
  1935. balanceOf: TypedContractMethod<[tokenHolder: AddressLike], [bigint], "view">;
  1936. balanceOfByPartition: TypedContractMethod<
  1937. [partition: BytesLike, tokenHolder: AddressLike],
  1938. [bigint],
  1939. "view"
  1940. >;
  1941. balanceOfKSD: TypedContractMethod<
  1942. [isin: BytesLike, account: AddressLike],
  1943. [
  1944. [bigint, bigint, bigint, bigint, bigint] & {
  1945. balance: bigint;
  1946. disposableBalance: bigint;
  1947. pledgedBalance: bigint;
  1948. seizedBalance: bigint;
  1949. restrictedDisposalBalance: bigint;
  1950. }
  1951. ],
  1952. "view"
  1953. >;
  1954. certificateNonce: TypedContractMethod<[], [bigint], "view">;
  1955. controllerRedeem: TypedContractMethod<
  1956. [
  1957. tokenHolder: AddressLike,
  1958. value: BigNumberish,
  1959. data: BytesLike,
  1960. controllerData: BytesLike
  1961. ],
  1962. [void],
  1963. "nonpayable"
  1964. >;
  1965. controllerRedeemByPartition: TypedContractMethod<
  1966. [
  1967. partition: BytesLike,
  1968. tokenHolder: AddressLike,
  1969. value: BigNumberish,
  1970. data: BytesLike,
  1971. controllerData: BytesLike
  1972. ],
  1973. [string],
  1974. "nonpayable"
  1975. >;
  1976. controllerTransfer: TypedContractMethod<
  1977. [
  1978. from: AddressLike,
  1979. to: AddressLike,
  1980. value: BigNumberish,
  1981. data: BytesLike,
  1982. controllerData: BytesLike
  1983. ],
  1984. [void],
  1985. "nonpayable"
  1986. >;
  1987. controllerTransferByPartition: TypedContractMethod<
  1988. [
  1989. partition: BytesLike,
  1990. from: AddressLike,
  1991. to: AddressLike,
  1992. value: BigNumberish,
  1993. data: BytesLike,
  1994. controllerData: BytesLike
  1995. ],
  1996. [string],
  1997. "nonpayable"
  1998. >;
  1999. controllers: TypedContractMethod<[], [string[]], "view">;
  2000. createLock: TypedContractMethod<
  2001. [
  2002. partition: BytesLike,
  2003. lockType: BytesLike,
  2004. holder: AddressLike,
  2005. value: BigNumberish
  2006. ],
  2007. [void],
  2008. "nonpayable"
  2009. >;
  2010. decimals: TypedContractMethod<[], [bigint], "view">;
  2011. disposalLimitErasureKSD: TypedContractMethod<
  2012. [
  2013. isin: BytesLike,
  2014. account: AddressLike,
  2015. KSDAccount: BytesLike,
  2016. rsnCode: BytesLike,
  2017. qty: BigNumberish
  2018. ],
  2019. [void],
  2020. "nonpayable"
  2021. >;
  2022. disposalLimitSetupKSD: TypedContractMethod<
  2023. [
  2024. isin: BytesLike,
  2025. account: AddressLike,
  2026. KSDAccount: BytesLike,
  2027. rsnCode: BytesLike,
  2028. qty: BigNumberish
  2029. ],
  2030. [void],
  2031. "nonpayable"
  2032. >;
  2033. erasureKSD: TypedContractMethod<
  2034. [
  2035. isin: BytesLike,
  2036. account: AddressLike,
  2037. KSDAccount: BytesLike,
  2038. qty: BigNumberish,
  2039. rsnCode: BytesLike,
  2040. slipSeqKSD: BytesLike
  2041. ],
  2042. [void],
  2043. "nonpayable"
  2044. >;
  2045. getAllDocuments: TypedContractMethod<[], [string[]], "view">;
  2046. getDefaultPartitions: TypedContractMethod<[], [string[]], "view">;
  2047. getDocument: TypedContractMethod<
  2048. [nameHash: BytesLike],
  2049. [[string, string, string, bigint]],
  2050. "view"
  2051. >;
  2052. getHolders: TypedContractMethod<
  2053. [startAddress: AddressLike, count: BigNumberish],
  2054. [[string[], string] & { holders: string[]; nextAddress: string }],
  2055. "view"
  2056. >;
  2057. getHoldersWithNonZeroBalance: TypedContractMethod<
  2058. [startAddress: AddressLike, count: BigNumberish],
  2059. [[string[], string] & { holders: string[]; nextAddress: string }],
  2060. "view"
  2061. >;
  2062. getLocks: TypedContractMethod<
  2063. [account: AddressLike],
  2064. [ERC1400StorageDomain.LockStructOutput[]],
  2065. "view"
  2066. >;
  2067. getLocksByPartition: TypedContractMethod<
  2068. [account: AddressLike, partition: BytesLike],
  2069. [ERC1400StorageDomain.LockStructOutput[]],
  2070. "view"
  2071. >;
  2072. getRoleMembers: TypedContractMethod<[role: BytesLike], [string[]], "view">;
  2073. getRoleMembersLength: TypedContractMethod<
  2074. [role: BytesLike],
  2075. [bigint],
  2076. "view"
  2077. >;
  2078. getTarget: TypedContractMethod<[], [string], "view">;
  2079. getTargetImplementation: TypedContractMethod<[], [string], "view">;
  2080. grantRole: TypedContractMethod<
  2081. [role: BytesLike, account: AddressLike],
  2082. [void],
  2083. "nonpayable"
  2084. >;
  2085. hasLock: TypedContractMethod<
  2086. [account: AddressLike, partition: BytesLike],
  2087. [boolean],
  2088. "view"
  2089. >;
  2090. hasRole: TypedContractMethod<
  2091. [role: BytesLike, account: AddressLike],
  2092. [boolean],
  2093. "view"
  2094. >;
  2095. initialize: TypedContractMethod<
  2096. [
  2097. _rulesBeacon: AddressLike,
  2098. _issuers: AddressLike[],
  2099. _controllers: AddressLike[],
  2100. _operators: AddressLike[],
  2101. _lockers: AddressLike[],
  2102. _details: IERC20.TokenDetailsStruct,
  2103. _defaultPartitions: IPartitions.PartitionStruct[]
  2104. ],
  2105. [void],
  2106. "nonpayable"
  2107. >;
  2108. isAdmin: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2109. isControllable: TypedContractMethod<[], [boolean], "view">;
  2110. isController: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2111. isIssuable: TypedContractMethod<[], [boolean], "view">;
  2112. isIssuer: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2113. isKSDOperator: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2114. isLocker: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2115. isOperator: TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2116. isTokenHolderKYC: TypedContractMethod<
  2117. [tokenHolder: AddressLike],
  2118. [boolean],
  2119. "view"
  2120. >;
  2121. isin: TypedContractMethod<[], [string], "view">;
  2122. issue: TypedContractMethod<
  2123. [tokenHolder: AddressLike, value: BigNumberish, data: BytesLike],
  2124. [void],
  2125. "nonpayable"
  2126. >;
  2127. issueByPartition: TypedContractMethod<
  2128. [
  2129. partition: BytesLike,
  2130. tokenHolder: AddressLike,
  2131. value: BigNumberish,
  2132. data: BytesLike
  2133. ],
  2134. [void],
  2135. "nonpayable"
  2136. >;
  2137. issueByPartitionAndBatches: TypedContractMethod<
  2138. [issuances: IERC1410.IssuanceStruct[]],
  2139. [void],
  2140. "nonpayable"
  2141. >;
  2142. issueKSD: TypedContractMethod<
  2143. [
  2144. isin: BytesLike,
  2145. account: AddressLike,
  2146. KSDAccount: BytesLike,
  2147. qty: BigNumberish,
  2148. slipSeqKSD: BytesLike
  2149. ],
  2150. [void],
  2151. "nonpayable"
  2152. >;
  2153. issuers: TypedContractMethod<[], [string[]], "view">;
  2154. lockedAmount: TypedContractMethod<
  2155. [account: AddressLike, partition: BytesLike, lockType: BytesLike],
  2156. [bigint],
  2157. "view"
  2158. >;
  2159. lockers: TypedContractMethod<[], [string[]], "view">;
  2160. maxSupply: TypedContractMethod<[], [bigint], "view">;
  2161. name: TypedContractMethod<[], [string], "view">;
  2162. numOfControllers: TypedContractMethod<[], [bigint], "view">;
  2163. operatorRedeemByPartition: TypedContractMethod<
  2164. [
  2165. partition: BytesLike,
  2166. tokenHolder: AddressLike,
  2167. value: BigNumberish,
  2168. data: BytesLike
  2169. ],
  2170. [void],
  2171. "nonpayable"
  2172. >;
  2173. operatorRedeemByPartitionAndBatches: TypedContractMethod<
  2174. [redemptions: IERC1410.RedemptionStruct[]],
  2175. [void],
  2176. "nonpayable"
  2177. >;
  2178. operatorTransferBetweenPartitions: TypedContractMethod<
  2179. [
  2180. fromPartition: BytesLike,
  2181. toPartition: BytesLike,
  2182. from: AddressLike,
  2183. to: AddressLike,
  2184. value: BigNumberish,
  2185. data: BytesLike,
  2186. operatorData: BytesLike
  2187. ],
  2188. [void],
  2189. "nonpayable"
  2190. >;
  2191. operatorTransferByPartition: TypedContractMethod<
  2192. [
  2193. partition: BytesLike,
  2194. from: AddressLike,
  2195. to: AddressLike,
  2196. value: BigNumberish,
  2197. data: BytesLike,
  2198. operatorData: BytesLike
  2199. ],
  2200. [string],
  2201. "nonpayable"
  2202. >;
  2203. operatorTransferByPartitionAndBatches: TypedContractMethod<
  2204. [transfers: IERC1410.TransferStructStruct[]],
  2205. [void],
  2206. "nonpayable"
  2207. >;
  2208. operators: TypedContractMethod<[], [string[]], "view">;
  2209. partitionsOf: TypedContractMethod<
  2210. [tokenHolder: AddressLike],
  2211. [string[]],
  2212. "view"
  2213. >;
  2214. pledgeErasureKSD: TypedContractMethod<
  2215. [
  2216. isin: BytesLike,
  2217. accountPledgee: AddressLike,
  2218. pledgeeKSDAccount: BytesLike,
  2219. accountPledgor: AddressLike,
  2220. pledgorKSDAccount: BytesLike,
  2221. qty: BigNumberish
  2222. ],
  2223. [void],
  2224. "nonpayable"
  2225. >;
  2226. pledgeSetupKSD: TypedContractMethod<
  2227. [
  2228. isin: BytesLike,
  2229. accountPledgor: AddressLike,
  2230. pledgorKSDAccount: BytesLike,
  2231. accountPledgee: AddressLike,
  2232. pledgeeKSDAccount: BytesLike,
  2233. qty: BigNumberish
  2234. ],
  2235. [void],
  2236. "nonpayable"
  2237. >;
  2238. redeemFrom: TypedContractMethod<
  2239. [tokenHolder: AddressLike, value: BigNumberish, data: BytesLike],
  2240. [void],
  2241. "nonpayable"
  2242. >;
  2243. removeDocument: TypedContractMethod<
  2244. [nameHash: BytesLike],
  2245. [void],
  2246. "nonpayable"
  2247. >;
  2248. removeLock: TypedContractMethod<
  2249. [
  2250. partition: BytesLike,
  2251. lockType: BytesLike,
  2252. holder: AddressLike,
  2253. value: BigNumberish
  2254. ],
  2255. [void],
  2256. "nonpayable"
  2257. >;
  2258. renounceIssuance: TypedContractMethod<[], [void], "nonpayable">;
  2259. retrieveHolderListKSD: TypedContractMethod<
  2260. [isin: BytesLike, start: AddressLike, size: BigNumberish],
  2261. [[string[], string] & { holders: string[]; nextAddress: string }],
  2262. "view"
  2263. >;
  2264. retrieveIsinKSD: TypedContractMethod<[isinIn: BytesLike], [string], "view">;
  2265. revokeController: TypedContractMethod<
  2266. [controller: AddressLike, certificate: BytesLike],
  2267. [void],
  2268. "nonpayable"
  2269. >;
  2270. revokeOperator: TypedContractMethod<
  2271. [operator: AddressLike, tokenHolders: AddressLike[]],
  2272. [void],
  2273. "nonpayable"
  2274. >;
  2275. revokeRole: TypedContractMethod<
  2276. [role: BytesLike, account: AddressLike],
  2277. [void],
  2278. "nonpayable"
  2279. >;
  2280. seizureErasureKSD: TypedContractMethod<
  2281. [
  2282. isin: BytesLike,
  2283. account: AddressLike,
  2284. KSDAccount: BytesLike,
  2285. qty: BigNumberish
  2286. ],
  2287. [void],
  2288. "nonpayable"
  2289. >;
  2290. seizureSetupKSD: TypedContractMethod<
  2291. [
  2292. isin: BytesLike,
  2293. account: AddressLike,
  2294. KSDAccount: BytesLike,
  2295. qty: BigNumberish
  2296. ],
  2297. [void],
  2298. "nonpayable"
  2299. >;
  2300. setDefaultPartitions: TypedContractMethod<
  2301. [partitions: BytesLike[]],
  2302. [void],
  2303. "nonpayable"
  2304. >;
  2305. setDocument: TypedContractMethod<
  2306. [nameHash: BytesLike, name: string, uri: string, documentHash: BytesLike],
  2307. [void],
  2308. "nonpayable"
  2309. >;
  2310. setExternalKycRegistry: TypedContractMethod<
  2311. [registryAddress: AddressLike],
  2312. [void],
  2313. "nonpayable"
  2314. >;
  2315. setTarget: TypedContractMethod<[target: AddressLike], [void], "nonpayable">;
  2316. symbol: TypedContractMethod<[], [string], "view">;
  2317. tokenErasableKSD: TypedContractMethod<
  2318. [
  2319. isin: BytesLike,
  2320. totalErasureQty: BigNumberish,
  2321. KSDAccounts: BytesLike[],
  2322. amounts: BigNumberish[],
  2323. slipSeqKSD: BytesLike
  2324. ],
  2325. [void],
  2326. "nonpayable"
  2327. >;
  2328. tokenIssuableKSD: TypedContractMethod<
  2329. [
  2330. isin: BytesLike,
  2331. totalIssueQty: BigNumberish,
  2332. KSDAccounts: BytesLike[],
  2333. amounts: BigNumberish[],
  2334. slipSeqKSD: BytesLike
  2335. ],
  2336. [void],
  2337. "nonpayable"
  2338. >;
  2339. totalLockedAmount: TypedContractMethod<
  2340. [account: AddressLike],
  2341. [bigint],
  2342. "view"
  2343. >;
  2344. totalLockedAmountByPartition: TypedContractMethod<
  2345. [account: AddressLike, partition: BytesLike],
  2346. [bigint],
  2347. "view"
  2348. >;
  2349. totalPartitions: TypedContractMethod<[], [string[]], "view">;
  2350. totalSupply: TypedContractMethod<[], [bigint], "view">;
  2351. totalSupplyByPartition: TypedContractMethod<
  2352. [partition: BytesLike],
  2353. [bigint],
  2354. "view"
  2355. >;
  2356. totalSupplyKSD: TypedContractMethod<[isin: BytesLike], [bigint], "view">;
  2357. transferKSD: TypedContractMethod<
  2358. [
  2359. isin: BytesLike,
  2360. accountFrom: AddressLike,
  2361. KSDAccountFrom: BytesLike,
  2362. accountTo: AddressLike,
  2363. KSDAccountTo: BytesLike,
  2364. qty: BigNumberish,
  2365. rsnCode: BytesLike
  2366. ],
  2367. [void],
  2368. "nonpayable"
  2369. >;
  2370. unKYCtokenHolders: TypedContractMethod<
  2371. [tokenHolders: AddressLike[]],
  2372. [void],
  2373. "nonpayable"
  2374. >;
  2375. unlockAndErasureKSD: TypedContractMethod<
  2376. [
  2377. isin: BytesLike,
  2378. account: AddressLike,
  2379. KSDAccount: BytesLike,
  2380. qty: BigNumberish,
  2381. rsnCode: BytesLike,
  2382. slipSeqKSD: BytesLike
  2383. ],
  2384. [void],
  2385. "nonpayable"
  2386. >;
  2387. unlockAndTransferKSD: TypedContractMethod<
  2388. [
  2389. isin: BytesLike,
  2390. accountFrom: AddressLike,
  2391. KSDAccountFrom: BytesLike,
  2392. accountTo: AddressLike,
  2393. KSDAccountTo: BytesLike,
  2394. qty: BigNumberish,
  2395. rsnCode: BytesLike
  2396. ],
  2397. [void],
  2398. "nonpayable"
  2399. >;
  2400. getFunction<T extends ContractMethod = ContractMethod>(
  2401. key: string | FunctionFragment
  2402. ): T;
  2403. getFunction(
  2404. nameOrSignature: "ADMIN_ROLE"
  2405. ): TypedContractMethod<[], [string], "view">;
  2406. getFunction(
  2407. nameOrSignature: "CONTROLLER_ROLE"
  2408. ): TypedContractMethod<[], [string], "view">;
  2409. getFunction(
  2410. nameOrSignature: "ISSUER_ROLE"
  2411. ): TypedContractMethod<[], [string], "view">;
  2412. getFunction(
  2413. nameOrSignature: "KSDOperators"
  2414. ): TypedContractMethod<[], [string[]], "view">;
  2415. getFunction(
  2416. nameOrSignature: "KSD_OPERATOR_ROLE"
  2417. ): TypedContractMethod<[], [string], "view">;
  2418. getFunction(
  2419. nameOrSignature: "KYCtokenHolders"
  2420. ): TypedContractMethod<[tokenHolders: AddressLike[]], [void], "nonpayable">;
  2421. getFunction(
  2422. nameOrSignature: "LOCKER_ROLE"
  2423. ): TypedContractMethod<[], [string], "view">;
  2424. getFunction(
  2425. nameOrSignature: "OPERATOR_ROLE"
  2426. ): TypedContractMethod<[], [string], "view">;
  2427. getFunction(
  2428. nameOrSignature: "VERSION"
  2429. ): TypedContractMethod<[], [bigint], "view">;
  2430. getFunction(
  2431. nameOrSignature: "admins"
  2432. ): TypedContractMethod<[], [string[]], "view">;
  2433. getFunction(
  2434. nameOrSignature: "authorizeController"
  2435. ): TypedContractMethod<
  2436. [controller: AddressLike, certificate: BytesLike],
  2437. [void],
  2438. "nonpayable"
  2439. >;
  2440. getFunction(
  2441. nameOrSignature: "authorizeOperator"
  2442. ): TypedContractMethod<
  2443. [operator: AddressLike, tokenHolders: AddressLike[]],
  2444. [void],
  2445. "nonpayable"
  2446. >;
  2447. getFunction(
  2448. nameOrSignature: "availableBalanceByPartition"
  2449. ): TypedContractMethod<
  2450. [from: AddressLike, partition: BytesLike],
  2451. [bigint],
  2452. "view"
  2453. >;
  2454. getFunction(
  2455. nameOrSignature: "balanceListOfKSD"
  2456. ): TypedContractMethod<
  2457. [isin: BytesLike, accountsIn: AddressLike[]],
  2458. [
  2459. [string[], bigint[], bigint[], bigint[], bigint[], bigint[]] & {
  2460. accountsOut: string[];
  2461. balances: bigint[];
  2462. disposableBalances: bigint[];
  2463. pledgedBalances: bigint[];
  2464. seizedBalances: bigint[];
  2465. restrictedDisposalBalances: bigint[];
  2466. }
  2467. ],
  2468. "view"
  2469. >;
  2470. getFunction(
  2471. nameOrSignature: "balanceOf"
  2472. ): TypedContractMethod<[tokenHolder: AddressLike], [bigint], "view">;
  2473. getFunction(
  2474. nameOrSignature: "balanceOfByPartition"
  2475. ): TypedContractMethod<
  2476. [partition: BytesLike, tokenHolder: AddressLike],
  2477. [bigint],
  2478. "view"
  2479. >;
  2480. getFunction(
  2481. nameOrSignature: "balanceOfKSD"
  2482. ): TypedContractMethod<
  2483. [isin: BytesLike, account: AddressLike],
  2484. [
  2485. [bigint, bigint, bigint, bigint, bigint] & {
  2486. balance: bigint;
  2487. disposableBalance: bigint;
  2488. pledgedBalance: bigint;
  2489. seizedBalance: bigint;
  2490. restrictedDisposalBalance: bigint;
  2491. }
  2492. ],
  2493. "view"
  2494. >;
  2495. getFunction(
  2496. nameOrSignature: "certificateNonce"
  2497. ): TypedContractMethod<[], [bigint], "view">;
  2498. getFunction(
  2499. nameOrSignature: "controllerRedeem"
  2500. ): TypedContractMethod<
  2501. [
  2502. tokenHolder: AddressLike,
  2503. value: BigNumberish,
  2504. data: BytesLike,
  2505. controllerData: BytesLike
  2506. ],
  2507. [void],
  2508. "nonpayable"
  2509. >;
  2510. getFunction(
  2511. nameOrSignature: "controllerRedeemByPartition"
  2512. ): TypedContractMethod<
  2513. [
  2514. partition: BytesLike,
  2515. tokenHolder: AddressLike,
  2516. value: BigNumberish,
  2517. data: BytesLike,
  2518. controllerData: BytesLike
  2519. ],
  2520. [string],
  2521. "nonpayable"
  2522. >;
  2523. getFunction(
  2524. nameOrSignature: "controllerTransfer"
  2525. ): TypedContractMethod<
  2526. [
  2527. from: AddressLike,
  2528. to: AddressLike,
  2529. value: BigNumberish,
  2530. data: BytesLike,
  2531. controllerData: BytesLike
  2532. ],
  2533. [void],
  2534. "nonpayable"
  2535. >;
  2536. getFunction(
  2537. nameOrSignature: "controllerTransferByPartition"
  2538. ): TypedContractMethod<
  2539. [
  2540. partition: BytesLike,
  2541. from: AddressLike,
  2542. to: AddressLike,
  2543. value: BigNumberish,
  2544. data: BytesLike,
  2545. controllerData: BytesLike
  2546. ],
  2547. [string],
  2548. "nonpayable"
  2549. >;
  2550. getFunction(
  2551. nameOrSignature: "controllers"
  2552. ): TypedContractMethod<[], [string[]], "view">;
  2553. getFunction(
  2554. nameOrSignature: "createLock"
  2555. ): TypedContractMethod<
  2556. [
  2557. partition: BytesLike,
  2558. lockType: BytesLike,
  2559. holder: AddressLike,
  2560. value: BigNumberish
  2561. ],
  2562. [void],
  2563. "nonpayable"
  2564. >;
  2565. getFunction(
  2566. nameOrSignature: "decimals"
  2567. ): TypedContractMethod<[], [bigint], "view">;
  2568. getFunction(
  2569. nameOrSignature: "disposalLimitErasureKSD"
  2570. ): TypedContractMethod<
  2571. [
  2572. isin: BytesLike,
  2573. account: AddressLike,
  2574. KSDAccount: BytesLike,
  2575. rsnCode: BytesLike,
  2576. qty: BigNumberish
  2577. ],
  2578. [void],
  2579. "nonpayable"
  2580. >;
  2581. getFunction(
  2582. nameOrSignature: "disposalLimitSetupKSD"
  2583. ): TypedContractMethod<
  2584. [
  2585. isin: BytesLike,
  2586. account: AddressLike,
  2587. KSDAccount: BytesLike,
  2588. rsnCode: BytesLike,
  2589. qty: BigNumberish
  2590. ],
  2591. [void],
  2592. "nonpayable"
  2593. >;
  2594. getFunction(
  2595. nameOrSignature: "erasureKSD"
  2596. ): TypedContractMethod<
  2597. [
  2598. isin: BytesLike,
  2599. account: AddressLike,
  2600. KSDAccount: BytesLike,
  2601. qty: BigNumberish,
  2602. rsnCode: BytesLike,
  2603. slipSeqKSD: BytesLike
  2604. ],
  2605. [void],
  2606. "nonpayable"
  2607. >;
  2608. getFunction(
  2609. nameOrSignature: "getAllDocuments"
  2610. ): TypedContractMethod<[], [string[]], "view">;
  2611. getFunction(
  2612. nameOrSignature: "getDefaultPartitions"
  2613. ): TypedContractMethod<[], [string[]], "view">;
  2614. getFunction(
  2615. nameOrSignature: "getDocument"
  2616. ): TypedContractMethod<
  2617. [nameHash: BytesLike],
  2618. [[string, string, string, bigint]],
  2619. "view"
  2620. >;
  2621. getFunction(
  2622. nameOrSignature: "getHolders"
  2623. ): TypedContractMethod<
  2624. [startAddress: AddressLike, count: BigNumberish],
  2625. [[string[], string] & { holders: string[]; nextAddress: string }],
  2626. "view"
  2627. >;
  2628. getFunction(
  2629. nameOrSignature: "getHoldersWithNonZeroBalance"
  2630. ): TypedContractMethod<
  2631. [startAddress: AddressLike, count: BigNumberish],
  2632. [[string[], string] & { holders: string[]; nextAddress: string }],
  2633. "view"
  2634. >;
  2635. getFunction(
  2636. nameOrSignature: "getLocks"
  2637. ): TypedContractMethod<
  2638. [account: AddressLike],
  2639. [ERC1400StorageDomain.LockStructOutput[]],
  2640. "view"
  2641. >;
  2642. getFunction(
  2643. nameOrSignature: "getLocksByPartition"
  2644. ): TypedContractMethod<
  2645. [account: AddressLike, partition: BytesLike],
  2646. [ERC1400StorageDomain.LockStructOutput[]],
  2647. "view"
  2648. >;
  2649. getFunction(
  2650. nameOrSignature: "getRoleMembers"
  2651. ): TypedContractMethod<[role: BytesLike], [string[]], "view">;
  2652. getFunction(
  2653. nameOrSignature: "getRoleMembersLength"
  2654. ): TypedContractMethod<[role: BytesLike], [bigint], "view">;
  2655. getFunction(
  2656. nameOrSignature: "getTarget"
  2657. ): TypedContractMethod<[], [string], "view">;
  2658. getFunction(
  2659. nameOrSignature: "getTargetImplementation"
  2660. ): TypedContractMethod<[], [string], "view">;
  2661. getFunction(
  2662. nameOrSignature: "grantRole"
  2663. ): TypedContractMethod<
  2664. [role: BytesLike, account: AddressLike],
  2665. [void],
  2666. "nonpayable"
  2667. >;
  2668. getFunction(
  2669. nameOrSignature: "hasLock"
  2670. ): TypedContractMethod<
  2671. [account: AddressLike, partition: BytesLike],
  2672. [boolean],
  2673. "view"
  2674. >;
  2675. getFunction(
  2676. nameOrSignature: "hasRole"
  2677. ): TypedContractMethod<
  2678. [role: BytesLike, account: AddressLike],
  2679. [boolean],
  2680. "view"
  2681. >;
  2682. getFunction(
  2683. nameOrSignature: "initialize"
  2684. ): TypedContractMethod<
  2685. [
  2686. _rulesBeacon: AddressLike,
  2687. _issuers: AddressLike[],
  2688. _controllers: AddressLike[],
  2689. _operators: AddressLike[],
  2690. _lockers: AddressLike[],
  2691. _details: IERC20.TokenDetailsStruct,
  2692. _defaultPartitions: IPartitions.PartitionStruct[]
  2693. ],
  2694. [void],
  2695. "nonpayable"
  2696. >;
  2697. getFunction(
  2698. nameOrSignature: "isAdmin"
  2699. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2700. getFunction(
  2701. nameOrSignature: "isControllable"
  2702. ): TypedContractMethod<[], [boolean], "view">;
  2703. getFunction(
  2704. nameOrSignature: "isController"
  2705. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2706. getFunction(
  2707. nameOrSignature: "isIssuable"
  2708. ): TypedContractMethod<[], [boolean], "view">;
  2709. getFunction(
  2710. nameOrSignature: "isIssuer"
  2711. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2712. getFunction(
  2713. nameOrSignature: "isKSDOperator"
  2714. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2715. getFunction(
  2716. nameOrSignature: "isLocker"
  2717. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2718. getFunction(
  2719. nameOrSignature: "isOperator"
  2720. ): TypedContractMethod<[account: AddressLike], [boolean], "view">;
  2721. getFunction(
  2722. nameOrSignature: "isTokenHolderKYC"
  2723. ): TypedContractMethod<[tokenHolder: AddressLike], [boolean], "view">;
  2724. getFunction(
  2725. nameOrSignature: "isin"
  2726. ): TypedContractMethod<[], [string], "view">;
  2727. getFunction(
  2728. nameOrSignature: "issue"
  2729. ): TypedContractMethod<
  2730. [tokenHolder: AddressLike, value: BigNumberish, data: BytesLike],
  2731. [void],
  2732. "nonpayable"
  2733. >;
  2734. getFunction(
  2735. nameOrSignature: "issueByPartition"
  2736. ): TypedContractMethod<
  2737. [
  2738. partition: BytesLike,
  2739. tokenHolder: AddressLike,
  2740. value: BigNumberish,
  2741. data: BytesLike
  2742. ],
  2743. [void],
  2744. "nonpayable"
  2745. >;
  2746. getFunction(
  2747. nameOrSignature: "issueByPartitionAndBatches"
  2748. ): TypedContractMethod<
  2749. [issuances: IERC1410.IssuanceStruct[]],
  2750. [void],
  2751. "nonpayable"
  2752. >;
  2753. getFunction(
  2754. nameOrSignature: "issueKSD"
  2755. ): TypedContractMethod<
  2756. [
  2757. isin: BytesLike,
  2758. account: AddressLike,
  2759. KSDAccount: BytesLike,
  2760. qty: BigNumberish,
  2761. slipSeqKSD: BytesLike
  2762. ],
  2763. [void],
  2764. "nonpayable"
  2765. >;
  2766. getFunction(
  2767. nameOrSignature: "issuers"
  2768. ): TypedContractMethod<[], [string[]], "view">;
  2769. getFunction(
  2770. nameOrSignature: "lockedAmount"
  2771. ): TypedContractMethod<
  2772. [account: AddressLike, partition: BytesLike, lockType: BytesLike],
  2773. [bigint],
  2774. "view"
  2775. >;
  2776. getFunction(
  2777. nameOrSignature: "lockers"
  2778. ): TypedContractMethod<[], [string[]], "view">;
  2779. getFunction(
  2780. nameOrSignature: "maxSupply"
  2781. ): TypedContractMethod<[], [bigint], "view">;
  2782. getFunction(
  2783. nameOrSignature: "name"
  2784. ): TypedContractMethod<[], [string], "view">;
  2785. getFunction(
  2786. nameOrSignature: "numOfControllers"
  2787. ): TypedContractMethod<[], [bigint], "view">;
  2788. getFunction(
  2789. nameOrSignature: "operatorRedeemByPartition"
  2790. ): TypedContractMethod<
  2791. [
  2792. partition: BytesLike,
  2793. tokenHolder: AddressLike,
  2794. value: BigNumberish,
  2795. data: BytesLike
  2796. ],
  2797. [void],
  2798. "nonpayable"
  2799. >;
  2800. getFunction(
  2801. nameOrSignature: "operatorRedeemByPartitionAndBatches"
  2802. ): TypedContractMethod<
  2803. [redemptions: IERC1410.RedemptionStruct[]],
  2804. [void],
  2805. "nonpayable"
  2806. >;
  2807. getFunction(
  2808. nameOrSignature: "operatorTransferBetweenPartitions"
  2809. ): TypedContractMethod<
  2810. [
  2811. fromPartition: BytesLike,
  2812. toPartition: BytesLike,
  2813. from: AddressLike,
  2814. to: AddressLike,
  2815. value: BigNumberish,
  2816. data: BytesLike,
  2817. operatorData: BytesLike
  2818. ],
  2819. [void],
  2820. "nonpayable"
  2821. >;
  2822. getFunction(
  2823. nameOrSignature: "operatorTransferByPartition"
  2824. ): TypedContractMethod<
  2825. [
  2826. partition: BytesLike,
  2827. from: AddressLike,
  2828. to: AddressLike,
  2829. value: BigNumberish,
  2830. data: BytesLike,
  2831. operatorData: BytesLike
  2832. ],
  2833. [string],
  2834. "nonpayable"
  2835. >;
  2836. getFunction(
  2837. nameOrSignature: "operatorTransferByPartitionAndBatches"
  2838. ): TypedContractMethod<
  2839. [transfers: IERC1410.TransferStructStruct[]],
  2840. [void],
  2841. "nonpayable"
  2842. >;
  2843. getFunction(
  2844. nameOrSignature: "operators"
  2845. ): TypedContractMethod<[], [string[]], "view">;
  2846. getFunction(
  2847. nameOrSignature: "partitionsOf"
  2848. ): TypedContractMethod<[tokenHolder: AddressLike], [string[]], "view">;
  2849. getFunction(
  2850. nameOrSignature: "pledgeErasureKSD"
  2851. ): TypedContractMethod<
  2852. [
  2853. isin: BytesLike,
  2854. accountPledgee: AddressLike,
  2855. pledgeeKSDAccount: BytesLike,
  2856. accountPledgor: AddressLike,
  2857. pledgorKSDAccount: BytesLike,
  2858. qty: BigNumberish
  2859. ],
  2860. [void],
  2861. "nonpayable"
  2862. >;
  2863. getFunction(
  2864. nameOrSignature: "pledgeSetupKSD"
  2865. ): TypedContractMethod<
  2866. [
  2867. isin: BytesLike,
  2868. accountPledgor: AddressLike,
  2869. pledgorKSDAccount: BytesLike,
  2870. accountPledgee: AddressLike,
  2871. pledgeeKSDAccount: BytesLike,
  2872. qty: BigNumberish
  2873. ],
  2874. [void],
  2875. "nonpayable"
  2876. >;
  2877. getFunction(
  2878. nameOrSignature: "redeemFrom"
  2879. ): TypedContractMethod<
  2880. [tokenHolder: AddressLike, value: BigNumberish, data: BytesLike],
  2881. [void],
  2882. "nonpayable"
  2883. >;
  2884. getFunction(
  2885. nameOrSignature: "removeDocument"
  2886. ): TypedContractMethod<[nameHash: BytesLike], [void], "nonpayable">;
  2887. getFunction(
  2888. nameOrSignature: "removeLock"
  2889. ): TypedContractMethod<
  2890. [
  2891. partition: BytesLike,
  2892. lockType: BytesLike,
  2893. holder: AddressLike,
  2894. value: BigNumberish
  2895. ],
  2896. [void],
  2897. "nonpayable"
  2898. >;
  2899. getFunction(
  2900. nameOrSignature: "renounceIssuance"
  2901. ): TypedContractMethod<[], [void], "nonpayable">;
  2902. getFunction(
  2903. nameOrSignature: "retrieveHolderListKSD"
  2904. ): TypedContractMethod<
  2905. [isin: BytesLike, start: AddressLike, size: BigNumberish],
  2906. [[string[], string] & { holders: string[]; nextAddress: string }],
  2907. "view"
  2908. >;
  2909. getFunction(
  2910. nameOrSignature: "retrieveIsinKSD"
  2911. ): TypedContractMethod<[isinIn: BytesLike], [string], "view">;
  2912. getFunction(
  2913. nameOrSignature: "revokeController"
  2914. ): TypedContractMethod<
  2915. [controller: AddressLike, certificate: BytesLike],
  2916. [void],
  2917. "nonpayable"
  2918. >;
  2919. getFunction(
  2920. nameOrSignature: "revokeOperator"
  2921. ): TypedContractMethod<
  2922. [operator: AddressLike, tokenHolders: AddressLike[]],
  2923. [void],
  2924. "nonpayable"
  2925. >;
  2926. getFunction(
  2927. nameOrSignature: "revokeRole"
  2928. ): TypedContractMethod<
  2929. [role: BytesLike, account: AddressLike],
  2930. [void],
  2931. "nonpayable"
  2932. >;
  2933. getFunction(
  2934. nameOrSignature: "seizureErasureKSD"
  2935. ): TypedContractMethod<
  2936. [
  2937. isin: BytesLike,
  2938. account: AddressLike,
  2939. KSDAccount: BytesLike,
  2940. qty: BigNumberish
  2941. ],
  2942. [void],
  2943. "nonpayable"
  2944. >;
  2945. getFunction(
  2946. nameOrSignature: "seizureSetupKSD"
  2947. ): TypedContractMethod<
  2948. [
  2949. isin: BytesLike,
  2950. account: AddressLike,
  2951. KSDAccount: BytesLike,
  2952. qty: BigNumberish
  2953. ],
  2954. [void],
  2955. "nonpayable"
  2956. >;
  2957. getFunction(
  2958. nameOrSignature: "setDefaultPartitions"
  2959. ): TypedContractMethod<[partitions: BytesLike[]], [void], "nonpayable">;
  2960. getFunction(
  2961. nameOrSignature: "setDocument"
  2962. ): TypedContractMethod<
  2963. [nameHash: BytesLike, name: string, uri: string, documentHash: BytesLike],
  2964. [void],
  2965. "nonpayable"
  2966. >;
  2967. getFunction(
  2968. nameOrSignature: "setExternalKycRegistry"
  2969. ): TypedContractMethod<[registryAddress: AddressLike], [void], "nonpayable">;
  2970. getFunction(
  2971. nameOrSignature: "setTarget"
  2972. ): TypedContractMethod<[target: AddressLike], [void], "nonpayable">;
  2973. getFunction(
  2974. nameOrSignature: "symbol"
  2975. ): TypedContractMethod<[], [string], "view">;
  2976. getFunction(
  2977. nameOrSignature: "tokenErasableKSD"
  2978. ): TypedContractMethod<
  2979. [
  2980. isin: BytesLike,
  2981. totalErasureQty: BigNumberish,
  2982. KSDAccounts: BytesLike[],
  2983. amounts: BigNumberish[],
  2984. slipSeqKSD: BytesLike
  2985. ],
  2986. [void],
  2987. "nonpayable"
  2988. >;
  2989. getFunction(
  2990. nameOrSignature: "tokenIssuableKSD"
  2991. ): TypedContractMethod<
  2992. [
  2993. isin: BytesLike,
  2994. totalIssueQty: BigNumberish,
  2995. KSDAccounts: BytesLike[],
  2996. amounts: BigNumberish[],
  2997. slipSeqKSD: BytesLike
  2998. ],
  2999. [void],
  3000. "nonpayable"
  3001. >;
  3002. getFunction(
  3003. nameOrSignature: "totalLockedAmount"
  3004. ): TypedContractMethod<[account: AddressLike], [bigint], "view">;
  3005. getFunction(
  3006. nameOrSignature: "totalLockedAmountByPartition"
  3007. ): TypedContractMethod<
  3008. [account: AddressLike, partition: BytesLike],
  3009. [bigint],
  3010. "view"
  3011. >;
  3012. getFunction(
  3013. nameOrSignature: "totalPartitions"
  3014. ): TypedContractMethod<[], [string[]], "view">;
  3015. getFunction(
  3016. nameOrSignature: "totalSupply"
  3017. ): TypedContractMethod<[], [bigint], "view">;
  3018. getFunction(
  3019. nameOrSignature: "totalSupplyByPartition"
  3020. ): TypedContractMethod<[partition: BytesLike], [bigint], "view">;
  3021. getFunction(
  3022. nameOrSignature: "totalSupplyKSD"
  3023. ): TypedContractMethod<[isin: BytesLike], [bigint], "view">;
  3024. getFunction(
  3025. nameOrSignature: "transferKSD"
  3026. ): TypedContractMethod<
  3027. [
  3028. isin: BytesLike,
  3029. accountFrom: AddressLike,
  3030. KSDAccountFrom: BytesLike,
  3031. accountTo: AddressLike,
  3032. KSDAccountTo: BytesLike,
  3033. qty: BigNumberish,
  3034. rsnCode: BytesLike
  3035. ],
  3036. [void],
  3037. "nonpayable"
  3038. >;
  3039. getFunction(
  3040. nameOrSignature: "unKYCtokenHolders"
  3041. ): TypedContractMethod<[tokenHolders: AddressLike[]], [void], "nonpayable">;
  3042. getFunction(
  3043. nameOrSignature: "unlockAndErasureKSD"
  3044. ): TypedContractMethod<
  3045. [
  3046. isin: BytesLike,
  3047. account: AddressLike,
  3048. KSDAccount: BytesLike,
  3049. qty: BigNumberish,
  3050. rsnCode: BytesLike,
  3051. slipSeqKSD: BytesLike
  3052. ],
  3053. [void],
  3054. "nonpayable"
  3055. >;
  3056. getFunction(
  3057. nameOrSignature: "unlockAndTransferKSD"
  3058. ): TypedContractMethod<
  3059. [
  3060. isin: BytesLike,
  3061. accountFrom: AddressLike,
  3062. KSDAccountFrom: BytesLike,
  3063. accountTo: AddressLike,
  3064. KSDAccountTo: BytesLike,
  3065. qty: BigNumberish,
  3066. rsnCode: BytesLike
  3067. ],
  3068. [void],
  3069. "nonpayable"
  3070. >;
  3071. getEvent(
  3072. key: "AuthorizedOperator"
  3073. ): TypedContractEvent<
  3074. AuthorizedOperatorEvent.InputTuple,
  3075. AuthorizedOperatorEvent.OutputTuple,
  3076. AuthorizedOperatorEvent.OutputObject
  3077. >;
  3078. getEvent(
  3079. key: "ControllerAuthorized"
  3080. ): TypedContractEvent<
  3081. ControllerAuthorizedEvent.InputTuple,
  3082. ControllerAuthorizedEvent.OutputTuple,
  3083. ControllerAuthorizedEvent.OutputObject
  3084. >;
  3085. getEvent(
  3086. key: "ControllerRedemption"
  3087. ): TypedContractEvent<
  3088. ControllerRedemptionEvent.InputTuple,
  3089. ControllerRedemptionEvent.OutputTuple,
  3090. ControllerRedemptionEvent.OutputObject
  3091. >;
  3092. getEvent(
  3093. key: "ControllerRedemptionByPartition"
  3094. ): TypedContractEvent<
  3095. ControllerRedemptionByPartitionEvent.InputTuple,
  3096. ControllerRedemptionByPartitionEvent.OutputTuple,
  3097. ControllerRedemptionByPartitionEvent.OutputObject
  3098. >;
  3099. getEvent(
  3100. key: "ControllerRevoked"
  3101. ): TypedContractEvent<
  3102. ControllerRevokedEvent.InputTuple,
  3103. ControllerRevokedEvent.OutputTuple,
  3104. ControllerRevokedEvent.OutputObject
  3105. >;
  3106. getEvent(
  3107. key: "ControllerTransfer"
  3108. ): TypedContractEvent<
  3109. ControllerTransferEvent.InputTuple,
  3110. ControllerTransferEvent.OutputTuple,
  3111. ControllerTransferEvent.OutputObject
  3112. >;
  3113. getEvent(
  3114. key: "ControllerTransferByPartition"
  3115. ): TypedContractEvent<
  3116. ControllerTransferByPartitionEvent.InputTuple,
  3117. ControllerTransferByPartitionEvent.OutputTuple,
  3118. ControllerTransferByPartitionEvent.OutputObject
  3119. >;
  3120. getEvent(
  3121. key: "DisposalLimitErasureKSD"
  3122. ): TypedContractEvent<
  3123. DisposalLimitErasureKSDEvent.InputTuple,
  3124. DisposalLimitErasureKSDEvent.OutputTuple,
  3125. DisposalLimitErasureKSDEvent.OutputObject
  3126. >;
  3127. getEvent(
  3128. key: "DisposalLimitSetupKSD"
  3129. ): TypedContractEvent<
  3130. DisposalLimitSetupKSDEvent.InputTuple,
  3131. DisposalLimitSetupKSDEvent.OutputTuple,
  3132. DisposalLimitSetupKSDEvent.OutputObject
  3133. >;
  3134. getEvent(
  3135. key: "DocumentRemoved"
  3136. ): TypedContractEvent<
  3137. DocumentRemovedEvent.InputTuple,
  3138. DocumentRemovedEvent.OutputTuple,
  3139. DocumentRemovedEvent.OutputObject
  3140. >;
  3141. getEvent(
  3142. key: "DocumentUpdated"
  3143. ): TypedContractEvent<
  3144. DocumentUpdatedEvent.InputTuple,
  3145. DocumentUpdatedEvent.OutputTuple,
  3146. DocumentUpdatedEvent.OutputObject
  3147. >;
  3148. getEvent(
  3149. key: "ErasureKSD"
  3150. ): TypedContractEvent<
  3151. ErasureKSDEvent.InputTuple,
  3152. ErasureKSDEvent.OutputTuple,
  3153. ErasureKSDEvent.OutputObject
  3154. >;
  3155. getEvent(
  3156. key: "Initialized"
  3157. ): TypedContractEvent<
  3158. InitializedEvent.InputTuple,
  3159. InitializedEvent.OutputTuple,
  3160. InitializedEvent.OutputObject
  3161. >;
  3162. getEvent(
  3163. key: "IssuanceRenunciation"
  3164. ): TypedContractEvent<
  3165. IssuanceRenunciationEvent.InputTuple,
  3166. IssuanceRenunciationEvent.OutputTuple,
  3167. IssuanceRenunciationEvent.OutputObject
  3168. >;
  3169. getEvent(
  3170. key: "IssueKSD"
  3171. ): TypedContractEvent<
  3172. IssueKSDEvent.InputTuple,
  3173. IssueKSDEvent.OutputTuple,
  3174. IssueKSDEvent.OutputObject
  3175. >;
  3176. getEvent(
  3177. key: "Issued"
  3178. ): TypedContractEvent<
  3179. IssuedEvent.InputTuple,
  3180. IssuedEvent.OutputTuple,
  3181. IssuedEvent.OutputObject
  3182. >;
  3183. getEvent(
  3184. key: "IssuedByPartition"
  3185. ): TypedContractEvent<
  3186. IssuedByPartitionEvent.InputTuple,
  3187. IssuedByPartitionEvent.OutputTuple,
  3188. IssuedByPartitionEvent.OutputObject
  3189. >;
  3190. getEvent(
  3191. key: "LockCreated"
  3192. ): TypedContractEvent<
  3193. LockCreatedEvent.InputTuple,
  3194. LockCreatedEvent.OutputTuple,
  3195. LockCreatedEvent.OutputObject
  3196. >;
  3197. getEvent(
  3198. key: "LockReleased"
  3199. ): TypedContractEvent<
  3200. LockReleasedEvent.InputTuple,
  3201. LockReleasedEvent.OutputTuple,
  3202. LockReleasedEvent.OutputObject
  3203. >;
  3204. getEvent(
  3205. key: "PledgeErasureKSD"
  3206. ): TypedContractEvent<
  3207. PledgeErasureKSDEvent.InputTuple,
  3208. PledgeErasureKSDEvent.OutputTuple,
  3209. PledgeErasureKSDEvent.OutputObject
  3210. >;
  3211. getEvent(
  3212. key: "PledgeSetupKSD"
  3213. ): TypedContractEvent<
  3214. PledgeSetupKSDEvent.InputTuple,
  3215. PledgeSetupKSDEvent.OutputTuple,
  3216. PledgeSetupKSDEvent.OutputObject
  3217. >;
  3218. getEvent(
  3219. key: "Redeemed"
  3220. ): TypedContractEvent<
  3221. RedeemedEvent.InputTuple,
  3222. RedeemedEvent.OutputTuple,
  3223. RedeemedEvent.OutputObject
  3224. >;
  3225. getEvent(
  3226. key: "RedeemedByPartition"
  3227. ): TypedContractEvent<
  3228. RedeemedByPartitionEvent.InputTuple,
  3229. RedeemedByPartitionEvent.OutputTuple,
  3230. RedeemedByPartitionEvent.OutputObject
  3231. >;
  3232. getEvent(
  3233. key: "RevokedOperator"
  3234. ): TypedContractEvent<
  3235. RevokedOperatorEvent.InputTuple,
  3236. RevokedOperatorEvent.OutputTuple,
  3237. RevokedOperatorEvent.OutputObject
  3238. >;
  3239. getEvent(
  3240. key: "RoleGranted"
  3241. ): TypedContractEvent<
  3242. RoleGrantedEvent.InputTuple,
  3243. RoleGrantedEvent.OutputTuple,
  3244. RoleGrantedEvent.OutputObject
  3245. >;
  3246. getEvent(
  3247. key: "RoleRevoked"
  3248. ): TypedContractEvent<
  3249. RoleRevokedEvent.InputTuple,
  3250. RoleRevokedEvent.OutputTuple,
  3251. RoleRevokedEvent.OutputObject
  3252. >;
  3253. getEvent(
  3254. key: "SecurityTokenInitialized"
  3255. ): TypedContractEvent<
  3256. SecurityTokenInitializedEvent.InputTuple,
  3257. SecurityTokenInitializedEvent.OutputTuple,
  3258. SecurityTokenInitializedEvent.OutputObject
  3259. >;
  3260. getEvent(
  3261. key: "SeizureErasureKSD"
  3262. ): TypedContractEvent<
  3263. SeizureErasureKSDEvent.InputTuple,
  3264. SeizureErasureKSDEvent.OutputTuple,
  3265. SeizureErasureKSDEvent.OutputObject
  3266. >;
  3267. getEvent(
  3268. key: "SeizureSetupKSD"
  3269. ): TypedContractEvent<
  3270. SeizureSetupKSDEvent.InputTuple,
  3271. SeizureSetupKSDEvent.OutputTuple,
  3272. SeizureSetupKSDEvent.OutputObject
  3273. >;
  3274. getEvent(
  3275. key: "TokenErasableKSD"
  3276. ): TypedContractEvent<
  3277. TokenErasableKSDEvent.InputTuple,
  3278. TokenErasableKSDEvent.OutputTuple,
  3279. TokenErasableKSDEvent.OutputObject
  3280. >;
  3281. getEvent(
  3282. key: "TokenErasableKSD2"
  3283. ): TypedContractEvent<
  3284. TokenErasableKSD2Event.InputTuple,
  3285. TokenErasableKSD2Event.OutputTuple,
  3286. TokenErasableKSD2Event.OutputObject
  3287. >;
  3288. getEvent(
  3289. key: "TokenIssuableKSD"
  3290. ): TypedContractEvent<
  3291. TokenIssuableKSDEvent.InputTuple,
  3292. TokenIssuableKSDEvent.OutputTuple,
  3293. TokenIssuableKSDEvent.OutputObject
  3294. >;
  3295. getEvent(
  3296. key: "TokenIssuableKSD2"
  3297. ): TypedContractEvent<
  3298. TokenIssuableKSD2Event.InputTuple,
  3299. TokenIssuableKSD2Event.OutputTuple,
  3300. TokenIssuableKSD2Event.OutputObject
  3301. >;
  3302. getEvent(
  3303. key: "Transfer"
  3304. ): TypedContractEvent<
  3305. TransferEvent.InputTuple,
  3306. TransferEvent.OutputTuple,
  3307. TransferEvent.OutputObject
  3308. >;
  3309. getEvent(
  3310. key: "TransferByPartition"
  3311. ): TypedContractEvent<
  3312. TransferByPartitionEvent.InputTuple,
  3313. TransferByPartitionEvent.OutputTuple,
  3314. TransferByPartitionEvent.OutputObject
  3315. >;
  3316. getEvent(
  3317. key: "TransferKSD"
  3318. ): TypedContractEvent<
  3319. TransferKSDEvent.InputTuple,
  3320. TransferKSDEvent.OutputTuple,
  3321. TransferKSDEvent.OutputObject
  3322. >;
  3323. filters: {
  3324. "AuthorizedOperator(address,address)": TypedContractEvent<
  3325. AuthorizedOperatorEvent.InputTuple,
  3326. AuthorizedOperatorEvent.OutputTuple,
  3327. AuthorizedOperatorEvent.OutputObject
  3328. >;
  3329. AuthorizedOperator: TypedContractEvent<
  3330. AuthorizedOperatorEvent.InputTuple,
  3331. AuthorizedOperatorEvent.OutputTuple,
  3332. AuthorizedOperatorEvent.OutputObject
  3333. >;
  3334. "ControllerAuthorized(address,address)": TypedContractEvent<
  3335. ControllerAuthorizedEvent.InputTuple,
  3336. ControllerAuthorizedEvent.OutputTuple,
  3337. ControllerAuthorizedEvent.OutputObject
  3338. >;
  3339. ControllerAuthorized: TypedContractEvent<
  3340. ControllerAuthorizedEvent.InputTuple,
  3341. ControllerAuthorizedEvent.OutputTuple,
  3342. ControllerAuthorizedEvent.OutputObject
  3343. >;
  3344. "ControllerRedemption(address,address,uint256,bytes,bytes)": TypedContractEvent<
  3345. ControllerRedemptionEvent.InputTuple,
  3346. ControllerRedemptionEvent.OutputTuple,
  3347. ControllerRedemptionEvent.OutputObject
  3348. >;
  3349. ControllerRedemption: TypedContractEvent<
  3350. ControllerRedemptionEvent.InputTuple,
  3351. ControllerRedemptionEvent.OutputTuple,
  3352. ControllerRedemptionEvent.OutputObject
  3353. >;
  3354. "ControllerRedemptionByPartition(bytes32,address,address,uint256,bytes,bytes)": TypedContractEvent<
  3355. ControllerRedemptionByPartitionEvent.InputTuple,
  3356. ControllerRedemptionByPartitionEvent.OutputTuple,
  3357. ControllerRedemptionByPartitionEvent.OutputObject
  3358. >;
  3359. ControllerRedemptionByPartition: TypedContractEvent<
  3360. ControllerRedemptionByPartitionEvent.InputTuple,
  3361. ControllerRedemptionByPartitionEvent.OutputTuple,
  3362. ControllerRedemptionByPartitionEvent.OutputObject
  3363. >;
  3364. "ControllerRevoked(address,address)": TypedContractEvent<
  3365. ControllerRevokedEvent.InputTuple,
  3366. ControllerRevokedEvent.OutputTuple,
  3367. ControllerRevokedEvent.OutputObject
  3368. >;
  3369. ControllerRevoked: TypedContractEvent<
  3370. ControllerRevokedEvent.InputTuple,
  3371. ControllerRevokedEvent.OutputTuple,
  3372. ControllerRevokedEvent.OutputObject
  3373. >;
  3374. "ControllerTransfer(address,address,address,uint256,bytes,bytes)": TypedContractEvent<
  3375. ControllerTransferEvent.InputTuple,
  3376. ControllerTransferEvent.OutputTuple,
  3377. ControllerTransferEvent.OutputObject
  3378. >;
  3379. ControllerTransfer: TypedContractEvent<
  3380. ControllerTransferEvent.InputTuple,
  3381. ControllerTransferEvent.OutputTuple,
  3382. ControllerTransferEvent.OutputObject
  3383. >;
  3384. "ControllerTransferByPartition(bytes32,address,address,address,uint256,bytes,bytes)": TypedContractEvent<
  3385. ControllerTransferByPartitionEvent.InputTuple,
  3386. ControllerTransferByPartitionEvent.OutputTuple,
  3387. ControllerTransferByPartitionEvent.OutputObject
  3388. >;
  3389. ControllerTransferByPartition: TypedContractEvent<
  3390. ControllerTransferByPartitionEvent.InputTuple,
  3391. ControllerTransferByPartitionEvent.OutputTuple,
  3392. ControllerTransferByPartitionEvent.OutputObject
  3393. >;
  3394. "DisposalLimitErasureKSD(bytes32,address,bytes32,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3395. DisposalLimitErasureKSDEvent.InputTuple,
  3396. DisposalLimitErasureKSDEvent.OutputTuple,
  3397. DisposalLimitErasureKSDEvent.OutputObject
  3398. >;
  3399. DisposalLimitErasureKSD: TypedContractEvent<
  3400. DisposalLimitErasureKSDEvent.InputTuple,
  3401. DisposalLimitErasureKSDEvent.OutputTuple,
  3402. DisposalLimitErasureKSDEvent.OutputObject
  3403. >;
  3404. "DisposalLimitSetupKSD(bytes32,address,bytes32,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3405. DisposalLimitSetupKSDEvent.InputTuple,
  3406. DisposalLimitSetupKSDEvent.OutputTuple,
  3407. DisposalLimitSetupKSDEvent.OutputObject
  3408. >;
  3409. DisposalLimitSetupKSD: TypedContractEvent<
  3410. DisposalLimitSetupKSDEvent.InputTuple,
  3411. DisposalLimitSetupKSDEvent.OutputTuple,
  3412. DisposalLimitSetupKSDEvent.OutputObject
  3413. >;
  3414. "DocumentRemoved(string,string,bytes32)": TypedContractEvent<
  3415. DocumentRemovedEvent.InputTuple,
  3416. DocumentRemovedEvent.OutputTuple,
  3417. DocumentRemovedEvent.OutputObject
  3418. >;
  3419. DocumentRemoved: TypedContractEvent<
  3420. DocumentRemovedEvent.InputTuple,
  3421. DocumentRemovedEvent.OutputTuple,
  3422. DocumentRemovedEvent.OutputObject
  3423. >;
  3424. "DocumentUpdated(string,string,bytes32)": TypedContractEvent<
  3425. DocumentUpdatedEvent.InputTuple,
  3426. DocumentUpdatedEvent.OutputTuple,
  3427. DocumentUpdatedEvent.OutputObject
  3428. >;
  3429. DocumentUpdated: TypedContractEvent<
  3430. DocumentUpdatedEvent.InputTuple,
  3431. DocumentUpdatedEvent.OutputTuple,
  3432. DocumentUpdatedEvent.OutputObject
  3433. >;
  3434. "ErasureKSD(bytes32,address,bytes32,uint256,bytes32,bytes32,uint256)": TypedContractEvent<
  3435. ErasureKSDEvent.InputTuple,
  3436. ErasureKSDEvent.OutputTuple,
  3437. ErasureKSDEvent.OutputObject
  3438. >;
  3439. ErasureKSD: TypedContractEvent<
  3440. ErasureKSDEvent.InputTuple,
  3441. ErasureKSDEvent.OutputTuple,
  3442. ErasureKSDEvent.OutputObject
  3443. >;
  3444. "Initialized(uint64)": TypedContractEvent<
  3445. InitializedEvent.InputTuple,
  3446. InitializedEvent.OutputTuple,
  3447. InitializedEvent.OutputObject
  3448. >;
  3449. Initialized: TypedContractEvent<
  3450. InitializedEvent.InputTuple,
  3451. InitializedEvent.OutputTuple,
  3452. InitializedEvent.OutputObject
  3453. >;
  3454. "IssuanceRenunciation(address)": TypedContractEvent<
  3455. IssuanceRenunciationEvent.InputTuple,
  3456. IssuanceRenunciationEvent.OutputTuple,
  3457. IssuanceRenunciationEvent.OutputObject
  3458. >;
  3459. IssuanceRenunciation: TypedContractEvent<
  3460. IssuanceRenunciationEvent.InputTuple,
  3461. IssuanceRenunciationEvent.OutputTuple,
  3462. IssuanceRenunciationEvent.OutputObject
  3463. >;
  3464. "IssueKSD(bytes32,address,bytes32,uint256,bytes32,uint256)": TypedContractEvent<
  3465. IssueKSDEvent.InputTuple,
  3466. IssueKSDEvent.OutputTuple,
  3467. IssueKSDEvent.OutputObject
  3468. >;
  3469. IssueKSD: TypedContractEvent<
  3470. IssueKSDEvent.InputTuple,
  3471. IssueKSDEvent.OutputTuple,
  3472. IssueKSDEvent.OutputObject
  3473. >;
  3474. "Issued(address,address,uint256,bytes)": TypedContractEvent<
  3475. IssuedEvent.InputTuple,
  3476. IssuedEvent.OutputTuple,
  3477. IssuedEvent.OutputObject
  3478. >;
  3479. Issued: TypedContractEvent<
  3480. IssuedEvent.InputTuple,
  3481. IssuedEvent.OutputTuple,
  3482. IssuedEvent.OutputObject
  3483. >;
  3484. "IssuedByPartition(bytes32,address,address,uint256,bytes,bytes)": TypedContractEvent<
  3485. IssuedByPartitionEvent.InputTuple,
  3486. IssuedByPartitionEvent.OutputTuple,
  3487. IssuedByPartitionEvent.OutputObject
  3488. >;
  3489. IssuedByPartition: TypedContractEvent<
  3490. IssuedByPartitionEvent.InputTuple,
  3491. IssuedByPartitionEvent.OutputTuple,
  3492. IssuedByPartitionEvent.OutputObject
  3493. >;
  3494. "LockCreated(address,bytes32,bytes32,uint256)": TypedContractEvent<
  3495. LockCreatedEvent.InputTuple,
  3496. LockCreatedEvent.OutputTuple,
  3497. LockCreatedEvent.OutputObject
  3498. >;
  3499. LockCreated: TypedContractEvent<
  3500. LockCreatedEvent.InputTuple,
  3501. LockCreatedEvent.OutputTuple,
  3502. LockCreatedEvent.OutputObject
  3503. >;
  3504. "LockReleased(address,bytes32,bytes32,uint256)": TypedContractEvent<
  3505. LockReleasedEvent.InputTuple,
  3506. LockReleasedEvent.OutputTuple,
  3507. LockReleasedEvent.OutputObject
  3508. >;
  3509. LockReleased: TypedContractEvent<
  3510. LockReleasedEvent.InputTuple,
  3511. LockReleasedEvent.OutputTuple,
  3512. LockReleasedEvent.OutputObject
  3513. >;
  3514. "PledgeErasureKSD(bytes32,address,bytes32,address,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3515. PledgeErasureKSDEvent.InputTuple,
  3516. PledgeErasureKSDEvent.OutputTuple,
  3517. PledgeErasureKSDEvent.OutputObject
  3518. >;
  3519. PledgeErasureKSD: TypedContractEvent<
  3520. PledgeErasureKSDEvent.InputTuple,
  3521. PledgeErasureKSDEvent.OutputTuple,
  3522. PledgeErasureKSDEvent.OutputObject
  3523. >;
  3524. "PledgeSetupKSD(bytes32,address,bytes32,address,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3525. PledgeSetupKSDEvent.InputTuple,
  3526. PledgeSetupKSDEvent.OutputTuple,
  3527. PledgeSetupKSDEvent.OutputObject
  3528. >;
  3529. PledgeSetupKSD: TypedContractEvent<
  3530. PledgeSetupKSDEvent.InputTuple,
  3531. PledgeSetupKSDEvent.OutputTuple,
  3532. PledgeSetupKSDEvent.OutputObject
  3533. >;
  3534. "Redeemed(address,address,uint256,bytes)": TypedContractEvent<
  3535. RedeemedEvent.InputTuple,
  3536. RedeemedEvent.OutputTuple,
  3537. RedeemedEvent.OutputObject
  3538. >;
  3539. Redeemed: TypedContractEvent<
  3540. RedeemedEvent.InputTuple,
  3541. RedeemedEvent.OutputTuple,
  3542. RedeemedEvent.OutputObject
  3543. >;
  3544. "RedeemedByPartition(bytes32,address,address,uint256,bytes)": TypedContractEvent<
  3545. RedeemedByPartitionEvent.InputTuple,
  3546. RedeemedByPartitionEvent.OutputTuple,
  3547. RedeemedByPartitionEvent.OutputObject
  3548. >;
  3549. RedeemedByPartition: TypedContractEvent<
  3550. RedeemedByPartitionEvent.InputTuple,
  3551. RedeemedByPartitionEvent.OutputTuple,
  3552. RedeemedByPartitionEvent.OutputObject
  3553. >;
  3554. "RevokedOperator(address,address)": TypedContractEvent<
  3555. RevokedOperatorEvent.InputTuple,
  3556. RevokedOperatorEvent.OutputTuple,
  3557. RevokedOperatorEvent.OutputObject
  3558. >;
  3559. RevokedOperator: TypedContractEvent<
  3560. RevokedOperatorEvent.InputTuple,
  3561. RevokedOperatorEvent.OutputTuple,
  3562. RevokedOperatorEvent.OutputObject
  3563. >;
  3564. "RoleGranted(bytes32,address)": TypedContractEvent<
  3565. RoleGrantedEvent.InputTuple,
  3566. RoleGrantedEvent.OutputTuple,
  3567. RoleGrantedEvent.OutputObject
  3568. >;
  3569. RoleGranted: TypedContractEvent<
  3570. RoleGrantedEvent.InputTuple,
  3571. RoleGrantedEvent.OutputTuple,
  3572. RoleGrantedEvent.OutputObject
  3573. >;
  3574. "RoleRevoked(bytes32,address)": TypedContractEvent<
  3575. RoleRevokedEvent.InputTuple,
  3576. RoleRevokedEvent.OutputTuple,
  3577. RoleRevokedEvent.OutputObject
  3578. >;
  3579. RoleRevoked: TypedContractEvent<
  3580. RoleRevokedEvent.InputTuple,
  3581. RoleRevokedEvent.OutputTuple,
  3582. RoleRevokedEvent.OutputObject
  3583. >;
  3584. "SecurityTokenInitialized(uint8)": TypedContractEvent<
  3585. SecurityTokenInitializedEvent.InputTuple,
  3586. SecurityTokenInitializedEvent.OutputTuple,
  3587. SecurityTokenInitializedEvent.OutputObject
  3588. >;
  3589. SecurityTokenInitialized: TypedContractEvent<
  3590. SecurityTokenInitializedEvent.InputTuple,
  3591. SecurityTokenInitializedEvent.OutputTuple,
  3592. SecurityTokenInitializedEvent.OutputObject
  3593. >;
  3594. "SeizureErasureKSD(bytes32,address,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3595. SeizureErasureKSDEvent.InputTuple,
  3596. SeizureErasureKSDEvent.OutputTuple,
  3597. SeizureErasureKSDEvent.OutputObject
  3598. >;
  3599. SeizureErasureKSD: TypedContractEvent<
  3600. SeizureErasureKSDEvent.InputTuple,
  3601. SeizureErasureKSDEvent.OutputTuple,
  3602. SeizureErasureKSDEvent.OutputObject
  3603. >;
  3604. "SeizureSetupKSD(bytes32,address,bytes32,uint256,uint256,uint256)": TypedContractEvent<
  3605. SeizureSetupKSDEvent.InputTuple,
  3606. SeizureSetupKSDEvent.OutputTuple,
  3607. SeizureSetupKSDEvent.OutputObject
  3608. >;
  3609. SeizureSetupKSD: TypedContractEvent<
  3610. SeizureSetupKSDEvent.InputTuple,
  3611. SeizureSetupKSDEvent.OutputTuple,
  3612. SeizureSetupKSDEvent.OutputObject
  3613. >;
  3614. "TokenErasableKSD(bytes32,bytes32)": TypedContractEvent<
  3615. TokenErasableKSDEvent.InputTuple,
  3616. TokenErasableKSDEvent.OutputTuple,
  3617. TokenErasableKSDEvent.OutputObject
  3618. >;
  3619. TokenErasableKSD: TypedContractEvent<
  3620. TokenErasableKSDEvent.InputTuple,
  3621. TokenErasableKSDEvent.OutputTuple,
  3622. TokenErasableKSDEvent.OutputObject
  3623. >;
  3624. "TokenErasableKSD2(bytes32,uint256,bytes32[],uint256[],bytes32)": TypedContractEvent<
  3625. TokenErasableKSD2Event.InputTuple,
  3626. TokenErasableKSD2Event.OutputTuple,
  3627. TokenErasableKSD2Event.OutputObject
  3628. >;
  3629. TokenErasableKSD2: TypedContractEvent<
  3630. TokenErasableKSD2Event.InputTuple,
  3631. TokenErasableKSD2Event.OutputTuple,
  3632. TokenErasableKSD2Event.OutputObject
  3633. >;
  3634. "TokenIssuableKSD(bytes32,bytes32)": TypedContractEvent<
  3635. TokenIssuableKSDEvent.InputTuple,
  3636. TokenIssuableKSDEvent.OutputTuple,
  3637. TokenIssuableKSDEvent.OutputObject
  3638. >;
  3639. TokenIssuableKSD: TypedContractEvent<
  3640. TokenIssuableKSDEvent.InputTuple,
  3641. TokenIssuableKSDEvent.OutputTuple,
  3642. TokenIssuableKSDEvent.OutputObject
  3643. >;
  3644. "TokenIssuableKSD2(bytes32,uint256,bytes32[],uint256[],bytes32)": TypedContractEvent<
  3645. TokenIssuableKSD2Event.InputTuple,
  3646. TokenIssuableKSD2Event.OutputTuple,
  3647. TokenIssuableKSD2Event.OutputObject
  3648. >;
  3649. TokenIssuableKSD2: TypedContractEvent<
  3650. TokenIssuableKSD2Event.InputTuple,
  3651. TokenIssuableKSD2Event.OutputTuple,
  3652. TokenIssuableKSD2Event.OutputObject
  3653. >;
  3654. "Transfer(address,address,uint256)": TypedContractEvent<
  3655. TransferEvent.InputTuple,
  3656. TransferEvent.OutputTuple,
  3657. TransferEvent.OutputObject
  3658. >;
  3659. Transfer: TypedContractEvent<
  3660. TransferEvent.InputTuple,
  3661. TransferEvent.OutputTuple,
  3662. TransferEvent.OutputObject
  3663. >;
  3664. "TransferByPartition(bytes32,bytes32,address,address,address,uint256,bytes,bytes)": TypedContractEvent<
  3665. TransferByPartitionEvent.InputTuple,
  3666. TransferByPartitionEvent.OutputTuple,
  3667. TransferByPartitionEvent.OutputObject
  3668. >;
  3669. TransferByPartition: TypedContractEvent<
  3670. TransferByPartitionEvent.InputTuple,
  3671. TransferByPartitionEvent.OutputTuple,
  3672. TransferByPartitionEvent.OutputObject
  3673. >;
  3674. "TransferKSD(bytes32,address,bytes32,address,bytes32,uint256,bytes32,uint256,uint256)": TypedContractEvent<
  3675. TransferKSDEvent.InputTuple,
  3676. TransferKSDEvent.OutputTuple,
  3677. TransferKSDEvent.OutputObject
  3678. >;
  3679. TransferKSD: TypedContractEvent<
  3680. TransferKSDEvent.InputTuple,
  3681. TransferKSDEvent.OutputTuple,
  3682. TransferKSDEvent.OutputObject
  3683. >;
  3684. };
  3685. }