@instadapp/avocado-base 0.0.0-dev.8dda10f → 0.0.0-dev.8ed8fca
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/.vscode/settings.json +68 -0
- package/abi/multisigAgnosticForwarder.json +938 -0
- package/assets/images/icons/check.svg +3 -0
- package/assets/images/icons/copy.svg +9 -2
- package/components/ActionMetadata.vue +26 -20
- package/components/Address.vue +74 -0
- package/components/CopyClipboard.vue +15 -31
- package/components/metadata/Signers.vue +11 -58
- package/components/metadata/Swap.vue +29 -30
- package/components/metadata/Transfer.vue +25 -27
- package/contracts/MultisigAgnosticForwarder.ts +1423 -0
- package/contracts/factories/MultisigAgnosticForwarder__factory.ts +2135 -0
- package/contracts/factories/index.ts +1 -0
- package/contracts/index.ts +2 -0
- package/eslint.config.mjs +19 -0
- package/nuxt.config.ts +7 -2
- package/package.json +11 -9
- package/utils/metadata.ts +84 -7
- package/utils/network.ts +342 -292
- package/utils/utils.d.ts +8 -1
package/utils/utils.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ declare global {
|
|
|
20
20
|
| 63400
|
|
21
21
|
| 169
|
|
22
22
|
| 34443
|
|
23
|
+
| 81457
|
|
24
|
+
| 59144
|
|
23
25
|
|
|
24
26
|
type ISlackMessageType = "danger" | "error" | "success" | "banner";
|
|
25
27
|
|
|
@@ -43,7 +45,8 @@ declare global {
|
|
|
43
45
|
explorerUrl: string;
|
|
44
46
|
fakeTransactionHash: string;
|
|
45
47
|
viemChain: Chain;
|
|
46
|
-
|
|
48
|
+
// must start with https://
|
|
49
|
+
apiURL: `https://${string}` | null;
|
|
47
50
|
params: {
|
|
48
51
|
chainName?: string;
|
|
49
52
|
iconUrls?: string[];
|
|
@@ -80,8 +83,10 @@ declare global {
|
|
|
80
83
|
toChainId: string;
|
|
81
84
|
amount: string;
|
|
82
85
|
receiver: string;
|
|
86
|
+
provider?: string;
|
|
83
87
|
};
|
|
84
88
|
|
|
89
|
+
|
|
85
90
|
type AuthMetadataProps = {
|
|
86
91
|
address: string;
|
|
87
92
|
chainId: string;
|
|
@@ -107,6 +112,8 @@ declare global {
|
|
|
107
112
|
toChainId: string;
|
|
108
113
|
bridgeFee: string;
|
|
109
114
|
nativeToken: string;
|
|
115
|
+
version?: string;
|
|
116
|
+
provider: string;
|
|
110
117
|
};
|
|
111
118
|
|
|
112
119
|
type SwapMetadataProps = {
|