@gearbox-protocol/sdk 14.11.7 → 14.11.8
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/dist/cjs/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.js +2 -1
- package/dist/esm/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.js +2 -1
- package/dist/types/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.d.ts +4 -0
- package/package.json +1 -1
|
@@ -96,7 +96,8 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
96
96
|
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
97
97
|
]
|
|
98
98
|
},
|
|
99
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
99
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" },
|
|
100
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
100
101
|
]
|
|
101
102
|
}
|
|
102
103
|
],
|
|
@@ -73,7 +73,8 @@ const mellowWithdrawalSubcompressorAbi = [
|
|
|
73
73
|
{ name: "amount", type: "uint256", internalType: "uint256" }
|
|
74
74
|
]
|
|
75
75
|
},
|
|
76
|
-
{ name: "claimableAt", type: "uint256", internalType: "uint256" }
|
|
76
|
+
{ name: "claimableAt", type: "uint256", internalType: "uint256" },
|
|
77
|
+
{ name: "extraData", type: "bytes", internalType: "bytes" }
|
|
77
78
|
]
|
|
78
79
|
}
|
|
79
80
|
],
|
package/dist/types/abi/compressors/subcompressors/withdrawal/mellowWithdrawalSubcompressor.d.ts
CHANGED
|
@@ -104,6 +104,10 @@ export declare const mellowWithdrawalSubcompressorAbi: readonly [{
|
|
|
104
104
|
readonly name: "claimableAt";
|
|
105
105
|
readonly type: "uint256";
|
|
106
106
|
readonly internalType: "uint256";
|
|
107
|
+
}, {
|
|
108
|
+
readonly name: "extraData";
|
|
109
|
+
readonly type: "bytes";
|
|
110
|
+
readonly internalType: "bytes";
|
|
107
111
|
}];
|
|
108
112
|
}];
|
|
109
113
|
readonly stateMutability: "view";
|