juno-network 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -223,709 +223,277 @@ export declare namespace cosmwasm {
223
223
  AccessTypeParam: {
224
224
  encode(message: _50.AccessTypeParam, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
225
225
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.AccessTypeParam;
226
- fromPartial(object: {
227
- value?: _50.AccessType;
228
- }): _50.AccessTypeParam;
226
+ fromPartial(object: any): _50.AccessTypeParam;
229
227
  };
230
228
  AccessConfig: {
231
229
  encode(message: _50.AccessConfig, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
232
230
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.AccessConfig;
233
- fromPartial(object: {
234
- permission?: _50.AccessType;
235
- address?: string;
236
- }): _50.AccessConfig;
231
+ fromPartial(object: any): _50.AccessConfig;
237
232
  };
238
233
  Params: {
239
234
  encode(message: _50.Params, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
240
235
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.Params;
241
- fromPartial(object: {
242
- codeUploadAccess?: {
243
- permission?: _50.AccessType;
244
- address?: string;
245
- };
246
- instantiateDefaultPermission?: _50.AccessType;
247
- maxWasmCodeSize?: any;
248
- }): _50.Params;
236
+ fromPartial(object: any): _50.Params;
249
237
  };
250
238
  CodeInfo: {
251
239
  encode(message: _50.CodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
252
240
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.CodeInfo;
253
- fromPartial(object: {
254
- codeHash?: Uint8Array;
255
- creator?: string;
256
- instantiateConfig?: {
257
- permission?: _50.AccessType;
258
- address?: string;
259
- };
260
- }): _50.CodeInfo;
241
+ fromPartial(object: any): _50.CodeInfo;
261
242
  };
262
243
  ContractInfo: {
263
244
  encode(message: _50.ContractInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
264
245
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.ContractInfo;
265
- fromPartial(object: {
266
- codeId?: any;
267
- creator?: string;
268
- admin?: string;
269
- label?: string;
270
- created?: {
271
- blockHeight?: any;
272
- txIndex?: any;
273
- };
274
- ibcPortId?: string;
275
- extension?: {
276
- typeUrl?: string;
277
- value?: Uint8Array;
278
- };
279
- }): _50.ContractInfo;
246
+ fromPartial(object: any): _50.ContractInfo;
280
247
  };
281
248
  ContractCodeHistoryEntry: {
282
249
  encode(message: _50.ContractCodeHistoryEntry, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
283
250
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.ContractCodeHistoryEntry;
284
- fromPartial(object: {
285
- operation?: _50.ContractCodeHistoryOperationType;
286
- codeId?: any;
287
- updated?: {
288
- blockHeight?: any;
289
- txIndex?: any;
290
- };
291
- msg?: Uint8Array;
292
- }): _50.ContractCodeHistoryEntry;
251
+ fromPartial(object: any): _50.ContractCodeHistoryEntry;
293
252
  };
294
253
  AbsoluteTxPosition: {
295
254
  encode(message: _50.AbsoluteTxPosition, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
296
255
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.AbsoluteTxPosition;
297
- fromPartial(object: {
298
- blockHeight?: any;
299
- txIndex?: any;
300
- }): _50.AbsoluteTxPosition;
256
+ fromPartial(object: any): _50.AbsoluteTxPosition;
301
257
  };
302
258
  Model: {
303
259
  encode(message: _50.Model, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
304
260
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _50.Model;
305
- fromPartial(object: {
306
- key?: Uint8Array;
307
- value?: Uint8Array;
308
- }): _50.Model;
261
+ fromPartial(object: any): _50.Model;
309
262
  };
310
263
  MsgStoreCode: {
311
264
  encode(message: _49.MsgStoreCode, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
312
265
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgStoreCode;
313
- fromPartial(object: {
314
- sender?: string;
315
- wasmByteCode?: Uint8Array;
316
- instantiatePermission?: {
317
- permission?: _50.AccessType;
318
- address?: string;
319
- };
320
- }): _49.MsgStoreCode;
266
+ fromPartial(object: any): _49.MsgStoreCode;
321
267
  };
322
268
  MsgStoreCodeResponse: {
323
269
  encode(message: _49.MsgStoreCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
324
270
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgStoreCodeResponse;
325
- fromPartial(object: {
326
- codeId?: any;
327
- }): _49.MsgStoreCodeResponse;
271
+ fromPartial(object: any): _49.MsgStoreCodeResponse;
328
272
  };
329
273
  MsgInstantiateContract: {
330
274
  encode(message: _49.MsgInstantiateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
331
275
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgInstantiateContract;
332
- fromPartial(object: {
333
- sender?: string;
334
- admin?: string;
335
- codeId?: any;
336
- label?: string;
337
- msg?: Uint8Array;
338
- funds?: {
339
- denom?: string;
340
- amount?: string;
341
- }[];
342
- }): _49.MsgInstantiateContract;
276
+ fromPartial(object: any): _49.MsgInstantiateContract;
343
277
  };
344
278
  MsgInstantiateContractResponse: {
345
279
  encode(message: _49.MsgInstantiateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
346
280
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgInstantiateContractResponse;
347
- fromPartial(object: {
348
- address?: string;
349
- data?: Uint8Array;
350
- }): _49.MsgInstantiateContractResponse;
281
+ fromPartial(object: any): _49.MsgInstantiateContractResponse;
351
282
  };
352
283
  MsgExecuteContract: {
353
284
  encode(message: _49.MsgExecuteContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
354
285
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgExecuteContract;
355
- fromPartial(object: {
356
- sender?: string;
357
- contract?: string;
358
- msg?: Uint8Array;
359
- funds?: {
360
- denom?: string;
361
- amount?: string;
362
- }[];
363
- }): _49.MsgExecuteContract;
286
+ fromPartial(object: any): _49.MsgExecuteContract;
364
287
  };
365
288
  MsgExecuteContractResponse: {
366
289
  encode(message: _49.MsgExecuteContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
367
290
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgExecuteContractResponse;
368
- fromPartial(object: {
369
- data?: Uint8Array;
370
- }): _49.MsgExecuteContractResponse;
291
+ fromPartial(object: any): _49.MsgExecuteContractResponse;
371
292
  };
372
293
  MsgMigrateContract: {
373
294
  encode(message: _49.MsgMigrateContract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
374
295
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgMigrateContract;
375
- fromPartial(object: {
376
- sender?: string;
377
- contract?: string;
378
- codeId?: any;
379
- msg?: Uint8Array;
380
- }): _49.MsgMigrateContract;
296
+ fromPartial(object: any): _49.MsgMigrateContract;
381
297
  };
382
298
  MsgMigrateContractResponse: {
383
299
  encode(message: _49.MsgMigrateContractResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
384
300
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgMigrateContractResponse;
385
- fromPartial(object: {
386
- data?: Uint8Array;
387
- }): _49.MsgMigrateContractResponse;
301
+ fromPartial(object: any): _49.MsgMigrateContractResponse;
388
302
  };
389
303
  MsgUpdateAdmin: {
390
304
  encode(message: _49.MsgUpdateAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
391
305
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgUpdateAdmin;
392
- fromPartial(object: {
393
- sender?: string;
394
- newAdmin?: string;
395
- contract?: string;
396
- }): _49.MsgUpdateAdmin;
306
+ fromPartial(object: any): _49.MsgUpdateAdmin;
397
307
  };
398
308
  MsgUpdateAdminResponse: {
399
309
  encode(_: _49.MsgUpdateAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
400
310
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgUpdateAdminResponse;
401
- fromPartial(_: {}): _49.MsgUpdateAdminResponse;
311
+ fromPartial(_: any): _49.MsgUpdateAdminResponse;
402
312
  };
403
313
  MsgClearAdmin: {
404
314
  encode(message: _49.MsgClearAdmin, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
405
315
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgClearAdmin;
406
- fromPartial(object: {
407
- sender?: string;
408
- contract?: string;
409
- }): _49.MsgClearAdmin;
316
+ fromPartial(object: any): _49.MsgClearAdmin;
410
317
  };
411
318
  MsgClearAdminResponse: {
412
319
  encode(_: _49.MsgClearAdminResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
413
320
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _49.MsgClearAdminResponse;
414
- fromPartial(_: {}): _49.MsgClearAdminResponse;
321
+ fromPartial(_: any): _49.MsgClearAdminResponse;
415
322
  };
416
323
  QueryContractInfoRequest: {
417
324
  encode(message: _48.QueryContractInfoRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
418
325
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractInfoRequest;
419
- fromPartial(object: {
420
- address?: string;
421
- }): _48.QueryContractInfoRequest;
326
+ fromPartial(object: any): _48.QueryContractInfoRequest;
422
327
  };
423
328
  QueryContractInfoResponse: {
424
329
  encode(message: _48.QueryContractInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
425
330
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractInfoResponse;
426
- fromPartial(object: {
427
- address?: string;
428
- contractInfo?: {
429
- codeId?: any;
430
- creator?: string;
431
- admin?: string;
432
- label?: string;
433
- created?: {
434
- blockHeight?: any;
435
- txIndex?: any;
436
- };
437
- ibcPortId?: string;
438
- extension?: {
439
- typeUrl?: string;
440
- value?: Uint8Array;
441
- };
442
- };
443
- }): _48.QueryContractInfoResponse;
331
+ fromPartial(object: any): _48.QueryContractInfoResponse;
444
332
  };
445
333
  QueryContractHistoryRequest: {
446
334
  encode(message: _48.QueryContractHistoryRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
447
335
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractHistoryRequest;
448
- fromPartial(object: {
449
- address?: string;
450
- pagination?: {
451
- key?: Uint8Array;
452
- offset?: any;
453
- limit?: any;
454
- countTotal?: boolean;
455
- reverse?: boolean;
456
- };
457
- }): _48.QueryContractHistoryRequest;
336
+ fromPartial(object: any): _48.QueryContractHistoryRequest;
458
337
  };
459
338
  QueryContractHistoryResponse: {
460
339
  encode(message: _48.QueryContractHistoryResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
461
340
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractHistoryResponse;
462
- fromPartial(object: {
463
- entries?: {
464
- operation?: _50.ContractCodeHistoryOperationType;
465
- codeId?: any;
466
- updated?: {
467
- blockHeight?: any;
468
- txIndex?: any;
469
- };
470
- msg?: Uint8Array;
471
- }[];
472
- pagination?: {
473
- nextKey?: Uint8Array;
474
- total?: any;
475
- };
476
- }): _48.QueryContractHistoryResponse;
341
+ fromPartial(object: any): _48.QueryContractHistoryResponse;
477
342
  };
478
343
  QueryContractsByCodeRequest: {
479
344
  encode(message: _48.QueryContractsByCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
480
345
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractsByCodeRequest;
481
- fromPartial(object: {
482
- codeId?: any;
483
- pagination?: {
484
- key?: Uint8Array;
485
- offset?: any;
486
- limit?: any;
487
- countTotal?: boolean;
488
- reverse?: boolean;
489
- };
490
- }): _48.QueryContractsByCodeRequest;
346
+ fromPartial(object: any): _48.QueryContractsByCodeRequest;
491
347
  };
492
348
  QueryContractsByCodeResponse: {
493
349
  encode(message: _48.QueryContractsByCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
494
350
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryContractsByCodeResponse;
495
- fromPartial(object: {
496
- contracts?: string[];
497
- pagination?: {
498
- nextKey?: Uint8Array;
499
- total?: any;
500
- };
501
- }): _48.QueryContractsByCodeResponse;
351
+ fromPartial(object: any): _48.QueryContractsByCodeResponse;
502
352
  };
503
353
  QueryAllContractStateRequest: {
504
354
  encode(message: _48.QueryAllContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
505
355
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryAllContractStateRequest;
506
- fromPartial(object: {
507
- address?: string;
508
- pagination?: {
509
- key?: Uint8Array;
510
- offset?: any;
511
- limit?: any;
512
- countTotal?: boolean;
513
- reverse?: boolean;
514
- };
515
- }): _48.QueryAllContractStateRequest;
356
+ fromPartial(object: any): _48.QueryAllContractStateRequest;
516
357
  };
517
358
  QueryAllContractStateResponse: {
518
359
  encode(message: _48.QueryAllContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
519
360
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryAllContractStateResponse;
520
- fromPartial(object: {
521
- models?: {
522
- key?: Uint8Array;
523
- value?: Uint8Array;
524
- }[];
525
- pagination?: {
526
- nextKey?: Uint8Array;
527
- total?: any;
528
- };
529
- }): _48.QueryAllContractStateResponse;
361
+ fromPartial(object: any): _48.QueryAllContractStateResponse;
530
362
  };
531
363
  QueryRawContractStateRequest: {
532
364
  encode(message: _48.QueryRawContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
533
365
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryRawContractStateRequest;
534
- fromPartial(object: {
535
- address?: string;
536
- queryData?: Uint8Array;
537
- }): _48.QueryRawContractStateRequest;
366
+ fromPartial(object: any): _48.QueryRawContractStateRequest;
538
367
  };
539
368
  QueryRawContractStateResponse: {
540
369
  encode(message: _48.QueryRawContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
541
370
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryRawContractStateResponse;
542
- fromPartial(object: {
543
- data?: Uint8Array;
544
- }): _48.QueryRawContractStateResponse;
371
+ fromPartial(object: any): _48.QueryRawContractStateResponse;
545
372
  };
546
373
  QuerySmartContractStateRequest: {
547
374
  encode(message: _48.QuerySmartContractStateRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
548
375
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QuerySmartContractStateRequest;
549
- fromPartial(object: {
550
- address?: string;
551
- queryData?: Uint8Array;
552
- }): _48.QuerySmartContractStateRequest;
376
+ fromPartial(object: any): _48.QuerySmartContractStateRequest;
553
377
  };
554
378
  QuerySmartContractStateResponse: {
555
379
  encode(message: _48.QuerySmartContractStateResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
556
380
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QuerySmartContractStateResponse;
557
- fromPartial(object: {
558
- data?: Uint8Array;
559
- }): _48.QuerySmartContractStateResponse;
381
+ fromPartial(object: any): _48.QuerySmartContractStateResponse;
560
382
  };
561
383
  QueryCodeRequest: {
562
384
  encode(message: _48.QueryCodeRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
563
385
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryCodeRequest;
564
- fromPartial(object: {
565
- codeId?: any;
566
- }): _48.QueryCodeRequest;
386
+ fromPartial(object: any): _48.QueryCodeRequest;
567
387
  };
568
388
  CodeInfoResponse: {
569
389
  encode(message: _48.CodeInfoResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
570
390
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.CodeInfoResponse;
571
- fromPartial(object: {
572
- codeId?: any;
573
- creator?: string;
574
- dataHash?: Uint8Array;
575
- }): _48.CodeInfoResponse;
391
+ fromPartial(object: any): _48.CodeInfoResponse;
576
392
  };
577
393
  QueryCodeResponse: {
578
394
  encode(message: _48.QueryCodeResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
579
395
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryCodeResponse;
580
- fromPartial(object: {
581
- codeInfo?: {
582
- codeId?: any;
583
- creator?: string;
584
- dataHash?: Uint8Array;
585
- };
586
- data?: Uint8Array;
587
- }): _48.QueryCodeResponse;
396
+ fromPartial(object: any): _48.QueryCodeResponse;
588
397
  };
589
398
  QueryCodesRequest: {
590
399
  encode(message: _48.QueryCodesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
591
400
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryCodesRequest;
592
- fromPartial(object: {
593
- pagination?: {
594
- key?: Uint8Array;
595
- offset?: any;
596
- limit?: any;
597
- countTotal?: boolean;
598
- reverse?: boolean;
599
- };
600
- }): _48.QueryCodesRequest;
401
+ fromPartial(object: any): _48.QueryCodesRequest;
601
402
  };
602
403
  QueryCodesResponse: {
603
404
  encode(message: _48.QueryCodesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
604
405
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryCodesResponse;
605
- fromPartial(object: {
606
- codeInfos?: {
607
- codeId?: any;
608
- creator?: string;
609
- dataHash?: Uint8Array;
610
- }[];
611
- pagination?: {
612
- nextKey?: Uint8Array;
613
- total?: any;
614
- };
615
- }): _48.QueryCodesResponse;
406
+ fromPartial(object: any): _48.QueryCodesResponse;
616
407
  };
617
408
  QueryPinnedCodesRequest: {
618
409
  encode(message: _48.QueryPinnedCodesRequest, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
619
410
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryPinnedCodesRequest;
620
- fromPartial(object: {
621
- pagination?: {
622
- key?: Uint8Array;
623
- offset?: any;
624
- limit?: any;
625
- countTotal?: boolean;
626
- reverse?: boolean;
627
- };
628
- }): _48.QueryPinnedCodesRequest;
411
+ fromPartial(object: any): _48.QueryPinnedCodesRequest;
629
412
  };
630
413
  QueryPinnedCodesResponse: {
631
414
  encode(message: _48.QueryPinnedCodesResponse, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
632
415
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _48.QueryPinnedCodesResponse;
633
- fromPartial(object: {
634
- codeIds?: any[];
635
- pagination?: {
636
- nextKey?: Uint8Array;
637
- total?: any;
638
- };
639
- }): _48.QueryPinnedCodesResponse;
416
+ fromPartial(object: any): _48.QueryPinnedCodesResponse;
640
417
  };
641
418
  StoreCodeProposal: {
642
419
  encode(message: _47.StoreCodeProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
643
420
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.StoreCodeProposal;
644
- fromPartial(object: {
645
- title?: string;
646
- description?: string;
647
- runAs?: string;
648
- wasmByteCode?: Uint8Array;
649
- instantiatePermission?: {
650
- permission?: _50.AccessType;
651
- address?: string;
652
- };
653
- }): _47.StoreCodeProposal;
421
+ fromPartial(object: any): _47.StoreCodeProposal;
654
422
  };
655
423
  InstantiateContractProposal: {
656
424
  encode(message: _47.InstantiateContractProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
657
425
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.InstantiateContractProposal;
658
- fromPartial(object: {
659
- title?: string;
660
- description?: string;
661
- runAs?: string;
662
- admin?: string;
663
- codeId?: any;
664
- label?: string;
665
- msg?: Uint8Array;
666
- funds?: {
667
- denom?: string;
668
- amount?: string;
669
- }[];
670
- }): _47.InstantiateContractProposal;
426
+ fromPartial(object: any): _47.InstantiateContractProposal;
671
427
  };
672
428
  MigrateContractProposal: {
673
429
  encode(message: _47.MigrateContractProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
674
430
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.MigrateContractProposal;
675
- fromPartial(object: {
676
- title?: string;
677
- description?: string;
678
- contract?: string;
679
- codeId?: any;
680
- msg?: Uint8Array;
681
- }): _47.MigrateContractProposal;
431
+ fromPartial(object: any): _47.MigrateContractProposal;
682
432
  };
683
433
  SudoContractProposal: {
684
434
  encode(message: _47.SudoContractProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
685
435
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.SudoContractProposal;
686
- fromPartial(object: {
687
- title?: string;
688
- description?: string;
689
- contract?: string;
690
- msg?: Uint8Array;
691
- }): _47.SudoContractProposal;
436
+ fromPartial(object: any): _47.SudoContractProposal;
692
437
  };
693
438
  ExecuteContractProposal: {
694
439
  encode(message: _47.ExecuteContractProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
695
440
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.ExecuteContractProposal;
696
- fromPartial(object: {
697
- title?: string;
698
- description?: string;
699
- runAs?: string;
700
- contract?: string;
701
- msg?: Uint8Array;
702
- funds?: {
703
- denom?: string;
704
- amount?: string;
705
- }[];
706
- }): _47.ExecuteContractProposal;
441
+ fromPartial(object: any): _47.ExecuteContractProposal;
707
442
  };
708
443
  UpdateAdminProposal: {
709
444
  encode(message: _47.UpdateAdminProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
710
445
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.UpdateAdminProposal;
711
- fromPartial(object: {
712
- title?: string;
713
- description?: string;
714
- newAdmin?: string;
715
- contract?: string;
716
- }): _47.UpdateAdminProposal;
446
+ fromPartial(object: any): _47.UpdateAdminProposal;
717
447
  };
718
448
  ClearAdminProposal: {
719
449
  encode(message: _47.ClearAdminProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
720
450
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.ClearAdminProposal;
721
- fromPartial(object: {
722
- title?: string;
723
- description?: string;
724
- contract?: string;
725
- }): _47.ClearAdminProposal;
451
+ fromPartial(object: any): _47.ClearAdminProposal;
726
452
  };
727
453
  PinCodesProposal: {
728
454
  encode(message: _47.PinCodesProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
729
455
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.PinCodesProposal;
730
- fromPartial(object: {
731
- title?: string;
732
- description?: string;
733
- codeIds?: any[];
734
- }): _47.PinCodesProposal;
456
+ fromPartial(object: any): _47.PinCodesProposal;
735
457
  };
736
458
  UnpinCodesProposal: {
737
459
  encode(message: _47.UnpinCodesProposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
738
460
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _47.UnpinCodesProposal;
739
- fromPartial(object: {
740
- title?: string;
741
- description?: string;
742
- codeIds?: any[];
743
- }): _47.UnpinCodesProposal;
461
+ fromPartial(object: any): _47.UnpinCodesProposal;
744
462
  };
745
463
  MsgIBCSend: {
746
464
  encode(message: _46.MsgIBCSend, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
747
465
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _46.MsgIBCSend;
748
- fromPartial(object: {
749
- channel?: string;
750
- timeoutHeight?: any;
751
- timeoutTimestamp?: any;
752
- data?: Uint8Array;
753
- }): _46.MsgIBCSend;
466
+ fromPartial(object: any): _46.MsgIBCSend;
754
467
  };
755
468
  MsgIBCCloseChannel: {
756
469
  encode(message: _46.MsgIBCCloseChannel, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
757
470
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _46.MsgIBCCloseChannel;
758
- fromPartial(object: {
759
- channel?: string;
760
- }): _46.MsgIBCCloseChannel;
471
+ fromPartial(object: any): _46.MsgIBCCloseChannel;
761
472
  };
762
473
  GenesisState: {
763
474
  encode(message: _45.GenesisState, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
764
475
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _45.GenesisState;
765
- fromPartial(object: {
766
- params?: {
767
- codeUploadAccess?: {
768
- permission?: _50.AccessType;
769
- address?: string;
770
- };
771
- instantiateDefaultPermission?: _50.AccessType;
772
- maxWasmCodeSize?: any;
773
- };
774
- codes?: {
775
- codeId?: any;
776
- codeInfo?: {
777
- codeHash?: Uint8Array;
778
- creator?: string;
779
- instantiateConfig?: {
780
- permission?: _50.AccessType;
781
- address?: string;
782
- };
783
- };
784
- codeBytes?: Uint8Array;
785
- pinned?: boolean;
786
- }[];
787
- contracts?: {
788
- contractAddress?: string;
789
- contractInfo?: {
790
- codeId?: any;
791
- creator?: string;
792
- admin?: string;
793
- label?: string;
794
- created?: {
795
- blockHeight?: any;
796
- txIndex?: any;
797
- };
798
- ibcPortId?: string;
799
- extension?: {
800
- typeUrl?: string;
801
- value?: Uint8Array;
802
- };
803
- };
804
- contractState?: {
805
- key?: Uint8Array;
806
- value?: Uint8Array;
807
- }[];
808
- }[];
809
- sequences?: {
810
- idKey?: Uint8Array;
811
- value?: any;
812
- }[];
813
- genMsgs?: {
814
- storeCode?: {
815
- sender?: string;
816
- wasmByteCode?: Uint8Array;
817
- instantiatePermission?: {
818
- permission?: _50.AccessType;
819
- address?: string;
820
- };
821
- };
822
- instantiateContract?: {
823
- sender?: string;
824
- admin?: string;
825
- codeId?: any;
826
- label?: string;
827
- msg?: Uint8Array;
828
- funds?: {
829
- denom?: string;
830
- amount?: string;
831
- }[];
832
- };
833
- executeContract?: {
834
- sender?: string;
835
- contract?: string;
836
- msg?: Uint8Array;
837
- funds?: {
838
- denom?: string;
839
- amount?: string;
840
- }[];
841
- };
842
- }[];
843
- }): _45.GenesisState;
476
+ fromPartial(object: any): _45.GenesisState;
844
477
  };
845
478
  GenesisState_GenMsgs: {
846
479
  encode(message: _45.GenesisState_GenMsgs, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
847
480
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _45.GenesisState_GenMsgs;
848
- fromPartial(object: {
849
- storeCode?: {
850
- sender?: string;
851
- wasmByteCode?: Uint8Array;
852
- instantiatePermission?: {
853
- permission?: _50.AccessType;
854
- address?: string;
855
- };
856
- };
857
- instantiateContract?: {
858
- sender?: string;
859
- admin?: string;
860
- codeId?: any;
861
- label?: string;
862
- msg?: Uint8Array;
863
- funds?: {
864
- denom?: string;
865
- amount?: string;
866
- }[];
867
- };
868
- executeContract?: {
869
- sender?: string;
870
- contract?: string;
871
- msg?: Uint8Array;
872
- funds?: {
873
- denom?: string;
874
- amount?: string;
875
- }[];
876
- };
877
- }): _45.GenesisState_GenMsgs;
481
+ fromPartial(object: any): _45.GenesisState_GenMsgs;
878
482
  };
879
483
  Code: {
880
484
  encode(message: _45.Code, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
881
485
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _45.Code;
882
- fromPartial(object: {
883
- codeId?: any;
884
- codeInfo?: {
885
- codeHash?: Uint8Array;
886
- creator?: string;
887
- instantiateConfig?: {
888
- permission?: _50.AccessType;
889
- address?: string;
890
- };
891
- };
892
- codeBytes?: Uint8Array;
893
- pinned?: boolean;
894
- }): _45.Code;
486
+ fromPartial(object: any): _45.Code;
895
487
  };
896
488
  Contract: {
897
489
  encode(message: _45.Contract, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
898
490
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _45.Contract;
899
- fromPartial(object: {
900
- contractAddress?: string;
901
- contractInfo?: {
902
- codeId?: any;
903
- creator?: string;
904
- admin?: string;
905
- label?: string;
906
- created?: {
907
- blockHeight?: any;
908
- txIndex?: any;
909
- };
910
- ibcPortId?: string;
911
- extension?: {
912
- typeUrl?: string;
913
- value?: Uint8Array;
914
- };
915
- };
916
- contractState?: {
917
- key?: Uint8Array;
918
- value?: Uint8Array;
919
- }[];
920
- }): _45.Contract;
491
+ fromPartial(object: any): _45.Contract;
921
492
  };
922
493
  Sequence: {
923
494
  encode(message: _45.Sequence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
924
495
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _45.Sequence;
925
- fromPartial(object: {
926
- idKey?: Uint8Array;
927
- value?: any;
928
- }): _45.Sequence;
496
+ fromPartial(object: any): _45.Sequence;
929
497
  };
930
498
  };
931
499
  }
@@ -961,7 +529,7 @@ export declare namespace cosmwasm {
961
529
  };
962
530
  }>;
963
531
  createRPCQueryClient: ({ rpcEndpoint }: {
964
- rpcEndpoint: string;
532
+ rpcEndpoint: string | import("@cosmjs/tendermint-rpc").HttpEndpoint;
965
533
  }) => Promise<{
966
534
  cosmos: {
967
535
  authz: {