@glamsystems/glam-sdk 1.0.10 → 1.0.12-alpha.0
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/index.cjs.js +11052 -7904
- package/index.esm.js +11046 -7904
- package/package.json +1 -1
- package/src/client/base.d.ts +5 -1
- package/src/client/fees.d.ts +3 -0
- package/src/client/mint.d.ts +5 -1
- package/src/client/price.d.ts +3 -2
- package/src/clientConfig.d.ts +1 -0
- package/src/constants.d.ts +3 -3
- package/src/deser/integrationPolicies.d.ts +29 -1
- package/src/glamExports.d.ts +527 -47
- package/src/models/state.d.ts +3 -1
- package/src/react/glam.d.ts +1 -0
- package/src/react/index.d.ts +2 -0
- package/src/react/query-keys.d.ts +39 -0
- package/src/react/useVaultBalanceSubscription.d.ts +17 -0
- package/src/utils/bitmask.d.ts +4 -3
- package/src/utils/index.d.ts +0 -1
- package/src/utils/lookupTables.d.ts +45 -1
- package/src/utils/timelock.d.ts +11 -4
- package/src/utils/transaction.d.ts +1 -1
- package/target/idl/ext_drift-staging.json +4 -0
- package/target/idl/ext_drift.json +4 -0
- package/target/idl/glam_config.json +12 -2
- package/target/idl/glam_mint-staging.json +16 -186
- package/target/idl/glam_mint.json +16 -186
- package/target/idl/glam_policies.json +6 -1
- package/target/idl/glam_protocol-staging.json +536 -7
- package/target/idl/glam_protocol.json +536 -7
- package/target/types/ext_drift-staging.ts +4 -0
- package/target/types/ext_drift.d.ts +4 -0
- package/target/types/ext_drift.ts +4 -0
- package/target/types/ext_offchain.d.ts +1080 -0
- package/target/types/glam_config.d.ts +12 -2
- package/target/types/glam_config.ts +12 -2
- package/target/types/glam_mint-staging.ts +16 -186
- package/target/types/glam_mint.d.ts +16 -186
- package/target/types/glam_mint.ts +16 -186
- package/target/types/glam_policies.ts +6 -1
- package/target/types/glam_protocol-staging.ts +536 -7
- package/target/types/glam_protocol.d.ts +536 -7
- package/target/types/glam_protocol.ts +536 -7
- package/src/utils/glamApi.d.ts +0 -12
|
@@ -486,7 +486,7 @@ export type GlamConfig = {
|
|
|
486
486
|
{
|
|
487
487
|
"code": 6002;
|
|
488
488
|
"name": "invalidParameters";
|
|
489
|
-
"msg": "Invalid parameters";
|
|
489
|
+
"msg": "Invalid fee parameters or insufficient account space";
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
492
|
"code": 6003;
|
|
@@ -496,7 +496,17 @@ export type GlamConfig = {
|
|
|
496
496
|
{
|
|
497
497
|
"code": 6004;
|
|
498
498
|
"name": "invalidGlobalConfig";
|
|
499
|
-
"msg": "Invalid global config";
|
|
499
|
+
"msg": "Invalid or corrupted global config account";
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"code": 6005;
|
|
503
|
+
"name": "invalidFeeAuthority";
|
|
504
|
+
"msg": "Invalid fee authority";
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"code": 6006;
|
|
508
|
+
"name": "assetMetaNotFound";
|
|
509
|
+
"msg": "Asset meta not found";
|
|
500
510
|
}
|
|
501
511
|
];
|
|
502
512
|
"types": [
|
|
@@ -486,7 +486,7 @@ export type GlamConfig = {
|
|
|
486
486
|
{
|
|
487
487
|
"code": 6002,
|
|
488
488
|
"name": "invalidParameters",
|
|
489
|
-
"msg": "Invalid parameters"
|
|
489
|
+
"msg": "Invalid fee parameters or insufficient account space"
|
|
490
490
|
},
|
|
491
491
|
{
|
|
492
492
|
"code": 6003,
|
|
@@ -496,7 +496,17 @@ export type GlamConfig = {
|
|
|
496
496
|
{
|
|
497
497
|
"code": 6004,
|
|
498
498
|
"name": "invalidGlobalConfig",
|
|
499
|
-
"msg": "Invalid global config"
|
|
499
|
+
"msg": "Invalid or corrupted global config account"
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"code": 6005,
|
|
503
|
+
"name": "invalidFeeAuthority",
|
|
504
|
+
"msg": "Invalid fee authority"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"code": 6006,
|
|
508
|
+
"name": "assetMetaNotFound",
|
|
509
|
+
"msg": "Asset meta not found"
|
|
500
510
|
}
|
|
501
511
|
],
|
|
502
512
|
"types": [
|
|
@@ -4643,19 +4643,6 @@ export type GlamMint = {
|
|
|
4643
4643
|
}
|
|
4644
4644
|
],
|
|
4645
4645
|
"accounts": [
|
|
4646
|
-
{
|
|
4647
|
-
"name": "globalConfig",
|
|
4648
|
-
"discriminator": [
|
|
4649
|
-
149,
|
|
4650
|
-
8,
|
|
4651
|
-
156,
|
|
4652
|
-
202,
|
|
4653
|
-
160,
|
|
4654
|
-
252,
|
|
4655
|
-
176,
|
|
4656
|
-
217
|
|
4657
|
-
]
|
|
4658
|
-
},
|
|
4659
4646
|
{
|
|
4660
4647
|
"name": "requestQueue",
|
|
4661
4648
|
"discriminator": [
|
|
@@ -4730,7 +4717,7 @@ export type GlamMint = {
|
|
|
4730
4717
|
{
|
|
4731
4718
|
"code": 6003,
|
|
4732
4719
|
"name": "invalidAsset",
|
|
4733
|
-
"msg": "
|
|
4720
|
+
"msg": "Invalid asset"
|
|
4734
4721
|
},
|
|
4735
4722
|
{
|
|
4736
4723
|
"code": 6004,
|
|
@@ -4781,6 +4768,21 @@ export type GlamMint = {
|
|
|
4781
4768
|
"code": 6013,
|
|
4782
4769
|
"name": "protocolFeesNotCrystallized",
|
|
4783
4770
|
"msg": "Protocol fees should be crystallized before updating"
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"code": 6014,
|
|
4774
|
+
"name": "managerFeesNotCrystallized",
|
|
4775
|
+
"msg": "Manager fees should be crystallized before updating"
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"code": 6015,
|
|
4779
|
+
"name": "insufficientEscrowBalance",
|
|
4780
|
+
"msg": "Insufficient escrow balance for fee burn"
|
|
4781
|
+
},
|
|
4782
|
+
{
|
|
4783
|
+
"code": 6016,
|
|
4784
|
+
"name": "amountBelowMinimum",
|
|
4785
|
+
"msg": "Amount below minimum threshold"
|
|
4784
4786
|
}
|
|
4785
4787
|
],
|
|
4786
4788
|
"types": [
|
|
@@ -4844,51 +4846,6 @@ export type GlamMint = {
|
|
|
4844
4846
|
]
|
|
4845
4847
|
}
|
|
4846
4848
|
},
|
|
4847
|
-
{
|
|
4848
|
-
"name": "assetMeta",
|
|
4849
|
-
"type": {
|
|
4850
|
-
"kind": "struct",
|
|
4851
|
-
"fields": [
|
|
4852
|
-
{
|
|
4853
|
-
"name": "asset",
|
|
4854
|
-
"type": "pubkey"
|
|
4855
|
-
},
|
|
4856
|
-
{
|
|
4857
|
-
"name": "decimals",
|
|
4858
|
-
"type": "u8"
|
|
4859
|
-
},
|
|
4860
|
-
{
|
|
4861
|
-
"name": "oracle",
|
|
4862
|
-
"type": "pubkey"
|
|
4863
|
-
},
|
|
4864
|
-
{
|
|
4865
|
-
"name": "oracleSource",
|
|
4866
|
-
"type": {
|
|
4867
|
-
"defined": {
|
|
4868
|
-
"name": "oracleSource"
|
|
4869
|
-
}
|
|
4870
|
-
}
|
|
4871
|
-
},
|
|
4872
|
-
{
|
|
4873
|
-
"name": "maxAgeSeconds",
|
|
4874
|
-
"type": "u16"
|
|
4875
|
-
},
|
|
4876
|
-
{
|
|
4877
|
-
"name": "priority",
|
|
4878
|
-
"type": "i8"
|
|
4879
|
-
},
|
|
4880
|
-
{
|
|
4881
|
-
"name": "padding",
|
|
4882
|
-
"type": {
|
|
4883
|
-
"array": [
|
|
4884
|
-
"u8",
|
|
4885
|
-
3
|
|
4886
|
-
]
|
|
4887
|
-
}
|
|
4888
|
-
}
|
|
4889
|
-
]
|
|
4890
|
-
}
|
|
4891
|
-
},
|
|
4892
4849
|
{
|
|
4893
4850
|
"name": "aumRecord",
|
|
4894
4851
|
"type": {
|
|
@@ -5349,62 +5306,6 @@ export type GlamMint = {
|
|
|
5349
5306
|
]
|
|
5350
5307
|
}
|
|
5351
5308
|
},
|
|
5352
|
-
{
|
|
5353
|
-
"name": "globalConfig",
|
|
5354
|
-
"type": {
|
|
5355
|
-
"kind": "struct",
|
|
5356
|
-
"fields": [
|
|
5357
|
-
{
|
|
5358
|
-
"name": "admin",
|
|
5359
|
-
"docs": [
|
|
5360
|
-
"The authority that can modify the config"
|
|
5361
|
-
],
|
|
5362
|
-
"type": "pubkey"
|
|
5363
|
-
},
|
|
5364
|
-
{
|
|
5365
|
-
"name": "feeAuthority",
|
|
5366
|
-
"docs": [
|
|
5367
|
-
"The authority that can modify fee structure of individual glam state and claim protocol fees"
|
|
5368
|
-
],
|
|
5369
|
-
"type": "pubkey"
|
|
5370
|
-
},
|
|
5371
|
-
{
|
|
5372
|
-
"name": "referrer",
|
|
5373
|
-
"docs": [
|
|
5374
|
-
"Default GLAM referrer"
|
|
5375
|
-
],
|
|
5376
|
-
"type": "pubkey"
|
|
5377
|
-
},
|
|
5378
|
-
{
|
|
5379
|
-
"name": "baseFeeBps",
|
|
5380
|
-
"docs": [
|
|
5381
|
-
"Default protocol base fee applied to all vaults"
|
|
5382
|
-
],
|
|
5383
|
-
"type": "u16"
|
|
5384
|
-
},
|
|
5385
|
-
{
|
|
5386
|
-
"name": "flowFeeBps",
|
|
5387
|
-
"docs": [
|
|
5388
|
-
"Default protocol flow fee applied to all vaults"
|
|
5389
|
-
],
|
|
5390
|
-
"type": "u16"
|
|
5391
|
-
},
|
|
5392
|
-
{
|
|
5393
|
-
"name": "assetMetas",
|
|
5394
|
-
"docs": [
|
|
5395
|
-
"List of assets and their oracle configs supported by the protocol"
|
|
5396
|
-
],
|
|
5397
|
-
"type": {
|
|
5398
|
-
"vec": {
|
|
5399
|
-
"defined": {
|
|
5400
|
-
"name": "assetMeta"
|
|
5401
|
-
}
|
|
5402
|
-
}
|
|
5403
|
-
}
|
|
5404
|
-
}
|
|
5405
|
-
]
|
|
5406
|
-
}
|
|
5407
|
-
},
|
|
5408
5309
|
{
|
|
5409
5310
|
"name": "hurdleType",
|
|
5410
5311
|
"type": {
|
|
@@ -5761,77 +5662,6 @@ export type GlamMint = {
|
|
|
5761
5662
|
]
|
|
5762
5663
|
}
|
|
5763
5664
|
},
|
|
5764
|
-
{
|
|
5765
|
-
"name": "oracleSource",
|
|
5766
|
-
"type": {
|
|
5767
|
-
"kind": "enum",
|
|
5768
|
-
"variants": [
|
|
5769
|
-
{
|
|
5770
|
-
"name": "pyth"
|
|
5771
|
-
},
|
|
5772
|
-
{
|
|
5773
|
-
"name": "switchboard"
|
|
5774
|
-
},
|
|
5775
|
-
{
|
|
5776
|
-
"name": "quoteAsset"
|
|
5777
|
-
},
|
|
5778
|
-
{
|
|
5779
|
-
"name": "pyth1K"
|
|
5780
|
-
},
|
|
5781
|
-
{
|
|
5782
|
-
"name": "pyth1M"
|
|
5783
|
-
},
|
|
5784
|
-
{
|
|
5785
|
-
"name": "pythStableCoin"
|
|
5786
|
-
},
|
|
5787
|
-
{
|
|
5788
|
-
"name": "prelaunch"
|
|
5789
|
-
},
|
|
5790
|
-
{
|
|
5791
|
-
"name": "pythPull"
|
|
5792
|
-
},
|
|
5793
|
-
{
|
|
5794
|
-
"name": "pyth1KPull"
|
|
5795
|
-
},
|
|
5796
|
-
{
|
|
5797
|
-
"name": "pyth1MPull"
|
|
5798
|
-
},
|
|
5799
|
-
{
|
|
5800
|
-
"name": "pythStableCoinPull"
|
|
5801
|
-
},
|
|
5802
|
-
{
|
|
5803
|
-
"name": "switchboardOnDemand"
|
|
5804
|
-
},
|
|
5805
|
-
{
|
|
5806
|
-
"name": "pythLazer"
|
|
5807
|
-
},
|
|
5808
|
-
{
|
|
5809
|
-
"name": "pythLazer1K"
|
|
5810
|
-
},
|
|
5811
|
-
{
|
|
5812
|
-
"name": "pythLazer1M"
|
|
5813
|
-
},
|
|
5814
|
-
{
|
|
5815
|
-
"name": "pythLazerStableCoin"
|
|
5816
|
-
},
|
|
5817
|
-
{
|
|
5818
|
-
"name": "notSet"
|
|
5819
|
-
},
|
|
5820
|
-
{
|
|
5821
|
-
"name": "lstPoolState"
|
|
5822
|
-
},
|
|
5823
|
-
{
|
|
5824
|
-
"name": "marinadeState"
|
|
5825
|
-
},
|
|
5826
|
-
{
|
|
5827
|
-
"name": "baseAsset"
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"name": "chainlinkRwa"
|
|
5831
|
-
}
|
|
5832
|
-
]
|
|
5833
|
-
}
|
|
5834
|
-
},
|
|
5835
5665
|
{
|
|
5836
5666
|
"name": "pendingRequest",
|
|
5837
5667
|
"type": {
|
|
@@ -4643,19 +4643,6 @@ export type GlamMint = {
|
|
|
4643
4643
|
}
|
|
4644
4644
|
];
|
|
4645
4645
|
"accounts": [
|
|
4646
|
-
{
|
|
4647
|
-
"name": "globalConfig";
|
|
4648
|
-
"discriminator": [
|
|
4649
|
-
149,
|
|
4650
|
-
8,
|
|
4651
|
-
156,
|
|
4652
|
-
202,
|
|
4653
|
-
160,
|
|
4654
|
-
252,
|
|
4655
|
-
176,
|
|
4656
|
-
217
|
|
4657
|
-
];
|
|
4658
|
-
},
|
|
4659
4646
|
{
|
|
4660
4647
|
"name": "requestQueue";
|
|
4661
4648
|
"discriminator": [
|
|
@@ -4730,7 +4717,7 @@ export type GlamMint = {
|
|
|
4730
4717
|
{
|
|
4731
4718
|
"code": 6003;
|
|
4732
4719
|
"name": "invalidAsset";
|
|
4733
|
-
"msg": "
|
|
4720
|
+
"msg": "Invalid asset";
|
|
4734
4721
|
},
|
|
4735
4722
|
{
|
|
4736
4723
|
"code": 6004;
|
|
@@ -4781,6 +4768,21 @@ export type GlamMint = {
|
|
|
4781
4768
|
"code": 6013;
|
|
4782
4769
|
"name": "protocolFeesNotCrystallized";
|
|
4783
4770
|
"msg": "Protocol fees should be crystallized before updating";
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"code": 6014;
|
|
4774
|
+
"name": "managerFeesNotCrystallized";
|
|
4775
|
+
"msg": "Manager fees should be crystallized before updating";
|
|
4776
|
+
},
|
|
4777
|
+
{
|
|
4778
|
+
"code": 6015;
|
|
4779
|
+
"name": "insufficientEscrowBalance";
|
|
4780
|
+
"msg": "Insufficient escrow balance for fee burn";
|
|
4781
|
+
},
|
|
4782
|
+
{
|
|
4783
|
+
"code": 6016;
|
|
4784
|
+
"name": "amountBelowMinimum";
|
|
4785
|
+
"msg": "Amount below minimum threshold";
|
|
4784
4786
|
}
|
|
4785
4787
|
];
|
|
4786
4788
|
"types": [
|
|
@@ -4844,51 +4846,6 @@ export type GlamMint = {
|
|
|
4844
4846
|
];
|
|
4845
4847
|
};
|
|
4846
4848
|
},
|
|
4847
|
-
{
|
|
4848
|
-
"name": "assetMeta";
|
|
4849
|
-
"type": {
|
|
4850
|
-
"kind": "struct";
|
|
4851
|
-
"fields": [
|
|
4852
|
-
{
|
|
4853
|
-
"name": "asset";
|
|
4854
|
-
"type": "pubkey";
|
|
4855
|
-
},
|
|
4856
|
-
{
|
|
4857
|
-
"name": "decimals";
|
|
4858
|
-
"type": "u8";
|
|
4859
|
-
},
|
|
4860
|
-
{
|
|
4861
|
-
"name": "oracle";
|
|
4862
|
-
"type": "pubkey";
|
|
4863
|
-
},
|
|
4864
|
-
{
|
|
4865
|
-
"name": "oracleSource";
|
|
4866
|
-
"type": {
|
|
4867
|
-
"defined": {
|
|
4868
|
-
"name": "oracleSource";
|
|
4869
|
-
};
|
|
4870
|
-
};
|
|
4871
|
-
},
|
|
4872
|
-
{
|
|
4873
|
-
"name": "maxAgeSeconds";
|
|
4874
|
-
"type": "u16";
|
|
4875
|
-
},
|
|
4876
|
-
{
|
|
4877
|
-
"name": "priority";
|
|
4878
|
-
"type": "i8";
|
|
4879
|
-
},
|
|
4880
|
-
{
|
|
4881
|
-
"name": "padding";
|
|
4882
|
-
"type": {
|
|
4883
|
-
"array": [
|
|
4884
|
-
"u8",
|
|
4885
|
-
3
|
|
4886
|
-
];
|
|
4887
|
-
};
|
|
4888
|
-
}
|
|
4889
|
-
];
|
|
4890
|
-
};
|
|
4891
|
-
},
|
|
4892
4849
|
{
|
|
4893
4850
|
"name": "aumRecord";
|
|
4894
4851
|
"type": {
|
|
@@ -5349,62 +5306,6 @@ export type GlamMint = {
|
|
|
5349
5306
|
];
|
|
5350
5307
|
};
|
|
5351
5308
|
},
|
|
5352
|
-
{
|
|
5353
|
-
"name": "globalConfig";
|
|
5354
|
-
"type": {
|
|
5355
|
-
"kind": "struct";
|
|
5356
|
-
"fields": [
|
|
5357
|
-
{
|
|
5358
|
-
"name": "admin";
|
|
5359
|
-
"docs": [
|
|
5360
|
-
"The authority that can modify the config"
|
|
5361
|
-
];
|
|
5362
|
-
"type": "pubkey";
|
|
5363
|
-
},
|
|
5364
|
-
{
|
|
5365
|
-
"name": "feeAuthority";
|
|
5366
|
-
"docs": [
|
|
5367
|
-
"The authority that can modify fee structure of individual glam state and claim protocol fees"
|
|
5368
|
-
];
|
|
5369
|
-
"type": "pubkey";
|
|
5370
|
-
},
|
|
5371
|
-
{
|
|
5372
|
-
"name": "referrer";
|
|
5373
|
-
"docs": [
|
|
5374
|
-
"Default GLAM referrer"
|
|
5375
|
-
];
|
|
5376
|
-
"type": "pubkey";
|
|
5377
|
-
},
|
|
5378
|
-
{
|
|
5379
|
-
"name": "baseFeeBps";
|
|
5380
|
-
"docs": [
|
|
5381
|
-
"Default protocol base fee applied to all vaults"
|
|
5382
|
-
];
|
|
5383
|
-
"type": "u16";
|
|
5384
|
-
},
|
|
5385
|
-
{
|
|
5386
|
-
"name": "flowFeeBps";
|
|
5387
|
-
"docs": [
|
|
5388
|
-
"Default protocol flow fee applied to all vaults"
|
|
5389
|
-
];
|
|
5390
|
-
"type": "u16";
|
|
5391
|
-
},
|
|
5392
|
-
{
|
|
5393
|
-
"name": "assetMetas";
|
|
5394
|
-
"docs": [
|
|
5395
|
-
"List of assets and their oracle configs supported by the protocol"
|
|
5396
|
-
];
|
|
5397
|
-
"type": {
|
|
5398
|
-
"vec": {
|
|
5399
|
-
"defined": {
|
|
5400
|
-
"name": "assetMeta";
|
|
5401
|
-
};
|
|
5402
|
-
};
|
|
5403
|
-
};
|
|
5404
|
-
}
|
|
5405
|
-
];
|
|
5406
|
-
};
|
|
5407
|
-
},
|
|
5408
5309
|
{
|
|
5409
5310
|
"name": "hurdleType";
|
|
5410
5311
|
"type": {
|
|
@@ -5761,77 +5662,6 @@ export type GlamMint = {
|
|
|
5761
5662
|
];
|
|
5762
5663
|
};
|
|
5763
5664
|
},
|
|
5764
|
-
{
|
|
5765
|
-
"name": "oracleSource";
|
|
5766
|
-
"type": {
|
|
5767
|
-
"kind": "enum";
|
|
5768
|
-
"variants": [
|
|
5769
|
-
{
|
|
5770
|
-
"name": "pyth";
|
|
5771
|
-
},
|
|
5772
|
-
{
|
|
5773
|
-
"name": "switchboard";
|
|
5774
|
-
},
|
|
5775
|
-
{
|
|
5776
|
-
"name": "quoteAsset";
|
|
5777
|
-
},
|
|
5778
|
-
{
|
|
5779
|
-
"name": "pyth1K";
|
|
5780
|
-
},
|
|
5781
|
-
{
|
|
5782
|
-
"name": "pyth1M";
|
|
5783
|
-
},
|
|
5784
|
-
{
|
|
5785
|
-
"name": "pythStableCoin";
|
|
5786
|
-
},
|
|
5787
|
-
{
|
|
5788
|
-
"name": "prelaunch";
|
|
5789
|
-
},
|
|
5790
|
-
{
|
|
5791
|
-
"name": "pythPull";
|
|
5792
|
-
},
|
|
5793
|
-
{
|
|
5794
|
-
"name": "pyth1KPull";
|
|
5795
|
-
},
|
|
5796
|
-
{
|
|
5797
|
-
"name": "pyth1MPull";
|
|
5798
|
-
},
|
|
5799
|
-
{
|
|
5800
|
-
"name": "pythStableCoinPull";
|
|
5801
|
-
},
|
|
5802
|
-
{
|
|
5803
|
-
"name": "switchboardOnDemand";
|
|
5804
|
-
},
|
|
5805
|
-
{
|
|
5806
|
-
"name": "pythLazer";
|
|
5807
|
-
},
|
|
5808
|
-
{
|
|
5809
|
-
"name": "pythLazer1K";
|
|
5810
|
-
},
|
|
5811
|
-
{
|
|
5812
|
-
"name": "pythLazer1M";
|
|
5813
|
-
},
|
|
5814
|
-
{
|
|
5815
|
-
"name": "pythLazerStableCoin";
|
|
5816
|
-
},
|
|
5817
|
-
{
|
|
5818
|
-
"name": "notSet";
|
|
5819
|
-
},
|
|
5820
|
-
{
|
|
5821
|
-
"name": "lstPoolState";
|
|
5822
|
-
},
|
|
5823
|
-
{
|
|
5824
|
-
"name": "marinadeState";
|
|
5825
|
-
},
|
|
5826
|
-
{
|
|
5827
|
-
"name": "baseAsset";
|
|
5828
|
-
},
|
|
5829
|
-
{
|
|
5830
|
-
"name": "chainlinkRwa";
|
|
5831
|
-
}
|
|
5832
|
-
];
|
|
5833
|
-
};
|
|
5834
|
-
},
|
|
5835
5665
|
{
|
|
5836
5666
|
"name": "pendingRequest";
|
|
5837
5667
|
"type": {
|