@instadapp/avocado-base 0.0.0-dev.c3dc65c → 0.0.0-dev.c8dd0df
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/abi/multisigForwarder.json +697 -0
- package/assets/images/icons/hammer.svg +5 -0
- package/assets/images/icons/info-2.svg +12 -0
- package/components/ActionLogo.vue +2 -0
- package/components/ActionMetadata.vue +17 -11
- package/components/AuthorityAvatar.vue +38 -0
- package/components/ChainLogo.vue +14 -556
- package/components/metadata/Bridge.vue +26 -6
- package/components/metadata/CrossTransfer.vue +5 -1
- package/components/metadata/GasTopup.vue +7 -1
- package/components/metadata/Permit2.vue +6 -1
- package/components/metadata/Signers.vue +63 -0
- package/components/metadata/Swap.vue +9 -2
- package/components/metadata/Transfer.vue +5 -1
- package/contracts/MultisigForwarder.ts +859 -0
- package/contracts/factories/MultisigForwarder__factory.ts +721 -0
- package/contracts/factories/index.ts +1 -0
- package/contracts/index.ts +2 -0
- package/package.json +5 -3
- package/utils/formatter.ts +1 -4
- package/utils/helper.ts +2 -1
- package/utils/metadata.ts +88 -51
- package/utils/network.ts +160 -92
- package/utils/services.ts +8 -1
- package/utils/utils.d.ts +6 -5
package/utils/utils.d.ts
CHANGED
|
@@ -11,8 +11,10 @@ declare global {
|
|
|
11
11
|
| 250
|
|
12
12
|
| 634
|
|
13
13
|
| 1313161554
|
|
14
|
+
| 8453
|
|
15
|
+
| 122
|
|
14
16
|
| 63400;
|
|
15
|
-
|
|
17
|
+
|
|
16
18
|
type ISlackMessageType = "danger" | "error" | "success" | "banner";
|
|
17
19
|
|
|
18
20
|
type MetadataTypes = keyof typeof MetadataEnums;
|
|
@@ -33,6 +35,7 @@ declare global {
|
|
|
33
35
|
balanceResolverAddress?: string;
|
|
34
36
|
usdcAddress: string;
|
|
35
37
|
explorerUrl: string;
|
|
38
|
+
apiURL?: string;
|
|
36
39
|
params: {
|
|
37
40
|
chainName?: string;
|
|
38
41
|
iconUrls?: string[];
|
|
@@ -108,7 +111,7 @@ declare global {
|
|
|
108
111
|
};
|
|
109
112
|
|
|
110
113
|
type MetadataProps = {
|
|
111
|
-
type: MetadataTypes
|
|
114
|
+
type: MetadataTypes;
|
|
112
115
|
encodedData: string;
|
|
113
116
|
version?: string;
|
|
114
117
|
};
|
|
@@ -124,8 +127,6 @@ declare global {
|
|
|
124
127
|
coingecko_id: string;
|
|
125
128
|
sparkline_price_7d: number[];
|
|
126
129
|
}
|
|
127
|
-
|
|
128
130
|
}
|
|
129
131
|
|
|
130
|
-
export {
|
|
131
|
-
|
|
132
|
+
export {};
|