@meteora-ag/dynamic-bonding-curve-sdk 1.1.5 → 1.1.6
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/README.md +8 -0
- package/dist/index.cjs +1122 -486
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +513 -408
- package/dist/index.d.ts +513 -408
- package/dist/index.js +1220 -584
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,6 +47,10 @@ bun install
|
|
|
47
47
|
bun test
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
+
### Manual Migrator
|
|
51
|
+
|
|
52
|
+
We have created a [Manual Migrator UI](https://migrator.meteora.ag) that allows you to manually migrate a pool to either DAMM V1 or DAMM V2. Compatible with both Mainnet and Devnet pools.
|
|
53
|
+
|
|
50
54
|
### Program Address
|
|
51
55
|
|
|
52
56
|
- Mainnet-beta: dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN
|
|
@@ -56,6 +60,8 @@ bun test
|
|
|
56
60
|
|
|
57
61
|
#### DAMM V1:
|
|
58
62
|
|
|
63
|
+
Accessible via `DAMM_V1_MIGRATION_FEE_ADDRESS[i]` in the SDK.
|
|
64
|
+
|
|
59
65
|
- MigrationFeeOption.FixedBps25 == 0: 8f848CEy8eY6PhJ3VcemtBDzPPSD4Vq7aJczLZ3o8MmX
|
|
60
66
|
- MigrationFeeOption.FixedBps30 == 1: HBxB8Lf14Yj8pqeJ8C4qDb5ryHL7xwpuykz31BLNYr7S
|
|
61
67
|
- MigrationFeeOption.FixedBps100 == 2: 7v5vBdUQHTNeqk1HnduiXcgbvCyVEZ612HLmYkQoAkik
|
|
@@ -65,6 +71,8 @@ bun test
|
|
|
65
71
|
|
|
66
72
|
#### DAMM V2:
|
|
67
73
|
|
|
74
|
+
Accessible via `DAMM_V2_MIGRATION_FEE_ADDRESS[i]` in the SDK.
|
|
75
|
+
|
|
68
76
|
- MigrationFeeOption.FixedBps25 == 0: 7F6dnUcRuyM2TwR8myT1dYypFXpPSxqwKNSFNkxyNESd
|
|
69
77
|
- MigrationFeeOption.FixedBps30 == 1: 2nHK1kju6XjphBLbNxpM5XRGFj7p9U8vvNzyZiha1z6k
|
|
70
78
|
- MigrationFeeOption.FixedBps100 == 2: Hv8Lmzmnju6m7kcokVKvwqz7QPmdX9XfKjJsXz8RXcjp
|