@t2000/sdk 1.24.2 → 1.24.5
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/adapters/descriptors.cjs +22 -1
- package/dist/adapters/descriptors.cjs.map +1 -1
- package/dist/adapters/descriptors.js +22 -1
- package/dist/adapters/descriptors.js.map +1 -1
- package/dist/adapters/index.cjs +22 -1
- package/dist/adapters/index.cjs.map +1 -1
- package/dist/adapters/index.js +22 -1
- package/dist/adapters/index.js.map +1 -1
- package/dist/browser.cjs +3 -3
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +1 -1
- package/dist/browser.d.ts +1 -1
- package/dist/browser.js +3 -3
- package/dist/browser.js.map +1 -1
- package/dist/index.cjs +25 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +25 -4
- package/dist/index.js.map +1 -1
- package/dist/{types-DCb8Xt_q.d.ts → types-D1-rO-J4.d.ts} +10 -3
- package/dist/{types-D03bON1v.d.cts → types-DvNhsBbN.d.cts} +10 -3
- package/package.json +1 -1
package/dist/adapters/index.js
CHANGED
|
@@ -4685,14 +4685,35 @@ var naviDescriptor = {
|
|
|
4685
4685
|
packages: [],
|
|
4686
4686
|
dynamicPackageId: true,
|
|
4687
4687
|
actionMap: {
|
|
4688
|
+
// Deposit variants (entry_deposit / deposit + account-cap form for
|
|
4689
|
+
// harvest's internal save leg)
|
|
4688
4690
|
"incentive_v3::entry_deposit": "save",
|
|
4689
4691
|
"incentive_v3::deposit": "save",
|
|
4692
|
+
"incentive_v3::deposit_with_account_cap": "save",
|
|
4693
|
+
// Withdraw variants
|
|
4690
4694
|
"incentive_v3::withdraw_v2": "withdraw",
|
|
4691
4695
|
"incentive_v3::entry_withdraw": "withdraw",
|
|
4696
|
+
"incentive_v3::withdraw_with_account_cap": "withdraw",
|
|
4697
|
+
"incentive_v3::withdraw_with_account_cap_v": "withdraw",
|
|
4698
|
+
"incentive_v3::withdraw": "withdraw",
|
|
4699
|
+
"incentive_v3::withdraw_v": "withdraw",
|
|
4700
|
+
// Borrow variants
|
|
4692
4701
|
"incentive_v3::borrow_v2": "borrow",
|
|
4693
4702
|
"incentive_v3::entry_borrow": "borrow",
|
|
4703
|
+
"incentive_v3::borrow": "borrow",
|
|
4704
|
+
"incentive_v3::borrow_v": "borrow",
|
|
4705
|
+
"incentive_v3::borrow_with_account_cap": "borrow",
|
|
4706
|
+
"incentive_v3::borrow_with_account_cap_v": "borrow",
|
|
4707
|
+
// Repay variants
|
|
4694
4708
|
"incentive_v3::entry_repay": "repay",
|
|
4695
|
-
"incentive_v3::repay": "repay"
|
|
4709
|
+
"incentive_v3::repay": "repay",
|
|
4710
|
+
"incentive_v3::repay_with_account_cap": "repay",
|
|
4711
|
+
// Claim-reward variants — required for `claim_rewards` tagging AND for
|
|
4712
|
+
// `harvest` compound-op detection in the indexer (paired with a save
|
|
4713
|
+
// target, classified as `harvest` instead of `claim`).
|
|
4714
|
+
"incentive_v3::claim_reward": "claim",
|
|
4715
|
+
"incentive_v3::claim_reward_entry": "claim",
|
|
4716
|
+
"incentive_v3::claim_reward_with_account_cap": "claim"
|
|
4696
4717
|
}
|
|
4697
4718
|
};
|
|
4698
4719
|
var allDescriptors = [
|