@moonbeam-network/xcm-builder 1.0.0-dev.264 → 1.0.0-dev.266
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.
- package/build/index.d.ts +1216 -57
- package/build/index.mjs +1233 -104
- package/build/index.mjs.map +1 -1
- package/package.json +3 -3
package/build/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Chain, AnyParachain, AssetAmount, ChainAssetId, ChainAsset, AnyChain
|
|
1
|
+
import { Chain, AnyParachain, AssetAmount, ChainAssetId, ChainAsset, AnyChain } from '@moonbeam-network/xcm-types';
|
|
2
2
|
import { ApiPromise } from '@polkadot/api';
|
|
3
3
|
import { FrameSystemAccountInfo, StagingXcmV3MultiLocation } from '@polkadot/types/lookup';
|
|
4
4
|
import { Struct, u128, Enum } from '@polkadot/types';
|
|
@@ -32,15 +32,18 @@ declare class BaseConfig {
|
|
|
32
32
|
constructor({ module, func }: BaseConfigConstructorParams);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
+
type QueryType = 'query' | 'call';
|
|
35
36
|
interface QueryConfigConstructorParams extends BaseConfigConstructorParams {
|
|
37
|
+
queryType?: QueryType;
|
|
36
38
|
args?: unknown[];
|
|
37
39
|
transform: (data: any) => Promise<bigint>;
|
|
38
40
|
}
|
|
39
41
|
declare class SubstrateQueryConfig extends BaseConfig {
|
|
40
42
|
readonly args: unknown[];
|
|
43
|
+
readonly queryType: QueryType;
|
|
41
44
|
readonly transform: (data: unknown) => Promise<bigint>;
|
|
42
45
|
static is(obj: unknown): obj is SubstrateQueryConfig;
|
|
43
|
-
constructor({ args, transform, ...other }: QueryConfigConstructorParams);
|
|
46
|
+
constructor({ args, transform, queryType, ...other }: QueryConfigConstructorParams);
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
type AssetMinConfigBuilder = ConfigBuilder<SubstrateQueryConfig, AssetMinConfigBuilderParams>;
|
|
@@ -69,14 +72,16 @@ declare function foreignAssets$1(): {
|
|
|
69
72
|
interface ContractConfigConstructorParams extends BaseConfigConstructorParams {
|
|
70
73
|
address: string;
|
|
71
74
|
abi: Abi;
|
|
72
|
-
args:
|
|
75
|
+
args: unknown[];
|
|
76
|
+
value?: bigint;
|
|
73
77
|
}
|
|
74
78
|
declare class ContractConfig extends BaseConfig {
|
|
75
79
|
readonly address: string;
|
|
76
80
|
readonly abi: Abi;
|
|
77
|
-
readonly args:
|
|
81
|
+
readonly args: unknown[];
|
|
82
|
+
readonly value?: bigint;
|
|
78
83
|
static is(obj: unknown): obj is ContractConfig;
|
|
79
|
-
constructor({ address, abi, args, ...other }: ContractConfigConstructorParams);
|
|
84
|
+
constructor({ address, abi, args, value, ...other }: ContractConfigConstructorParams);
|
|
80
85
|
encodeFunctionData(): `0x${string}`;
|
|
81
86
|
}
|
|
82
87
|
|
|
@@ -443,7 +448,7 @@ declare function polkadotXcm$1(): {
|
|
|
443
448
|
};
|
|
444
449
|
};
|
|
445
450
|
|
|
446
|
-
declare function xcmPallet(): {
|
|
451
|
+
declare function xcmPallet$1(): {
|
|
447
452
|
limitedReserveTransferAssets: (parents?: Parents) => {
|
|
448
453
|
here: () => ExtrinsicConfigBuilder;
|
|
449
454
|
};
|
|
@@ -474,7 +479,7 @@ declare function ExtrinsicBuilder(): {
|
|
|
474
479
|
xTokens: typeof xTokens;
|
|
475
480
|
xTransfer: typeof xTransfer;
|
|
476
481
|
polkadotXcm: typeof polkadotXcm$1;
|
|
477
|
-
xcmPallet: typeof xcmPallet;
|
|
482
|
+
xcmPallet: typeof xcmPallet$1;
|
|
478
483
|
};
|
|
479
484
|
|
|
480
485
|
interface SubstrateCallConfigConstructorParams {
|
|
@@ -488,15 +493,24 @@ declare class SubstrateCallConfig {
|
|
|
488
493
|
constructor({ api, call }: SubstrateCallConfigConstructorParams);
|
|
489
494
|
}
|
|
490
495
|
|
|
491
|
-
type FeeConfigBuilder = ConfigBuilder<SubstrateCallConfig, FeeConfigBuilderParams>;
|
|
496
|
+
type FeeConfigBuilder = ConfigBuilder<SubstrateCallConfig | ContractConfig, FeeConfigBuilderParams>;
|
|
497
|
+
type BridgeFeeConfigBuilder = ConfigBuilder<SubstrateQueryConfig | ContractConfig, BridgeFeeConfigBuilderParams>;
|
|
492
498
|
interface FeeConfigBuilderParams {
|
|
493
499
|
address: string;
|
|
494
500
|
api: ApiPromise;
|
|
495
501
|
asset: ChainAsset;
|
|
496
|
-
|
|
502
|
+
balance?: AssetAmount;
|
|
503
|
+
destination: AnyChain;
|
|
497
504
|
feeAsset: ChainAsset;
|
|
498
505
|
source: AnyChain;
|
|
499
506
|
}
|
|
507
|
+
interface BridgeFeeConfigBuilderParams {
|
|
508
|
+
asset: ChainAsset;
|
|
509
|
+
address: string;
|
|
510
|
+
balance?: AssetAmount;
|
|
511
|
+
destination: AnyChain;
|
|
512
|
+
source: AnyChain;
|
|
513
|
+
}
|
|
500
514
|
interface XcmPaymentFeeProps {
|
|
501
515
|
isAssetReserveChain: boolean;
|
|
502
516
|
shouldTransferAssetPrecedeFeeAsset?: boolean;
|
|
@@ -510,6 +524,14 @@ interface MoonbeamRuntimeXcmConfigAssetType extends Enum {
|
|
|
510
524
|
}
|
|
511
525
|
type GetVersionedAssetId = (params: FeeConfigBuilderParams) => Promise<object> | object;
|
|
512
526
|
|
|
527
|
+
declare function gateway(): {
|
|
528
|
+
quoteSendTokenFee(): BridgeFeeConfigBuilder;
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
declare function outboundQueueApi(): {
|
|
532
|
+
calculateFee: () => BridgeFeeConfigBuilder;
|
|
533
|
+
};
|
|
534
|
+
|
|
513
535
|
declare function xcmPaymentApi(): {
|
|
514
536
|
fromCurrencyIdToLocations: (options: XcmPaymentFeeProps) => FeeConfigBuilder;
|
|
515
537
|
fromAssetIdQuery: (options: XcmPaymentFeeProps) => FeeConfigBuilder;
|
|
@@ -526,6 +548,8 @@ declare function xcmPaymentApi(): {
|
|
|
526
548
|
};
|
|
527
549
|
|
|
528
550
|
declare function FeeBuilder(): {
|
|
551
|
+
gateway: typeof gateway;
|
|
552
|
+
outboundQueueApi: typeof outboundQueueApi;
|
|
529
553
|
xcmPaymentApi: typeof xcmPaymentApi;
|
|
530
554
|
};
|
|
531
555
|
|
|
@@ -575,58 +599,1192 @@ interface EventMonitoringConfig {
|
|
|
575
599
|
checkDestination: DestinationChecker;
|
|
576
600
|
}
|
|
577
601
|
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
type WormholeTransferFunctions = 'tokenTransfer';
|
|
584
|
-
interface WormholeFunctionArgs {
|
|
585
|
-
token: TokenId;
|
|
602
|
+
type SnowbridgeFunctions = 'sendToken';
|
|
603
|
+
interface SnowbridgeFunctionArgs {
|
|
604
|
+
tokenAddress: string;
|
|
605
|
+
destinationAddress: string;
|
|
606
|
+
destinationParaId: number;
|
|
586
607
|
amount: bigint;
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
protocol: TokenTransfer.Protocol;
|
|
590
|
-
payload?: Uint8Array;
|
|
608
|
+
bridgeFeeAmount: bigint;
|
|
609
|
+
requiresApproval: boolean;
|
|
591
610
|
}
|
|
592
|
-
interface
|
|
593
|
-
args:
|
|
594
|
-
func:
|
|
611
|
+
interface SnowbridgeConfigConstructorParams {
|
|
612
|
+
args: SnowbridgeFunctionArgs;
|
|
613
|
+
func: SnowbridgeFunctions;
|
|
595
614
|
}
|
|
596
|
-
declare class
|
|
597
|
-
readonly args:
|
|
598
|
-
readonly func:
|
|
599
|
-
|
|
600
|
-
|
|
615
|
+
declare class SnowbridgeConfig {
|
|
616
|
+
readonly args: SnowbridgeFunctionArgs;
|
|
617
|
+
readonly func: SnowbridgeFunctions;
|
|
618
|
+
readonly provider: "snowbridge";
|
|
619
|
+
static is(obj: unknown): obj is SnowbridgeConfig;
|
|
620
|
+
constructor({ args, func }: SnowbridgeConfigConstructorParams);
|
|
601
621
|
}
|
|
602
622
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
declare
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
}
|
|
629
|
-
|
|
623
|
+
/**
|
|
624
|
+
* TODO mjm this can be configured for each chain.
|
|
625
|
+
*/
|
|
626
|
+
declare const GATEWAY_CONTRACT_ADDRESS = "0x503B4D684074888EB7fe82D4c5AB25E57de0e85c";
|
|
627
|
+
declare const GATEWAY_ABI: readonly [{
|
|
628
|
+
readonly inputs: readonly [{
|
|
629
|
+
readonly internalType: "address";
|
|
630
|
+
readonly name: "beefyClient";
|
|
631
|
+
readonly type: "address";
|
|
632
|
+
}, {
|
|
633
|
+
readonly internalType: "address";
|
|
634
|
+
readonly name: "agentExecutor";
|
|
635
|
+
readonly type: "address";
|
|
636
|
+
}, {
|
|
637
|
+
readonly internalType: "ParaID";
|
|
638
|
+
readonly name: "bridgeHubParaID";
|
|
639
|
+
readonly type: "uint32";
|
|
640
|
+
}, {
|
|
641
|
+
readonly internalType: "bytes32";
|
|
642
|
+
readonly name: "bridgeHubAgentID";
|
|
643
|
+
readonly type: "bytes32";
|
|
644
|
+
}, {
|
|
645
|
+
readonly internalType: "uint8";
|
|
646
|
+
readonly name: "foreignTokenDecimals";
|
|
647
|
+
readonly type: "uint8";
|
|
648
|
+
}, {
|
|
649
|
+
readonly internalType: "uint128";
|
|
650
|
+
readonly name: "maxDestinationFee";
|
|
651
|
+
readonly type: "uint128";
|
|
652
|
+
}];
|
|
653
|
+
readonly stateMutability: "nonpayable";
|
|
654
|
+
readonly type: "constructor";
|
|
655
|
+
}, {
|
|
656
|
+
readonly inputs: readonly [];
|
|
657
|
+
readonly name: "AgentAlreadyCreated";
|
|
658
|
+
readonly type: "error";
|
|
659
|
+
}, {
|
|
660
|
+
readonly inputs: readonly [];
|
|
661
|
+
readonly name: "AgentDoesNotExist";
|
|
662
|
+
readonly type: "error";
|
|
663
|
+
}, {
|
|
664
|
+
readonly inputs: readonly [];
|
|
665
|
+
readonly name: "CantSetMiddlewareToSameAddress";
|
|
666
|
+
readonly type: "error";
|
|
667
|
+
}, {
|
|
668
|
+
readonly inputs: readonly [];
|
|
669
|
+
readonly name: "CantSetMiddlewareToZeroAddress";
|
|
670
|
+
readonly type: "error";
|
|
671
|
+
}, {
|
|
672
|
+
readonly inputs: readonly [];
|
|
673
|
+
readonly name: "ChannelAlreadyCreated";
|
|
674
|
+
readonly type: "error";
|
|
675
|
+
}, {
|
|
676
|
+
readonly inputs: readonly [];
|
|
677
|
+
readonly name: "ChannelDoesNotExist";
|
|
678
|
+
readonly type: "error";
|
|
679
|
+
}, {
|
|
680
|
+
readonly inputs: readonly [];
|
|
681
|
+
readonly name: "Disabled";
|
|
682
|
+
readonly type: "error";
|
|
683
|
+
}, {
|
|
684
|
+
readonly inputs: readonly [{
|
|
685
|
+
readonly internalType: "uint256";
|
|
686
|
+
readonly name: "epoch";
|
|
687
|
+
readonly type: "uint256";
|
|
688
|
+
}, {
|
|
689
|
+
readonly internalType: "uint256";
|
|
690
|
+
readonly name: "eraIndex";
|
|
691
|
+
readonly type: "uint256";
|
|
692
|
+
}, {
|
|
693
|
+
readonly internalType: "address";
|
|
694
|
+
readonly name: "tokenAddress";
|
|
695
|
+
readonly type: "address";
|
|
696
|
+
}, {
|
|
697
|
+
readonly internalType: "uint256";
|
|
698
|
+
readonly name: "totalPointsToken";
|
|
699
|
+
readonly type: "uint256";
|
|
700
|
+
}, {
|
|
701
|
+
readonly internalType: "uint256";
|
|
702
|
+
readonly name: "totalTokensInflated";
|
|
703
|
+
readonly type: "uint256";
|
|
704
|
+
}, {
|
|
705
|
+
readonly internalType: "bytes32";
|
|
706
|
+
readonly name: "rewardsRoot";
|
|
707
|
+
readonly type: "bytes32";
|
|
708
|
+
}, {
|
|
709
|
+
readonly internalType: "bytes";
|
|
710
|
+
readonly name: "errorBytes";
|
|
711
|
+
readonly type: "bytes";
|
|
712
|
+
}];
|
|
713
|
+
readonly name: "EUnableToProcessRewardsB";
|
|
714
|
+
readonly type: "error";
|
|
715
|
+
}, {
|
|
716
|
+
readonly inputs: readonly [{
|
|
717
|
+
readonly internalType: "uint256";
|
|
718
|
+
readonly name: "epoch";
|
|
719
|
+
readonly type: "uint256";
|
|
720
|
+
}, {
|
|
721
|
+
readonly internalType: "uint256";
|
|
722
|
+
readonly name: "eraIndex";
|
|
723
|
+
readonly type: "uint256";
|
|
724
|
+
}, {
|
|
725
|
+
readonly internalType: "address";
|
|
726
|
+
readonly name: "tokenAddress";
|
|
727
|
+
readonly type: "address";
|
|
728
|
+
}, {
|
|
729
|
+
readonly internalType: "uint256";
|
|
730
|
+
readonly name: "totalPointsToken";
|
|
731
|
+
readonly type: "uint256";
|
|
732
|
+
}, {
|
|
733
|
+
readonly internalType: "uint256";
|
|
734
|
+
readonly name: "totalTokensInflated";
|
|
735
|
+
readonly type: "uint256";
|
|
736
|
+
}, {
|
|
737
|
+
readonly internalType: "bytes32";
|
|
738
|
+
readonly name: "rewardsRoot";
|
|
739
|
+
readonly type: "bytes32";
|
|
740
|
+
}, {
|
|
741
|
+
readonly internalType: "string";
|
|
742
|
+
readonly name: "errorString";
|
|
743
|
+
readonly type: "string";
|
|
744
|
+
}];
|
|
745
|
+
readonly name: "EUnableToProcessRewardsS";
|
|
746
|
+
readonly type: "error";
|
|
747
|
+
}, {
|
|
748
|
+
readonly inputs: readonly [];
|
|
749
|
+
readonly name: "FeePaymentToLow";
|
|
750
|
+
readonly type: "error";
|
|
751
|
+
}, {
|
|
752
|
+
readonly inputs: readonly [];
|
|
753
|
+
readonly name: "InvalidAgentExecutionPayload";
|
|
754
|
+
readonly type: "error";
|
|
755
|
+
}, {
|
|
756
|
+
readonly inputs: readonly [];
|
|
757
|
+
readonly name: "InvalidChannelUpdate";
|
|
758
|
+
readonly type: "error";
|
|
759
|
+
}, {
|
|
760
|
+
readonly inputs: readonly [];
|
|
761
|
+
readonly name: "InvalidCodeHash";
|
|
762
|
+
readonly type: "error";
|
|
763
|
+
}, {
|
|
764
|
+
readonly inputs: readonly [];
|
|
765
|
+
readonly name: "InvalidConstructorParams";
|
|
766
|
+
readonly type: "error";
|
|
767
|
+
}, {
|
|
768
|
+
readonly inputs: readonly [];
|
|
769
|
+
readonly name: "InvalidContract";
|
|
770
|
+
readonly type: "error";
|
|
771
|
+
}, {
|
|
772
|
+
readonly inputs: readonly [];
|
|
773
|
+
readonly name: "InvalidNonce";
|
|
774
|
+
readonly type: "error";
|
|
775
|
+
}, {
|
|
776
|
+
readonly inputs: readonly [];
|
|
777
|
+
readonly name: "InvalidProof";
|
|
778
|
+
readonly type: "error";
|
|
779
|
+
}, {
|
|
780
|
+
readonly inputs: readonly [];
|
|
781
|
+
readonly name: "MiddlewareNotSet";
|
|
782
|
+
readonly type: "error";
|
|
783
|
+
}, {
|
|
784
|
+
readonly inputs: readonly [];
|
|
785
|
+
readonly name: "NativeTransferFailed";
|
|
786
|
+
readonly type: "error";
|
|
787
|
+
}, {
|
|
788
|
+
readonly inputs: readonly [];
|
|
789
|
+
readonly name: "NotEnoughGas";
|
|
790
|
+
readonly type: "error";
|
|
791
|
+
}, {
|
|
792
|
+
readonly inputs: readonly [];
|
|
793
|
+
readonly name: "Operators__OperatorsKeysCannotBeEmpty";
|
|
794
|
+
readonly type: "error";
|
|
795
|
+
}, {
|
|
796
|
+
readonly inputs: readonly [];
|
|
797
|
+
readonly name: "Operators__OperatorsLengthTooLong";
|
|
798
|
+
readonly type: "error";
|
|
799
|
+
}, {
|
|
800
|
+
readonly inputs: readonly [{
|
|
801
|
+
readonly internalType: "uint256";
|
|
802
|
+
readonly name: "x";
|
|
803
|
+
readonly type: "uint256";
|
|
804
|
+
}, {
|
|
805
|
+
readonly internalType: "uint256";
|
|
806
|
+
readonly name: "y";
|
|
807
|
+
readonly type: "uint256";
|
|
808
|
+
}];
|
|
809
|
+
readonly name: "PRBMath_MulDiv18_Overflow";
|
|
810
|
+
readonly type: "error";
|
|
811
|
+
}, {
|
|
812
|
+
readonly inputs: readonly [{
|
|
813
|
+
readonly internalType: "uint256";
|
|
814
|
+
readonly name: "x";
|
|
815
|
+
readonly type: "uint256";
|
|
816
|
+
}, {
|
|
817
|
+
readonly internalType: "uint256";
|
|
818
|
+
readonly name: "y";
|
|
819
|
+
readonly type: "uint256";
|
|
820
|
+
}, {
|
|
821
|
+
readonly internalType: "uint256";
|
|
822
|
+
readonly name: "denominator";
|
|
823
|
+
readonly type: "uint256";
|
|
824
|
+
}];
|
|
825
|
+
readonly name: "PRBMath_MulDiv_Overflow";
|
|
826
|
+
readonly type: "error";
|
|
827
|
+
}, {
|
|
828
|
+
readonly inputs: readonly [{
|
|
829
|
+
readonly internalType: "uint256";
|
|
830
|
+
readonly name: "x";
|
|
831
|
+
readonly type: "uint256";
|
|
832
|
+
}];
|
|
833
|
+
readonly name: "PRBMath_UD60x18_Convert_Overflow";
|
|
834
|
+
readonly type: "error";
|
|
835
|
+
}, {
|
|
836
|
+
readonly inputs: readonly [{
|
|
837
|
+
readonly internalType: "UD60x18";
|
|
838
|
+
readonly name: "x";
|
|
839
|
+
readonly type: "uint256";
|
|
840
|
+
}];
|
|
841
|
+
readonly name: "PRBMath_UD60x18_Exp2_InputTooBig";
|
|
842
|
+
readonly type: "error";
|
|
843
|
+
}, {
|
|
844
|
+
readonly inputs: readonly [{
|
|
845
|
+
readonly internalType: "UD60x18";
|
|
846
|
+
readonly name: "x";
|
|
847
|
+
readonly type: "uint256";
|
|
848
|
+
}];
|
|
849
|
+
readonly name: "PRBMath_UD60x18_Log_InputTooSmall";
|
|
850
|
+
readonly type: "error";
|
|
851
|
+
}, {
|
|
852
|
+
readonly inputs: readonly [];
|
|
853
|
+
readonly name: "TokenNotRegistered";
|
|
854
|
+
readonly type: "error";
|
|
855
|
+
}, {
|
|
856
|
+
readonly inputs: readonly [];
|
|
857
|
+
readonly name: "Unauthorized";
|
|
858
|
+
readonly type: "error";
|
|
859
|
+
}, {
|
|
860
|
+
readonly anonymous: false;
|
|
861
|
+
readonly inputs: readonly [{
|
|
862
|
+
readonly indexed: false;
|
|
863
|
+
readonly internalType: "bytes32";
|
|
864
|
+
readonly name: "agentID";
|
|
865
|
+
readonly type: "bytes32";
|
|
866
|
+
}, {
|
|
867
|
+
readonly indexed: false;
|
|
868
|
+
readonly internalType: "address";
|
|
869
|
+
readonly name: "agent";
|
|
870
|
+
readonly type: "address";
|
|
871
|
+
}];
|
|
872
|
+
readonly name: "AgentCreated";
|
|
873
|
+
readonly type: "event";
|
|
874
|
+
}, {
|
|
875
|
+
readonly anonymous: false;
|
|
876
|
+
readonly inputs: readonly [{
|
|
877
|
+
readonly indexed: true;
|
|
878
|
+
readonly internalType: "bytes32";
|
|
879
|
+
readonly name: "agentID";
|
|
880
|
+
readonly type: "bytes32";
|
|
881
|
+
}, {
|
|
882
|
+
readonly indexed: true;
|
|
883
|
+
readonly internalType: "address";
|
|
884
|
+
readonly name: "recipient";
|
|
885
|
+
readonly type: "address";
|
|
886
|
+
}, {
|
|
887
|
+
readonly indexed: false;
|
|
888
|
+
readonly internalType: "uint256";
|
|
889
|
+
readonly name: "amount";
|
|
890
|
+
readonly type: "uint256";
|
|
891
|
+
}];
|
|
892
|
+
readonly name: "AgentFundsWithdrawn";
|
|
893
|
+
readonly type: "event";
|
|
894
|
+
}, {
|
|
895
|
+
readonly anonymous: false;
|
|
896
|
+
readonly inputs: readonly [{
|
|
897
|
+
readonly indexed: true;
|
|
898
|
+
readonly internalType: "ChannelID";
|
|
899
|
+
readonly name: "channelID";
|
|
900
|
+
readonly type: "bytes32";
|
|
901
|
+
}];
|
|
902
|
+
readonly name: "ChannelCreated";
|
|
903
|
+
readonly type: "event";
|
|
904
|
+
}, {
|
|
905
|
+
readonly anonymous: false;
|
|
906
|
+
readonly inputs: readonly [{
|
|
907
|
+
readonly indexed: true;
|
|
908
|
+
readonly internalType: "ChannelID";
|
|
909
|
+
readonly name: "channelID";
|
|
910
|
+
readonly type: "bytes32";
|
|
911
|
+
}];
|
|
912
|
+
readonly name: "ChannelUpdated";
|
|
913
|
+
readonly type: "event";
|
|
914
|
+
}, {
|
|
915
|
+
readonly anonymous: false;
|
|
916
|
+
readonly inputs: readonly [{
|
|
917
|
+
readonly indexed: true;
|
|
918
|
+
readonly internalType: "bytes32";
|
|
919
|
+
readonly name: "tokenID";
|
|
920
|
+
readonly type: "bytes32";
|
|
921
|
+
}, {
|
|
922
|
+
readonly indexed: false;
|
|
923
|
+
readonly internalType: "address";
|
|
924
|
+
readonly name: "token";
|
|
925
|
+
readonly type: "address";
|
|
926
|
+
}];
|
|
927
|
+
readonly name: "ForeignTokenRegistered";
|
|
928
|
+
readonly type: "event";
|
|
929
|
+
}, {
|
|
930
|
+
readonly anonymous: false;
|
|
931
|
+
readonly inputs: readonly [{
|
|
932
|
+
readonly indexed: true;
|
|
933
|
+
readonly internalType: "ChannelID";
|
|
934
|
+
readonly name: "channelID";
|
|
935
|
+
readonly type: "bytes32";
|
|
936
|
+
}, {
|
|
937
|
+
readonly indexed: false;
|
|
938
|
+
readonly internalType: "uint64";
|
|
939
|
+
readonly name: "nonce";
|
|
940
|
+
readonly type: "uint64";
|
|
941
|
+
}, {
|
|
942
|
+
readonly indexed: true;
|
|
943
|
+
readonly internalType: "bytes32";
|
|
944
|
+
readonly name: "messageID";
|
|
945
|
+
readonly type: "bytes32";
|
|
946
|
+
}, {
|
|
947
|
+
readonly indexed: false;
|
|
948
|
+
readonly internalType: "bool";
|
|
949
|
+
readonly name: "success";
|
|
950
|
+
readonly type: "bool";
|
|
951
|
+
}];
|
|
952
|
+
readonly name: "InboundMessageDispatched";
|
|
953
|
+
readonly type: "event";
|
|
954
|
+
}, {
|
|
955
|
+
readonly anonymous: false;
|
|
956
|
+
readonly inputs: readonly [{
|
|
957
|
+
readonly indexed: true;
|
|
958
|
+
readonly internalType: "address";
|
|
959
|
+
readonly name: "previousMiddleware";
|
|
960
|
+
readonly type: "address";
|
|
961
|
+
}, {
|
|
962
|
+
readonly indexed: true;
|
|
963
|
+
readonly internalType: "address";
|
|
964
|
+
readonly name: "newMiddleware";
|
|
965
|
+
readonly type: "address";
|
|
966
|
+
}];
|
|
967
|
+
readonly name: "MiddlewareChanged";
|
|
968
|
+
readonly type: "event";
|
|
969
|
+
}, {
|
|
970
|
+
readonly anonymous: false;
|
|
971
|
+
readonly inputs: readonly [{
|
|
972
|
+
readonly indexed: false;
|
|
973
|
+
readonly internalType: "enum OperatingMode";
|
|
974
|
+
readonly name: "mode";
|
|
975
|
+
readonly type: "uint8";
|
|
976
|
+
}];
|
|
977
|
+
readonly name: "OperatingModeChanged";
|
|
978
|
+
readonly type: "event";
|
|
979
|
+
}, {
|
|
980
|
+
readonly anonymous: false;
|
|
981
|
+
readonly inputs: readonly [{
|
|
982
|
+
readonly indexed: true;
|
|
983
|
+
readonly internalType: "uint256";
|
|
984
|
+
readonly name: "validatorsCount";
|
|
985
|
+
readonly type: "uint256";
|
|
986
|
+
}, {
|
|
987
|
+
readonly indexed: false;
|
|
988
|
+
readonly internalType: "bytes";
|
|
989
|
+
readonly name: "payload";
|
|
990
|
+
readonly type: "bytes";
|
|
991
|
+
}];
|
|
992
|
+
readonly name: "OperatorsDataCreated";
|
|
993
|
+
readonly type: "event";
|
|
994
|
+
}, {
|
|
995
|
+
readonly anonymous: false;
|
|
996
|
+
readonly inputs: readonly [{
|
|
997
|
+
readonly indexed: true;
|
|
998
|
+
readonly internalType: "ChannelID";
|
|
999
|
+
readonly name: "channelID";
|
|
1000
|
+
readonly type: "bytes32";
|
|
1001
|
+
}, {
|
|
1002
|
+
readonly indexed: false;
|
|
1003
|
+
readonly internalType: "uint64";
|
|
1004
|
+
readonly name: "nonce";
|
|
1005
|
+
readonly type: "uint64";
|
|
1006
|
+
}, {
|
|
1007
|
+
readonly indexed: true;
|
|
1008
|
+
readonly internalType: "bytes32";
|
|
1009
|
+
readonly name: "messageID";
|
|
1010
|
+
readonly type: "bytes32";
|
|
1011
|
+
}, {
|
|
1012
|
+
readonly indexed: false;
|
|
1013
|
+
readonly internalType: "bytes";
|
|
1014
|
+
readonly name: "payload";
|
|
1015
|
+
readonly type: "bytes";
|
|
1016
|
+
}];
|
|
1017
|
+
readonly name: "OutboundMessageAccepted";
|
|
1018
|
+
readonly type: "event";
|
|
1019
|
+
}, {
|
|
1020
|
+
readonly anonymous: false;
|
|
1021
|
+
readonly inputs: readonly [{
|
|
1022
|
+
readonly indexed: true;
|
|
1023
|
+
readonly internalType: "address";
|
|
1024
|
+
readonly name: "previousOwner";
|
|
1025
|
+
readonly type: "address";
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly indexed: true;
|
|
1028
|
+
readonly internalType: "address";
|
|
1029
|
+
readonly name: "newOwner";
|
|
1030
|
+
readonly type: "address";
|
|
1031
|
+
}];
|
|
1032
|
+
readonly name: "OwnershipTransferred";
|
|
1033
|
+
readonly type: "event";
|
|
1034
|
+
}, {
|
|
1035
|
+
readonly anonymous: false;
|
|
1036
|
+
readonly inputs: readonly [];
|
|
1037
|
+
readonly name: "PricingParametersChanged";
|
|
1038
|
+
readonly type: "event";
|
|
1039
|
+
}, {
|
|
1040
|
+
readonly anonymous: false;
|
|
1041
|
+
readonly inputs: readonly [{
|
|
1042
|
+
readonly indexed: false;
|
|
1043
|
+
readonly internalType: "address";
|
|
1044
|
+
readonly name: "token";
|
|
1045
|
+
readonly type: "address";
|
|
1046
|
+
}];
|
|
1047
|
+
readonly name: "TokenRegistrationSent";
|
|
1048
|
+
readonly type: "event";
|
|
1049
|
+
}, {
|
|
1050
|
+
readonly anonymous: false;
|
|
1051
|
+
readonly inputs: readonly [{
|
|
1052
|
+
readonly indexed: true;
|
|
1053
|
+
readonly internalType: "address";
|
|
1054
|
+
readonly name: "token";
|
|
1055
|
+
readonly type: "address";
|
|
1056
|
+
}, {
|
|
1057
|
+
readonly indexed: true;
|
|
1058
|
+
readonly internalType: "address";
|
|
1059
|
+
readonly name: "sender";
|
|
1060
|
+
readonly type: "address";
|
|
1061
|
+
}, {
|
|
1062
|
+
readonly indexed: true;
|
|
1063
|
+
readonly internalType: "ParaID";
|
|
1064
|
+
readonly name: "destinationChain";
|
|
1065
|
+
readonly type: "uint32";
|
|
1066
|
+
}, {
|
|
1067
|
+
readonly components: readonly [{
|
|
1068
|
+
readonly internalType: "enum Kind";
|
|
1069
|
+
readonly name: "kind";
|
|
1070
|
+
readonly type: "uint8";
|
|
1071
|
+
}, {
|
|
1072
|
+
readonly internalType: "bytes";
|
|
1073
|
+
readonly name: "data";
|
|
1074
|
+
readonly type: "bytes";
|
|
1075
|
+
}];
|
|
1076
|
+
readonly indexed: false;
|
|
1077
|
+
readonly internalType: "struct MultiAddress";
|
|
1078
|
+
readonly name: "destinationAddress";
|
|
1079
|
+
readonly type: "tuple";
|
|
1080
|
+
}, {
|
|
1081
|
+
readonly indexed: false;
|
|
1082
|
+
readonly internalType: "uint128";
|
|
1083
|
+
readonly name: "amount";
|
|
1084
|
+
readonly type: "uint128";
|
|
1085
|
+
}];
|
|
1086
|
+
readonly name: "TokenSent";
|
|
1087
|
+
readonly type: "event";
|
|
1088
|
+
}, {
|
|
1089
|
+
readonly anonymous: false;
|
|
1090
|
+
readonly inputs: readonly [];
|
|
1091
|
+
readonly name: "TokenTransferFeesChanged";
|
|
1092
|
+
readonly type: "event";
|
|
1093
|
+
}, {
|
|
1094
|
+
readonly anonymous: false;
|
|
1095
|
+
readonly inputs: readonly [{
|
|
1096
|
+
readonly indexed: true;
|
|
1097
|
+
readonly internalType: "bytes32";
|
|
1098
|
+
readonly name: "operatorKey";
|
|
1099
|
+
readonly type: "bytes32";
|
|
1100
|
+
}, {
|
|
1101
|
+
readonly indexed: false;
|
|
1102
|
+
readonly internalType: "uint256";
|
|
1103
|
+
readonly name: "slashFranction";
|
|
1104
|
+
readonly type: "uint256";
|
|
1105
|
+
}, {
|
|
1106
|
+
readonly indexed: true;
|
|
1107
|
+
readonly internalType: "uint256";
|
|
1108
|
+
readonly name: "epoch";
|
|
1109
|
+
readonly type: "uint256";
|
|
1110
|
+
}, {
|
|
1111
|
+
readonly indexed: false;
|
|
1112
|
+
readonly internalType: "bytes";
|
|
1113
|
+
readonly name: "error";
|
|
1114
|
+
readonly type: "bytes";
|
|
1115
|
+
}];
|
|
1116
|
+
readonly name: "UnableToProcessIndividualSlashB";
|
|
1117
|
+
readonly type: "event";
|
|
1118
|
+
}, {
|
|
1119
|
+
readonly anonymous: false;
|
|
1120
|
+
readonly inputs: readonly [{
|
|
1121
|
+
readonly indexed: true;
|
|
1122
|
+
readonly internalType: "bytes32";
|
|
1123
|
+
readonly name: "operatorKey";
|
|
1124
|
+
readonly type: "bytes32";
|
|
1125
|
+
}, {
|
|
1126
|
+
readonly indexed: false;
|
|
1127
|
+
readonly internalType: "uint256";
|
|
1128
|
+
readonly name: "slashFranction";
|
|
1129
|
+
readonly type: "uint256";
|
|
1130
|
+
}, {
|
|
1131
|
+
readonly indexed: true;
|
|
1132
|
+
readonly internalType: "uint256";
|
|
1133
|
+
readonly name: "epoch";
|
|
1134
|
+
readonly type: "uint256";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly indexed: false;
|
|
1137
|
+
readonly internalType: "string";
|
|
1138
|
+
readonly name: "error";
|
|
1139
|
+
readonly type: "string";
|
|
1140
|
+
}];
|
|
1141
|
+
readonly name: "UnableToProcessIndividualSlashS";
|
|
1142
|
+
readonly type: "event";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly anonymous: false;
|
|
1145
|
+
readonly inputs: readonly [{
|
|
1146
|
+
readonly indexed: false;
|
|
1147
|
+
readonly internalType: "bytes";
|
|
1148
|
+
readonly name: "error";
|
|
1149
|
+
readonly type: "bytes";
|
|
1150
|
+
}];
|
|
1151
|
+
readonly name: "UnableToProcessRewardsMessageB";
|
|
1152
|
+
readonly type: "event";
|
|
1153
|
+
}, {
|
|
1154
|
+
readonly anonymous: false;
|
|
1155
|
+
readonly inputs: readonly [{
|
|
1156
|
+
readonly indexed: false;
|
|
1157
|
+
readonly internalType: "string";
|
|
1158
|
+
readonly name: "error";
|
|
1159
|
+
readonly type: "string";
|
|
1160
|
+
}];
|
|
1161
|
+
readonly name: "UnableToProcessRewardsMessageS";
|
|
1162
|
+
readonly type: "event";
|
|
1163
|
+
}, {
|
|
1164
|
+
readonly anonymous: false;
|
|
1165
|
+
readonly inputs: readonly [{
|
|
1166
|
+
readonly indexed: false;
|
|
1167
|
+
readonly internalType: "bytes";
|
|
1168
|
+
readonly name: "error";
|
|
1169
|
+
readonly type: "bytes";
|
|
1170
|
+
}];
|
|
1171
|
+
readonly name: "UnableToProcessSlashMessageB";
|
|
1172
|
+
readonly type: "event";
|
|
1173
|
+
}, {
|
|
1174
|
+
readonly anonymous: false;
|
|
1175
|
+
readonly inputs: readonly [{
|
|
1176
|
+
readonly indexed: false;
|
|
1177
|
+
readonly internalType: "string";
|
|
1178
|
+
readonly name: "error";
|
|
1179
|
+
readonly type: "string";
|
|
1180
|
+
}];
|
|
1181
|
+
readonly name: "UnableToProcessSlashMessageS";
|
|
1182
|
+
readonly type: "event";
|
|
1183
|
+
}, {
|
|
1184
|
+
readonly anonymous: false;
|
|
1185
|
+
readonly inputs: readonly [{
|
|
1186
|
+
readonly indexed: true;
|
|
1187
|
+
readonly internalType: "address";
|
|
1188
|
+
readonly name: "implementation";
|
|
1189
|
+
readonly type: "address";
|
|
1190
|
+
}];
|
|
1191
|
+
readonly name: "Upgraded";
|
|
1192
|
+
readonly type: "event";
|
|
1193
|
+
}, {
|
|
1194
|
+
readonly inputs: readonly [];
|
|
1195
|
+
readonly name: "AGENT_EXECUTOR";
|
|
1196
|
+
readonly outputs: readonly [{
|
|
1197
|
+
readonly internalType: "address";
|
|
1198
|
+
readonly name: "";
|
|
1199
|
+
readonly type: "address";
|
|
1200
|
+
}];
|
|
1201
|
+
readonly stateMutability: "view";
|
|
1202
|
+
readonly type: "function";
|
|
1203
|
+
}, {
|
|
1204
|
+
readonly inputs: readonly [];
|
|
1205
|
+
readonly name: "BEEFY_CLIENT";
|
|
1206
|
+
readonly outputs: readonly [{
|
|
1207
|
+
readonly internalType: "address";
|
|
1208
|
+
readonly name: "";
|
|
1209
|
+
readonly type: "address";
|
|
1210
|
+
}];
|
|
1211
|
+
readonly stateMutability: "view";
|
|
1212
|
+
readonly type: "function";
|
|
1213
|
+
}, {
|
|
1214
|
+
readonly inputs: readonly [{
|
|
1215
|
+
readonly internalType: "bytes";
|
|
1216
|
+
readonly name: "data";
|
|
1217
|
+
readonly type: "bytes";
|
|
1218
|
+
}];
|
|
1219
|
+
readonly name: "agentExecute";
|
|
1220
|
+
readonly outputs: readonly [];
|
|
1221
|
+
readonly stateMutability: "nonpayable";
|
|
1222
|
+
readonly type: "function";
|
|
1223
|
+
}, {
|
|
1224
|
+
readonly inputs: readonly [{
|
|
1225
|
+
readonly internalType: "bytes32";
|
|
1226
|
+
readonly name: "agentID";
|
|
1227
|
+
readonly type: "bytes32";
|
|
1228
|
+
}];
|
|
1229
|
+
readonly name: "agentOf";
|
|
1230
|
+
readonly outputs: readonly [{
|
|
1231
|
+
readonly internalType: "address";
|
|
1232
|
+
readonly name: "";
|
|
1233
|
+
readonly type: "address";
|
|
1234
|
+
}];
|
|
1235
|
+
readonly stateMutability: "view";
|
|
1236
|
+
readonly type: "function";
|
|
1237
|
+
}, {
|
|
1238
|
+
readonly inputs: readonly [{
|
|
1239
|
+
readonly internalType: "ChannelID";
|
|
1240
|
+
readonly name: "channelID";
|
|
1241
|
+
readonly type: "bytes32";
|
|
1242
|
+
}];
|
|
1243
|
+
readonly name: "channelNoncesOf";
|
|
1244
|
+
readonly outputs: readonly [{
|
|
1245
|
+
readonly internalType: "uint64";
|
|
1246
|
+
readonly name: "";
|
|
1247
|
+
readonly type: "uint64";
|
|
1248
|
+
}, {
|
|
1249
|
+
readonly internalType: "uint64";
|
|
1250
|
+
readonly name: "";
|
|
1251
|
+
readonly type: "uint64";
|
|
1252
|
+
}];
|
|
1253
|
+
readonly stateMutability: "view";
|
|
1254
|
+
readonly type: "function";
|
|
1255
|
+
}, {
|
|
1256
|
+
readonly inputs: readonly [{
|
|
1257
|
+
readonly internalType: "ChannelID";
|
|
1258
|
+
readonly name: "channelID";
|
|
1259
|
+
readonly type: "bytes32";
|
|
1260
|
+
}];
|
|
1261
|
+
readonly name: "channelOperatingModeOf";
|
|
1262
|
+
readonly outputs: readonly [{
|
|
1263
|
+
readonly internalType: "enum OperatingMode";
|
|
1264
|
+
readonly name: "";
|
|
1265
|
+
readonly type: "uint8";
|
|
1266
|
+
}];
|
|
1267
|
+
readonly stateMutability: "view";
|
|
1268
|
+
readonly type: "function";
|
|
1269
|
+
}, {
|
|
1270
|
+
readonly inputs: readonly [{
|
|
1271
|
+
readonly internalType: "bytes";
|
|
1272
|
+
readonly name: "data";
|
|
1273
|
+
readonly type: "bytes";
|
|
1274
|
+
}];
|
|
1275
|
+
readonly name: "createAgent";
|
|
1276
|
+
readonly outputs: readonly [];
|
|
1277
|
+
readonly stateMutability: "nonpayable";
|
|
1278
|
+
readonly type: "function";
|
|
1279
|
+
}, {
|
|
1280
|
+
readonly inputs: readonly [{
|
|
1281
|
+
readonly internalType: "bytes";
|
|
1282
|
+
readonly name: "data";
|
|
1283
|
+
readonly type: "bytes";
|
|
1284
|
+
}];
|
|
1285
|
+
readonly name: "createChannel";
|
|
1286
|
+
readonly outputs: readonly [];
|
|
1287
|
+
readonly stateMutability: "nonpayable";
|
|
1288
|
+
readonly type: "function";
|
|
1289
|
+
}, {
|
|
1290
|
+
readonly inputs: readonly [];
|
|
1291
|
+
readonly name: "implementation";
|
|
1292
|
+
readonly outputs: readonly [{
|
|
1293
|
+
readonly internalType: "address";
|
|
1294
|
+
readonly name: "";
|
|
1295
|
+
readonly type: "address";
|
|
1296
|
+
}];
|
|
1297
|
+
readonly stateMutability: "view";
|
|
1298
|
+
readonly type: "function";
|
|
1299
|
+
}, {
|
|
1300
|
+
readonly inputs: readonly [{
|
|
1301
|
+
readonly internalType: "bytes";
|
|
1302
|
+
readonly name: "data";
|
|
1303
|
+
readonly type: "bytes";
|
|
1304
|
+
}];
|
|
1305
|
+
readonly name: "initialize";
|
|
1306
|
+
readonly outputs: readonly [];
|
|
1307
|
+
readonly stateMutability: "nonpayable";
|
|
1308
|
+
readonly type: "function";
|
|
1309
|
+
}, {
|
|
1310
|
+
readonly inputs: readonly [{
|
|
1311
|
+
readonly internalType: "address";
|
|
1312
|
+
readonly name: "token";
|
|
1313
|
+
readonly type: "address";
|
|
1314
|
+
}];
|
|
1315
|
+
readonly name: "isTokenRegistered";
|
|
1316
|
+
readonly outputs: readonly [{
|
|
1317
|
+
readonly internalType: "bool";
|
|
1318
|
+
readonly name: "";
|
|
1319
|
+
readonly type: "bool";
|
|
1320
|
+
}];
|
|
1321
|
+
readonly stateMutability: "view";
|
|
1322
|
+
readonly type: "function";
|
|
1323
|
+
}, {
|
|
1324
|
+
readonly inputs: readonly [{
|
|
1325
|
+
readonly internalType: "bytes";
|
|
1326
|
+
readonly name: "data";
|
|
1327
|
+
readonly type: "bytes";
|
|
1328
|
+
}];
|
|
1329
|
+
readonly name: "mintForeignToken";
|
|
1330
|
+
readonly outputs: readonly [];
|
|
1331
|
+
readonly stateMutability: "nonpayable";
|
|
1332
|
+
readonly type: "function";
|
|
1333
|
+
}, {
|
|
1334
|
+
readonly inputs: readonly [];
|
|
1335
|
+
readonly name: "operatingMode";
|
|
1336
|
+
readonly outputs: readonly [{
|
|
1337
|
+
readonly internalType: "enum OperatingMode";
|
|
1338
|
+
readonly name: "";
|
|
1339
|
+
readonly type: "uint8";
|
|
1340
|
+
}];
|
|
1341
|
+
readonly stateMutability: "view";
|
|
1342
|
+
readonly type: "function";
|
|
1343
|
+
}, {
|
|
1344
|
+
readonly inputs: readonly [];
|
|
1345
|
+
readonly name: "pricingParameters";
|
|
1346
|
+
readonly outputs: readonly [{
|
|
1347
|
+
readonly internalType: "UD60x18";
|
|
1348
|
+
readonly name: "";
|
|
1349
|
+
readonly type: "uint256";
|
|
1350
|
+
}, {
|
|
1351
|
+
readonly internalType: "uint128";
|
|
1352
|
+
readonly name: "";
|
|
1353
|
+
readonly type: "uint128";
|
|
1354
|
+
}];
|
|
1355
|
+
readonly stateMutability: "view";
|
|
1356
|
+
readonly type: "function";
|
|
1357
|
+
}, {
|
|
1358
|
+
readonly inputs: readonly [{
|
|
1359
|
+
readonly internalType: "address";
|
|
1360
|
+
readonly name: "token";
|
|
1361
|
+
readonly type: "address";
|
|
1362
|
+
}];
|
|
1363
|
+
readonly name: "queryForeignTokenID";
|
|
1364
|
+
readonly outputs: readonly [{
|
|
1365
|
+
readonly internalType: "bytes32";
|
|
1366
|
+
readonly name: "";
|
|
1367
|
+
readonly type: "bytes32";
|
|
1368
|
+
}];
|
|
1369
|
+
readonly stateMutability: "view";
|
|
1370
|
+
readonly type: "function";
|
|
1371
|
+
}, {
|
|
1372
|
+
readonly inputs: readonly [];
|
|
1373
|
+
readonly name: "quoteRegisterTokenFee";
|
|
1374
|
+
readonly outputs: readonly [{
|
|
1375
|
+
readonly internalType: "uint256";
|
|
1376
|
+
readonly name: "";
|
|
1377
|
+
readonly type: "uint256";
|
|
1378
|
+
}];
|
|
1379
|
+
readonly stateMutability: "view";
|
|
1380
|
+
readonly type: "function";
|
|
1381
|
+
}, {
|
|
1382
|
+
readonly inputs: readonly [{
|
|
1383
|
+
readonly internalType: "address";
|
|
1384
|
+
readonly name: "token";
|
|
1385
|
+
readonly type: "address";
|
|
1386
|
+
}, {
|
|
1387
|
+
readonly internalType: "ParaID";
|
|
1388
|
+
readonly name: "destinationChain";
|
|
1389
|
+
readonly type: "uint32";
|
|
1390
|
+
}, {
|
|
1391
|
+
readonly internalType: "uint128";
|
|
1392
|
+
readonly name: "destinationFee";
|
|
1393
|
+
readonly type: "uint128";
|
|
1394
|
+
}];
|
|
1395
|
+
readonly name: "quoteSendTokenFee";
|
|
1396
|
+
readonly outputs: readonly [{
|
|
1397
|
+
readonly internalType: "uint256";
|
|
1398
|
+
readonly name: "";
|
|
1399
|
+
readonly type: "uint256";
|
|
1400
|
+
}];
|
|
1401
|
+
readonly stateMutability: "view";
|
|
1402
|
+
readonly type: "function";
|
|
1403
|
+
}, {
|
|
1404
|
+
readonly inputs: readonly [{
|
|
1405
|
+
readonly internalType: "bytes";
|
|
1406
|
+
readonly name: "data";
|
|
1407
|
+
readonly type: "bytes";
|
|
1408
|
+
}];
|
|
1409
|
+
readonly name: "registerForeignToken";
|
|
1410
|
+
readonly outputs: readonly [];
|
|
1411
|
+
readonly stateMutability: "nonpayable";
|
|
1412
|
+
readonly type: "function";
|
|
1413
|
+
}, {
|
|
1414
|
+
readonly inputs: readonly [{
|
|
1415
|
+
readonly internalType: "address";
|
|
1416
|
+
readonly name: "token";
|
|
1417
|
+
readonly type: "address";
|
|
1418
|
+
}];
|
|
1419
|
+
readonly name: "registerToken";
|
|
1420
|
+
readonly outputs: readonly [];
|
|
1421
|
+
readonly stateMutability: "payable";
|
|
1422
|
+
readonly type: "function";
|
|
1423
|
+
}, {
|
|
1424
|
+
readonly inputs: readonly [{
|
|
1425
|
+
readonly internalType: "bytes";
|
|
1426
|
+
readonly name: "data";
|
|
1427
|
+
readonly type: "bytes";
|
|
1428
|
+
}];
|
|
1429
|
+
readonly name: "reportSlashes";
|
|
1430
|
+
readonly outputs: readonly [];
|
|
1431
|
+
readonly stateMutability: "nonpayable";
|
|
1432
|
+
readonly type: "function";
|
|
1433
|
+
}, {
|
|
1434
|
+
readonly inputs: readonly [];
|
|
1435
|
+
readonly name: "s_middleware";
|
|
1436
|
+
readonly outputs: readonly [{
|
|
1437
|
+
readonly internalType: "address";
|
|
1438
|
+
readonly name: "";
|
|
1439
|
+
readonly type: "address";
|
|
1440
|
+
}];
|
|
1441
|
+
readonly stateMutability: "view";
|
|
1442
|
+
readonly type: "function";
|
|
1443
|
+
}, {
|
|
1444
|
+
readonly inputs: readonly [{
|
|
1445
|
+
readonly internalType: "bytes32[]";
|
|
1446
|
+
readonly name: "data";
|
|
1447
|
+
readonly type: "bytes32[]";
|
|
1448
|
+
}, {
|
|
1449
|
+
readonly internalType: "uint48";
|
|
1450
|
+
readonly name: "epoch";
|
|
1451
|
+
readonly type: "uint48";
|
|
1452
|
+
}];
|
|
1453
|
+
readonly name: "sendOperatorsData";
|
|
1454
|
+
readonly outputs: readonly [];
|
|
1455
|
+
readonly stateMutability: "nonpayable";
|
|
1456
|
+
readonly type: "function";
|
|
1457
|
+
}, {
|
|
1458
|
+
readonly inputs: readonly [{
|
|
1459
|
+
readonly internalType: "bytes";
|
|
1460
|
+
readonly name: "data";
|
|
1461
|
+
readonly type: "bytes";
|
|
1462
|
+
}];
|
|
1463
|
+
readonly name: "sendRewards";
|
|
1464
|
+
readonly outputs: readonly [];
|
|
1465
|
+
readonly stateMutability: "nonpayable";
|
|
1466
|
+
readonly type: "function";
|
|
1467
|
+
}, {
|
|
1468
|
+
readonly inputs: readonly [{
|
|
1469
|
+
readonly internalType: "address";
|
|
1470
|
+
readonly name: "token";
|
|
1471
|
+
readonly type: "address";
|
|
1472
|
+
}, {
|
|
1473
|
+
readonly internalType: "ParaID";
|
|
1474
|
+
readonly name: "destinationChain";
|
|
1475
|
+
readonly type: "uint32";
|
|
1476
|
+
}, {
|
|
1477
|
+
readonly components: readonly [{
|
|
1478
|
+
readonly internalType: "enum Kind";
|
|
1479
|
+
readonly name: "kind";
|
|
1480
|
+
readonly type: "uint8";
|
|
1481
|
+
}, {
|
|
1482
|
+
readonly internalType: "bytes";
|
|
1483
|
+
readonly name: "data";
|
|
1484
|
+
readonly type: "bytes";
|
|
1485
|
+
}];
|
|
1486
|
+
readonly internalType: "struct MultiAddress";
|
|
1487
|
+
readonly name: "destinationAddress";
|
|
1488
|
+
readonly type: "tuple";
|
|
1489
|
+
}, {
|
|
1490
|
+
readonly internalType: "uint128";
|
|
1491
|
+
readonly name: "destinationFee";
|
|
1492
|
+
readonly type: "uint128";
|
|
1493
|
+
}, {
|
|
1494
|
+
readonly internalType: "uint128";
|
|
1495
|
+
readonly name: "amount";
|
|
1496
|
+
readonly type: "uint128";
|
|
1497
|
+
}];
|
|
1498
|
+
readonly name: "sendToken";
|
|
1499
|
+
readonly outputs: readonly [];
|
|
1500
|
+
readonly stateMutability: "payable";
|
|
1501
|
+
readonly type: "function";
|
|
1502
|
+
}, {
|
|
1503
|
+
readonly inputs: readonly [{
|
|
1504
|
+
readonly internalType: "address";
|
|
1505
|
+
readonly name: "middleware";
|
|
1506
|
+
readonly type: "address";
|
|
1507
|
+
}];
|
|
1508
|
+
readonly name: "setMiddleware";
|
|
1509
|
+
readonly outputs: readonly [];
|
|
1510
|
+
readonly stateMutability: "nonpayable";
|
|
1511
|
+
readonly type: "function";
|
|
1512
|
+
}, {
|
|
1513
|
+
readonly inputs: readonly [{
|
|
1514
|
+
readonly internalType: "bytes";
|
|
1515
|
+
readonly name: "data";
|
|
1516
|
+
readonly type: "bytes";
|
|
1517
|
+
}];
|
|
1518
|
+
readonly name: "setOperatingMode";
|
|
1519
|
+
readonly outputs: readonly [];
|
|
1520
|
+
readonly stateMutability: "nonpayable";
|
|
1521
|
+
readonly type: "function";
|
|
1522
|
+
}, {
|
|
1523
|
+
readonly inputs: readonly [{
|
|
1524
|
+
readonly internalType: "bytes";
|
|
1525
|
+
readonly name: "data";
|
|
1526
|
+
readonly type: "bytes";
|
|
1527
|
+
}];
|
|
1528
|
+
readonly name: "setPricingParameters";
|
|
1529
|
+
readonly outputs: readonly [];
|
|
1530
|
+
readonly stateMutability: "nonpayable";
|
|
1531
|
+
readonly type: "function";
|
|
1532
|
+
}, {
|
|
1533
|
+
readonly inputs: readonly [{
|
|
1534
|
+
readonly internalType: "bytes";
|
|
1535
|
+
readonly name: "data";
|
|
1536
|
+
readonly type: "bytes";
|
|
1537
|
+
}];
|
|
1538
|
+
readonly name: "setTokenTransferFees";
|
|
1539
|
+
readonly outputs: readonly [];
|
|
1540
|
+
readonly stateMutability: "nonpayable";
|
|
1541
|
+
readonly type: "function";
|
|
1542
|
+
}, {
|
|
1543
|
+
readonly inputs: readonly [{
|
|
1544
|
+
readonly components: readonly [{
|
|
1545
|
+
readonly internalType: "ChannelID";
|
|
1546
|
+
readonly name: "channelID";
|
|
1547
|
+
readonly type: "bytes32";
|
|
1548
|
+
}, {
|
|
1549
|
+
readonly internalType: "uint64";
|
|
1550
|
+
readonly name: "nonce";
|
|
1551
|
+
readonly type: "uint64";
|
|
1552
|
+
}, {
|
|
1553
|
+
readonly internalType: "enum Command";
|
|
1554
|
+
readonly name: "command";
|
|
1555
|
+
readonly type: "uint8";
|
|
1556
|
+
}, {
|
|
1557
|
+
readonly internalType: "bytes";
|
|
1558
|
+
readonly name: "params";
|
|
1559
|
+
readonly type: "bytes";
|
|
1560
|
+
}, {
|
|
1561
|
+
readonly internalType: "uint64";
|
|
1562
|
+
readonly name: "maxDispatchGas";
|
|
1563
|
+
readonly type: "uint64";
|
|
1564
|
+
}, {
|
|
1565
|
+
readonly internalType: "uint256";
|
|
1566
|
+
readonly name: "maxFeePerGas";
|
|
1567
|
+
readonly type: "uint256";
|
|
1568
|
+
}, {
|
|
1569
|
+
readonly internalType: "uint256";
|
|
1570
|
+
readonly name: "reward";
|
|
1571
|
+
readonly type: "uint256";
|
|
1572
|
+
}, {
|
|
1573
|
+
readonly internalType: "bytes32";
|
|
1574
|
+
readonly name: "id";
|
|
1575
|
+
readonly type: "bytes32";
|
|
1576
|
+
}];
|
|
1577
|
+
readonly internalType: "struct InboundMessage";
|
|
1578
|
+
readonly name: "message";
|
|
1579
|
+
readonly type: "tuple";
|
|
1580
|
+
}, {
|
|
1581
|
+
readonly internalType: "bytes32[]";
|
|
1582
|
+
readonly name: "leafProof";
|
|
1583
|
+
readonly type: "bytes32[]";
|
|
1584
|
+
}, {
|
|
1585
|
+
readonly components: readonly [{
|
|
1586
|
+
readonly components: readonly [{
|
|
1587
|
+
readonly internalType: "uint8";
|
|
1588
|
+
readonly name: "version";
|
|
1589
|
+
readonly type: "uint8";
|
|
1590
|
+
}, {
|
|
1591
|
+
readonly internalType: "uint32";
|
|
1592
|
+
readonly name: "parentNumber";
|
|
1593
|
+
readonly type: "uint32";
|
|
1594
|
+
}, {
|
|
1595
|
+
readonly internalType: "bytes32";
|
|
1596
|
+
readonly name: "parentHash";
|
|
1597
|
+
readonly type: "bytes32";
|
|
1598
|
+
}, {
|
|
1599
|
+
readonly internalType: "uint64";
|
|
1600
|
+
readonly name: "nextAuthoritySetID";
|
|
1601
|
+
readonly type: "uint64";
|
|
1602
|
+
}, {
|
|
1603
|
+
readonly internalType: "uint32";
|
|
1604
|
+
readonly name: "nextAuthoritySetLen";
|
|
1605
|
+
readonly type: "uint32";
|
|
1606
|
+
}, {
|
|
1607
|
+
readonly internalType: "bytes32";
|
|
1608
|
+
readonly name: "nextAuthoritySetRoot";
|
|
1609
|
+
readonly type: "bytes32";
|
|
1610
|
+
}];
|
|
1611
|
+
readonly internalType: "struct Verification.MMRLeafPartial";
|
|
1612
|
+
readonly name: "leafPartial";
|
|
1613
|
+
readonly type: "tuple";
|
|
1614
|
+
}, {
|
|
1615
|
+
readonly internalType: "bytes32[]";
|
|
1616
|
+
readonly name: "leafProof";
|
|
1617
|
+
readonly type: "bytes32[]";
|
|
1618
|
+
}, {
|
|
1619
|
+
readonly internalType: "bytes32";
|
|
1620
|
+
readonly name: "parachainHeadsRoot";
|
|
1621
|
+
readonly type: "bytes32";
|
|
1622
|
+
}, {
|
|
1623
|
+
readonly internalType: "uint256";
|
|
1624
|
+
readonly name: "leafProofOrder";
|
|
1625
|
+
readonly type: "uint256";
|
|
1626
|
+
}];
|
|
1627
|
+
readonly internalType: "struct Verification.Proof";
|
|
1628
|
+
readonly name: "headerProof";
|
|
1629
|
+
readonly type: "tuple";
|
|
1630
|
+
}];
|
|
1631
|
+
readonly name: "submitV1";
|
|
1632
|
+
readonly outputs: readonly [];
|
|
1633
|
+
readonly stateMutability: "nonpayable";
|
|
1634
|
+
readonly type: "function";
|
|
1635
|
+
}, {
|
|
1636
|
+
readonly inputs: readonly [{
|
|
1637
|
+
readonly internalType: "bytes32";
|
|
1638
|
+
readonly name: "tokenID";
|
|
1639
|
+
readonly type: "bytes32";
|
|
1640
|
+
}];
|
|
1641
|
+
readonly name: "tokenAddressOf";
|
|
1642
|
+
readonly outputs: readonly [{
|
|
1643
|
+
readonly internalType: "address";
|
|
1644
|
+
readonly name: "";
|
|
1645
|
+
readonly type: "address";
|
|
1646
|
+
}];
|
|
1647
|
+
readonly stateMutability: "view";
|
|
1648
|
+
readonly type: "function";
|
|
1649
|
+
}, {
|
|
1650
|
+
readonly inputs: readonly [{
|
|
1651
|
+
readonly internalType: "bytes";
|
|
1652
|
+
readonly name: "data";
|
|
1653
|
+
readonly type: "bytes";
|
|
1654
|
+
}];
|
|
1655
|
+
readonly name: "transferNativeFromAgent";
|
|
1656
|
+
readonly outputs: readonly [];
|
|
1657
|
+
readonly stateMutability: "nonpayable";
|
|
1658
|
+
readonly type: "function";
|
|
1659
|
+
}, {
|
|
1660
|
+
readonly inputs: readonly [{
|
|
1661
|
+
readonly internalType: "bytes";
|
|
1662
|
+
readonly name: "data";
|
|
1663
|
+
readonly type: "bytes";
|
|
1664
|
+
}];
|
|
1665
|
+
readonly name: "transferNativeToken";
|
|
1666
|
+
readonly outputs: readonly [];
|
|
1667
|
+
readonly stateMutability: "nonpayable";
|
|
1668
|
+
readonly type: "function";
|
|
1669
|
+
}, {
|
|
1670
|
+
readonly inputs: readonly [{
|
|
1671
|
+
readonly internalType: "address";
|
|
1672
|
+
readonly name: "newOwner";
|
|
1673
|
+
readonly type: "address";
|
|
1674
|
+
}];
|
|
1675
|
+
readonly name: "transferOwnership";
|
|
1676
|
+
readonly outputs: readonly [];
|
|
1677
|
+
readonly stateMutability: "nonpayable";
|
|
1678
|
+
readonly type: "function";
|
|
1679
|
+
}, {
|
|
1680
|
+
readonly inputs: readonly [{
|
|
1681
|
+
readonly internalType: "bytes";
|
|
1682
|
+
readonly name: "data";
|
|
1683
|
+
readonly type: "bytes";
|
|
1684
|
+
}];
|
|
1685
|
+
readonly name: "updateChannel";
|
|
1686
|
+
readonly outputs: readonly [];
|
|
1687
|
+
readonly stateMutability: "nonpayable";
|
|
1688
|
+
readonly type: "function";
|
|
1689
|
+
}, {
|
|
1690
|
+
readonly inputs: readonly [{
|
|
1691
|
+
readonly internalType: "bytes";
|
|
1692
|
+
readonly name: "data";
|
|
1693
|
+
readonly type: "bytes";
|
|
1694
|
+
}];
|
|
1695
|
+
readonly name: "upgrade";
|
|
1696
|
+
readonly outputs: readonly [];
|
|
1697
|
+
readonly stateMutability: "nonpayable";
|
|
1698
|
+
readonly type: "function";
|
|
1699
|
+
}];
|
|
1700
|
+
|
|
1701
|
+
declare enum Protocols {
|
|
1702
|
+
TokenBridge = "TokenBridge",
|
|
1703
|
+
AutomaticTokenBridge = "AutomaticTokenBridge",
|
|
1704
|
+
ExecutorTokenBridge = "ExecutorTokenBridge"
|
|
1705
|
+
}
|
|
1706
|
+
type WormholeTransferFunctions = 'tokenTransfer';
|
|
1707
|
+
interface WormholeFunctionArgs {
|
|
1708
|
+
token: TokenId;
|
|
1709
|
+
amount: bigint;
|
|
1710
|
+
from: ChainAddress;
|
|
1711
|
+
to: ChainAddress;
|
|
1712
|
+
protocol: TokenTransfer.Protocol;
|
|
1713
|
+
payload?: Uint8Array;
|
|
1714
|
+
}
|
|
1715
|
+
interface WormholeConfigConstructorParams {
|
|
1716
|
+
args: WormholeFunctionArgs;
|
|
1717
|
+
func: WormholeTransferFunctions;
|
|
1718
|
+
}
|
|
1719
|
+
declare class WormholeConfig {
|
|
1720
|
+
readonly args: WormholeFunctionArgs;
|
|
1721
|
+
readonly func: WormholeTransferFunctions;
|
|
1722
|
+
readonly provider: "wormhole";
|
|
1723
|
+
static is(obj: unknown): obj is WormholeConfig;
|
|
1724
|
+
constructor({ args, func }: WormholeConfigConstructorParams);
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
declare function wormhole$1(): {
|
|
1728
|
+
tokenTransfer: () => MrlConfigBuilder;
|
|
1729
|
+
};
|
|
1730
|
+
|
|
1731
|
+
declare function wormholeFactory(chain: AnyChain): Wormhole<"Testnet" | "Mainnet">;
|
|
1732
|
+
|
|
1733
|
+
type Provider = 'snowbridge' | 'wormhole';
|
|
1734
|
+
type MrlConfigBuilder = ConfigBuilder<ContractConfig | ExtrinsicConfig | WormholeConfig | SnowbridgeConfig, MrlBuilderParams> & {
|
|
1735
|
+
provider?: Provider;
|
|
1736
|
+
};
|
|
1737
|
+
type MrlExecuteConfigBuilder = ConfigBuilder<ContractConfig, MrlExecuteBuilderParams>;
|
|
1738
|
+
interface MrlBuilderParams extends BuilderParams<AnyChain> {
|
|
1739
|
+
isAutomatic: boolean;
|
|
1740
|
+
protocolFee?: AssetAmount;
|
|
1741
|
+
moonApi: ApiPromise;
|
|
1742
|
+
moonAsset: ChainAsset;
|
|
1743
|
+
bridgeChain: AnyParachain;
|
|
1744
|
+
bridgeChainGasLimit?: bigint;
|
|
1745
|
+
sendOnlyRemoteExecution?: boolean;
|
|
1746
|
+
transact?: Transact;
|
|
1747
|
+
}
|
|
1748
|
+
interface MrlExecuteBuilderParams {
|
|
1749
|
+
bytes?: Uint8Array;
|
|
1750
|
+
}
|
|
1751
|
+
interface Transact {
|
|
1752
|
+
call: HexString;
|
|
1753
|
+
txWeight: {
|
|
1754
|
+
refTime: bigint;
|
|
1755
|
+
proofSize: bigint;
|
|
1756
|
+
};
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
declare function Gateway(): {
|
|
1760
|
+
sendToken: () => MrlConfigBuilder;
|
|
1761
|
+
approveAndSendToken: () => MrlConfigBuilder;
|
|
1762
|
+
};
|
|
1763
|
+
|
|
1764
|
+
declare function contract$1(): {
|
|
1765
|
+
Gateway: typeof Gateway;
|
|
1766
|
+
};
|
|
1767
|
+
|
|
1768
|
+
declare function ethereumTokenTransfers(): {
|
|
1769
|
+
transferNativeToken: () => MrlConfigBuilder;
|
|
1770
|
+
};
|
|
1771
|
+
|
|
1772
|
+
declare function xcmPallet(): {
|
|
1773
|
+
transferAssets: () => {
|
|
1774
|
+
globalConsensus: () => MrlConfigBuilder;
|
|
1775
|
+
globalConsensusErc20: () => MrlConfigBuilder;
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
|
|
1779
|
+
declare function extrinsic$1(): {
|
|
1780
|
+
ethereumTokenTransfers: typeof ethereumTokenTransfers;
|
|
1781
|
+
xcmPallet: typeof xcmPallet;
|
|
1782
|
+
};
|
|
1783
|
+
|
|
1784
|
+
declare function snowbridge(): {
|
|
1785
|
+
contract: typeof contract$1;
|
|
1786
|
+
extrinsic: typeof extrinsic$1;
|
|
1787
|
+
};
|
|
630
1788
|
|
|
631
1789
|
declare function Batch(): {
|
|
632
1790
|
transferAssetsAndMessage: () => MrlConfigBuilder;
|
|
@@ -759,9 +1917,10 @@ declare function wormhole(): {
|
|
|
759
1917
|
};
|
|
760
1918
|
|
|
761
1919
|
declare function MrlBuilder(): {
|
|
1920
|
+
snowbridge: typeof snowbridge;
|
|
762
1921
|
wormhole: typeof wormhole;
|
|
763
1922
|
};
|
|
764
1923
|
|
|
765
1924
|
declare const BATCH_CONTRACT_ADDRESS = "0x0000000000000000000000000000000000000808";
|
|
766
1925
|
|
|
767
|
-
export { type AssetAddressFormat, AssetMinBuilder, type AssetMinConfigBuilder, type AssetMinConfigBuilderParams, type AssetMultilocation, BATCH_CONTRACT_ABI, BATCH_CONTRACT_ADDRESS, BalanceBuilder, type BalanceBuilderParams, type BalanceConfigBuilder, type BuilderParams, type ConfigBuilder, ContractBuilder, ContractConfig, type ContractConfigBuilder, type ContractConfigConstructorParams, type DestinationMultilocation, ERC20_ABI, type EquilibriumSystemBalanceData, type EventMonitoringConfig, type EvmFunctionArgs, EvmQueryConfig, type EvmQueryConfigParams, type EvmQueryFunctions, ExtrinsicBuilder, ExtrinsicConfig, type ExtrinsicConfigBuilder, type ExtrinsicConfigConstructorParams, FeeBuilder, type FeeConfigBuilder, type FeeConfigBuilderParams, type GetVersionedAssetId, MonitoringBuilder, type MonitoringBuilderConfig, type MoonbeamRuntimeXcmConfigAssetType, MrlBuilder, type MrlBuilderParams, type MrlConfigBuilder, type MrlExecuteBuilderParams, type MrlExecuteConfigBuilder, type PalletBalancesAccountDataOld, type Parents, Protocols, type QueryConfigConstructorParams, SubstrateCallConfig, type SubstrateCallConfigConstructorParams, SubstrateQueryConfig, type TokensPalletAccountData, type Transact, TransferType, WormholeConfig, type WormholeConfigConstructorParams, type WormholeFunctionArgs, type WormholeTransferFunctions, type XcmPaymentFeeProps, XcmVersion, calculateSystemAccountBalance, evm, substrate, wormhole, wormholeFactory };
|
|
1926
|
+
export { type AssetAddressFormat, AssetMinBuilder, type AssetMinConfigBuilder, type AssetMinConfigBuilderParams, type AssetMultilocation, BATCH_CONTRACT_ABI, BATCH_CONTRACT_ADDRESS, BalanceBuilder, type BalanceBuilderParams, type BalanceConfigBuilder, type BridgeFeeConfigBuilder, type BridgeFeeConfigBuilderParams, type BuilderParams, type ConfigBuilder, ContractBuilder, ContractConfig, type ContractConfigBuilder, type ContractConfigConstructorParams, type DestinationMultilocation, ERC20_ABI, type EquilibriumSystemBalanceData, type EventMonitoringConfig, type EvmFunctionArgs, EvmQueryConfig, type EvmQueryConfigParams, type EvmQueryFunctions, ExtrinsicBuilder, ExtrinsicConfig, type ExtrinsicConfigBuilder, type ExtrinsicConfigConstructorParams, FeeBuilder, type FeeConfigBuilder, type FeeConfigBuilderParams, GATEWAY_ABI, GATEWAY_CONTRACT_ADDRESS, type GetVersionedAssetId, MonitoringBuilder, type MonitoringBuilderConfig, type MoonbeamRuntimeXcmConfigAssetType, MrlBuilder, type MrlBuilderParams, type MrlConfigBuilder, type MrlExecuteBuilderParams, type MrlExecuteConfigBuilder, type PalletBalancesAccountDataOld, type Parents, Protocols, type Provider, type QueryConfigConstructorParams, SnowbridgeConfig, type SnowbridgeConfigConstructorParams, type SnowbridgeFunctionArgs, type SnowbridgeFunctions, SubstrateCallConfig, type SubstrateCallConfigConstructorParams, SubstrateQueryConfig, type TokensPalletAccountData, type Transact, TransferType, WormholeConfig, type WormholeConfigConstructorParams, type WormholeFunctionArgs, type WormholeTransferFunctions, type XcmPaymentFeeProps, XcmVersion, calculateSystemAccountBalance, evm, snowbridge, substrate, wormhole, wormholeFactory };
|