@venusprotocol/oracle 2.14.0-dev.1 → 2.14.0-dev.2

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.
@@ -5861,6 +5861,1014 @@
5861
5861
  }
5862
5862
  ]
5863
5863
  },
5864
+ "PendleOracle-PT-USDe-30OCT2025": {
5865
+ "address": "0xAa5138e86c078fd2859a929173B3870b5003EC30",
5866
+ "abi": [
5867
+ {
5868
+ "inputs": [
5869
+ {
5870
+ "components": [
5871
+ {
5872
+ "internalType": "address",
5873
+ "name": "market",
5874
+ "type": "address"
5875
+ },
5876
+ {
5877
+ "internalType": "address",
5878
+ "name": "ptOracle",
5879
+ "type": "address"
5880
+ },
5881
+ {
5882
+ "internalType": "enum PendleOracle.RateKind",
5883
+ "name": "rateKind",
5884
+ "type": "uint8"
5885
+ },
5886
+ {
5887
+ "internalType": "address",
5888
+ "name": "ptToken",
5889
+ "type": "address"
5890
+ },
5891
+ {
5892
+ "internalType": "address",
5893
+ "name": "underlyingToken",
5894
+ "type": "address"
5895
+ },
5896
+ {
5897
+ "internalType": "address",
5898
+ "name": "resilientOracle",
5899
+ "type": "address"
5900
+ },
5901
+ {
5902
+ "internalType": "uint32",
5903
+ "name": "twapDuration",
5904
+ "type": "uint32"
5905
+ },
5906
+ {
5907
+ "internalType": "uint256",
5908
+ "name": "annualGrowthRate",
5909
+ "type": "uint256"
5910
+ },
5911
+ {
5912
+ "internalType": "uint256",
5913
+ "name": "snapshotInterval",
5914
+ "type": "uint256"
5915
+ },
5916
+ {
5917
+ "internalType": "uint256",
5918
+ "name": "initialSnapshotMaxExchangeRate",
5919
+ "type": "uint256"
5920
+ },
5921
+ {
5922
+ "internalType": "uint256",
5923
+ "name": "initialSnapshotTimestamp",
5924
+ "type": "uint256"
5925
+ },
5926
+ {
5927
+ "internalType": "address",
5928
+ "name": "accessControlManager",
5929
+ "type": "address"
5930
+ },
5931
+ {
5932
+ "internalType": "uint256",
5933
+ "name": "snapshotGap",
5934
+ "type": "uint256"
5935
+ }
5936
+ ],
5937
+ "internalType": "struct PendleOracle.ConstructorParams",
5938
+ "name": "params",
5939
+ "type": "tuple"
5940
+ }
5941
+ ],
5942
+ "stateMutability": "nonpayable",
5943
+ "type": "constructor"
5944
+ },
5945
+ {
5946
+ "inputs": [],
5947
+ "name": "InvalidDuration",
5948
+ "type": "error"
5949
+ },
5950
+ {
5951
+ "inputs": [],
5952
+ "name": "InvalidGrowthRate",
5953
+ "type": "error"
5954
+ },
5955
+ {
5956
+ "inputs": [],
5957
+ "name": "InvalidInitialSnapshot",
5958
+ "type": "error"
5959
+ },
5960
+ {
5961
+ "inputs": [],
5962
+ "name": "InvalidSnapshotMaxExchangeRate",
5963
+ "type": "error"
5964
+ },
5965
+ {
5966
+ "inputs": [],
5967
+ "name": "InvalidTokenAddress",
5968
+ "type": "error"
5969
+ },
5970
+ {
5971
+ "inputs": [
5972
+ {
5973
+ "internalType": "address",
5974
+ "name": "sender",
5975
+ "type": "address"
5976
+ },
5977
+ {
5978
+ "internalType": "address",
5979
+ "name": "calledContract",
5980
+ "type": "address"
5981
+ },
5982
+ {
5983
+ "internalType": "string",
5984
+ "name": "methodSignature",
5985
+ "type": "string"
5986
+ }
5987
+ ],
5988
+ "name": "Unauthorized",
5989
+ "type": "error"
5990
+ },
5991
+ {
5992
+ "inputs": [],
5993
+ "name": "ZeroAddressNotAllowed",
5994
+ "type": "error"
5995
+ },
5996
+ {
5997
+ "inputs": [],
5998
+ "name": "ZeroValueNotAllowed",
5999
+ "type": "error"
6000
+ },
6001
+ {
6002
+ "anonymous": false,
6003
+ "inputs": [
6004
+ {
6005
+ "indexed": true,
6006
+ "internalType": "uint256",
6007
+ "name": "oldGrowthRatePerSecond",
6008
+ "type": "uint256"
6009
+ },
6010
+ {
6011
+ "indexed": true,
6012
+ "internalType": "uint256",
6013
+ "name": "newGrowthRatePerSecond",
6014
+ "type": "uint256"
6015
+ },
6016
+ {
6017
+ "indexed": true,
6018
+ "internalType": "uint256",
6019
+ "name": "oldSnapshotInterval",
6020
+ "type": "uint256"
6021
+ },
6022
+ {
6023
+ "indexed": false,
6024
+ "internalType": "uint256",
6025
+ "name": "newSnapshotInterval",
6026
+ "type": "uint256"
6027
+ }
6028
+ ],
6029
+ "name": "GrowthRateUpdated",
6030
+ "type": "event"
6031
+ },
6032
+ {
6033
+ "anonymous": false,
6034
+ "inputs": [
6035
+ {
6036
+ "indexed": true,
6037
+ "internalType": "uint256",
6038
+ "name": "oldSnapshotGap",
6039
+ "type": "uint256"
6040
+ },
6041
+ {
6042
+ "indexed": true,
6043
+ "internalType": "uint256",
6044
+ "name": "newSnapshotGap",
6045
+ "type": "uint256"
6046
+ }
6047
+ ],
6048
+ "name": "SnapshotGapUpdated",
6049
+ "type": "event"
6050
+ },
6051
+ {
6052
+ "anonymous": false,
6053
+ "inputs": [
6054
+ {
6055
+ "indexed": true,
6056
+ "internalType": "uint256",
6057
+ "name": "maxExchangeRate",
6058
+ "type": "uint256"
6059
+ },
6060
+ {
6061
+ "indexed": true,
6062
+ "internalType": "uint256",
6063
+ "name": "timestamp",
6064
+ "type": "uint256"
6065
+ }
6066
+ ],
6067
+ "name": "SnapshotUpdated",
6068
+ "type": "event"
6069
+ },
6070
+ {
6071
+ "inputs": [],
6072
+ "name": "ACCESS_CONTROL_MANAGER",
6073
+ "outputs": [
6074
+ {
6075
+ "internalType": "contract IAccessControlManagerV8",
6076
+ "name": "",
6077
+ "type": "address"
6078
+ }
6079
+ ],
6080
+ "stateMutability": "view",
6081
+ "type": "function"
6082
+ },
6083
+ {
6084
+ "inputs": [],
6085
+ "name": "CORRELATED_TOKEN",
6086
+ "outputs": [
6087
+ {
6088
+ "internalType": "address",
6089
+ "name": "",
6090
+ "type": "address"
6091
+ }
6092
+ ],
6093
+ "stateMutability": "view",
6094
+ "type": "function"
6095
+ },
6096
+ {
6097
+ "inputs": [],
6098
+ "name": "MARKET",
6099
+ "outputs": [
6100
+ {
6101
+ "internalType": "address",
6102
+ "name": "",
6103
+ "type": "address"
6104
+ }
6105
+ ],
6106
+ "stateMutability": "view",
6107
+ "type": "function"
6108
+ },
6109
+ {
6110
+ "inputs": [],
6111
+ "name": "PT_ORACLE",
6112
+ "outputs": [
6113
+ {
6114
+ "internalType": "contract IPendlePtOracle",
6115
+ "name": "",
6116
+ "type": "address"
6117
+ }
6118
+ ],
6119
+ "stateMutability": "view",
6120
+ "type": "function"
6121
+ },
6122
+ {
6123
+ "inputs": [],
6124
+ "name": "RATE_KIND",
6125
+ "outputs": [
6126
+ {
6127
+ "internalType": "enum PendleOracle.RateKind",
6128
+ "name": "",
6129
+ "type": "uint8"
6130
+ }
6131
+ ],
6132
+ "stateMutability": "view",
6133
+ "type": "function"
6134
+ },
6135
+ {
6136
+ "inputs": [],
6137
+ "name": "RESILIENT_ORACLE",
6138
+ "outputs": [
6139
+ {
6140
+ "internalType": "contract ResilientOracleInterface",
6141
+ "name": "",
6142
+ "type": "address"
6143
+ }
6144
+ ],
6145
+ "stateMutability": "view",
6146
+ "type": "function"
6147
+ },
6148
+ {
6149
+ "inputs": [],
6150
+ "name": "TWAP_DURATION",
6151
+ "outputs": [
6152
+ {
6153
+ "internalType": "uint32",
6154
+ "name": "",
6155
+ "type": "uint32"
6156
+ }
6157
+ ],
6158
+ "stateMutability": "view",
6159
+ "type": "function"
6160
+ },
6161
+ {
6162
+ "inputs": [],
6163
+ "name": "UNDERLYING_DECIMALS",
6164
+ "outputs": [
6165
+ {
6166
+ "internalType": "uint8",
6167
+ "name": "",
6168
+ "type": "uint8"
6169
+ }
6170
+ ],
6171
+ "stateMutability": "view",
6172
+ "type": "function"
6173
+ },
6174
+ {
6175
+ "inputs": [],
6176
+ "name": "UNDERLYING_TOKEN",
6177
+ "outputs": [
6178
+ {
6179
+ "internalType": "address",
6180
+ "name": "",
6181
+ "type": "address"
6182
+ }
6183
+ ],
6184
+ "stateMutability": "view",
6185
+ "type": "function"
6186
+ },
6187
+ {
6188
+ "inputs": [],
6189
+ "name": "getMaxAllowedExchangeRate",
6190
+ "outputs": [
6191
+ {
6192
+ "internalType": "uint256",
6193
+ "name": "",
6194
+ "type": "uint256"
6195
+ }
6196
+ ],
6197
+ "stateMutability": "view",
6198
+ "type": "function"
6199
+ },
6200
+ {
6201
+ "inputs": [
6202
+ {
6203
+ "internalType": "address",
6204
+ "name": "asset",
6205
+ "type": "address"
6206
+ }
6207
+ ],
6208
+ "name": "getPrice",
6209
+ "outputs": [
6210
+ {
6211
+ "internalType": "uint256",
6212
+ "name": "",
6213
+ "type": "uint256"
6214
+ }
6215
+ ],
6216
+ "stateMutability": "view",
6217
+ "type": "function"
6218
+ },
6219
+ {
6220
+ "inputs": [],
6221
+ "name": "getUnderlyingAmount",
6222
+ "outputs": [
6223
+ {
6224
+ "internalType": "uint256",
6225
+ "name": "",
6226
+ "type": "uint256"
6227
+ }
6228
+ ],
6229
+ "stateMutability": "view",
6230
+ "type": "function"
6231
+ },
6232
+ {
6233
+ "inputs": [],
6234
+ "name": "growthRatePerSecond",
6235
+ "outputs": [
6236
+ {
6237
+ "internalType": "uint256",
6238
+ "name": "",
6239
+ "type": "uint256"
6240
+ }
6241
+ ],
6242
+ "stateMutability": "view",
6243
+ "type": "function"
6244
+ },
6245
+ {
6246
+ "inputs": [],
6247
+ "name": "isCapped",
6248
+ "outputs": [
6249
+ {
6250
+ "internalType": "bool",
6251
+ "name": "",
6252
+ "type": "bool"
6253
+ }
6254
+ ],
6255
+ "stateMutability": "view",
6256
+ "type": "function"
6257
+ },
6258
+ {
6259
+ "inputs": [
6260
+ {
6261
+ "internalType": "uint256",
6262
+ "name": "_annualGrowthRate",
6263
+ "type": "uint256"
6264
+ },
6265
+ {
6266
+ "internalType": "uint256",
6267
+ "name": "_snapshotInterval",
6268
+ "type": "uint256"
6269
+ }
6270
+ ],
6271
+ "name": "setGrowthRate",
6272
+ "outputs": [],
6273
+ "stateMutability": "nonpayable",
6274
+ "type": "function"
6275
+ },
6276
+ {
6277
+ "inputs": [
6278
+ {
6279
+ "internalType": "uint256",
6280
+ "name": "_snapshotMaxExchangeRate",
6281
+ "type": "uint256"
6282
+ },
6283
+ {
6284
+ "internalType": "uint256",
6285
+ "name": "_snapshotTimestamp",
6286
+ "type": "uint256"
6287
+ }
6288
+ ],
6289
+ "name": "setSnapshot",
6290
+ "outputs": [],
6291
+ "stateMutability": "nonpayable",
6292
+ "type": "function"
6293
+ },
6294
+ {
6295
+ "inputs": [
6296
+ {
6297
+ "internalType": "uint256",
6298
+ "name": "_snapshotGap",
6299
+ "type": "uint256"
6300
+ }
6301
+ ],
6302
+ "name": "setSnapshotGap",
6303
+ "outputs": [],
6304
+ "stateMutability": "nonpayable",
6305
+ "type": "function"
6306
+ },
6307
+ {
6308
+ "inputs": [],
6309
+ "name": "snapshotGap",
6310
+ "outputs": [
6311
+ {
6312
+ "internalType": "uint256",
6313
+ "name": "",
6314
+ "type": "uint256"
6315
+ }
6316
+ ],
6317
+ "stateMutability": "view",
6318
+ "type": "function"
6319
+ },
6320
+ {
6321
+ "inputs": [],
6322
+ "name": "snapshotInterval",
6323
+ "outputs": [
6324
+ {
6325
+ "internalType": "uint256",
6326
+ "name": "",
6327
+ "type": "uint256"
6328
+ }
6329
+ ],
6330
+ "stateMutability": "view",
6331
+ "type": "function"
6332
+ },
6333
+ {
6334
+ "inputs": [],
6335
+ "name": "snapshotMaxExchangeRate",
6336
+ "outputs": [
6337
+ {
6338
+ "internalType": "uint256",
6339
+ "name": "",
6340
+ "type": "uint256"
6341
+ }
6342
+ ],
6343
+ "stateMutability": "view",
6344
+ "type": "function"
6345
+ },
6346
+ {
6347
+ "inputs": [],
6348
+ "name": "snapshotTimestamp",
6349
+ "outputs": [
6350
+ {
6351
+ "internalType": "uint256",
6352
+ "name": "",
6353
+ "type": "uint256"
6354
+ }
6355
+ ],
6356
+ "stateMutability": "view",
6357
+ "type": "function"
6358
+ },
6359
+ {
6360
+ "inputs": [],
6361
+ "name": "updateSnapshot",
6362
+ "outputs": [],
6363
+ "stateMutability": "nonpayable",
6364
+ "type": "function"
6365
+ }
6366
+ ]
6367
+ },
6368
+ "PendleOracle-PT-USDe-30OCT2025_Reference_PtToAsset": {
6369
+ "address": "0xa1041218273BB5F3f0bdD8B2BbaDACE05e2CF567",
6370
+ "abi": [
6371
+ {
6372
+ "inputs": [
6373
+ {
6374
+ "components": [
6375
+ {
6376
+ "internalType": "address",
6377
+ "name": "market",
6378
+ "type": "address"
6379
+ },
6380
+ {
6381
+ "internalType": "address",
6382
+ "name": "ptOracle",
6383
+ "type": "address"
6384
+ },
6385
+ {
6386
+ "internalType": "enum PendleOracle.RateKind",
6387
+ "name": "rateKind",
6388
+ "type": "uint8"
6389
+ },
6390
+ {
6391
+ "internalType": "address",
6392
+ "name": "ptToken",
6393
+ "type": "address"
6394
+ },
6395
+ {
6396
+ "internalType": "address",
6397
+ "name": "underlyingToken",
6398
+ "type": "address"
6399
+ },
6400
+ {
6401
+ "internalType": "address",
6402
+ "name": "resilientOracle",
6403
+ "type": "address"
6404
+ },
6405
+ {
6406
+ "internalType": "uint32",
6407
+ "name": "twapDuration",
6408
+ "type": "uint32"
6409
+ },
6410
+ {
6411
+ "internalType": "uint256",
6412
+ "name": "annualGrowthRate",
6413
+ "type": "uint256"
6414
+ },
6415
+ {
6416
+ "internalType": "uint256",
6417
+ "name": "snapshotInterval",
6418
+ "type": "uint256"
6419
+ },
6420
+ {
6421
+ "internalType": "uint256",
6422
+ "name": "initialSnapshotMaxExchangeRate",
6423
+ "type": "uint256"
6424
+ },
6425
+ {
6426
+ "internalType": "uint256",
6427
+ "name": "initialSnapshotTimestamp",
6428
+ "type": "uint256"
6429
+ },
6430
+ {
6431
+ "internalType": "address",
6432
+ "name": "accessControlManager",
6433
+ "type": "address"
6434
+ },
6435
+ {
6436
+ "internalType": "uint256",
6437
+ "name": "snapshotGap",
6438
+ "type": "uint256"
6439
+ }
6440
+ ],
6441
+ "internalType": "struct PendleOracle.ConstructorParams",
6442
+ "name": "params",
6443
+ "type": "tuple"
6444
+ }
6445
+ ],
6446
+ "stateMutability": "nonpayable",
6447
+ "type": "constructor"
6448
+ },
6449
+ {
6450
+ "inputs": [],
6451
+ "name": "InvalidDuration",
6452
+ "type": "error"
6453
+ },
6454
+ {
6455
+ "inputs": [],
6456
+ "name": "InvalidGrowthRate",
6457
+ "type": "error"
6458
+ },
6459
+ {
6460
+ "inputs": [],
6461
+ "name": "InvalidInitialSnapshot",
6462
+ "type": "error"
6463
+ },
6464
+ {
6465
+ "inputs": [],
6466
+ "name": "InvalidSnapshotMaxExchangeRate",
6467
+ "type": "error"
6468
+ },
6469
+ {
6470
+ "inputs": [],
6471
+ "name": "InvalidTokenAddress",
6472
+ "type": "error"
6473
+ },
6474
+ {
6475
+ "inputs": [
6476
+ {
6477
+ "internalType": "address",
6478
+ "name": "sender",
6479
+ "type": "address"
6480
+ },
6481
+ {
6482
+ "internalType": "address",
6483
+ "name": "calledContract",
6484
+ "type": "address"
6485
+ },
6486
+ {
6487
+ "internalType": "string",
6488
+ "name": "methodSignature",
6489
+ "type": "string"
6490
+ }
6491
+ ],
6492
+ "name": "Unauthorized",
6493
+ "type": "error"
6494
+ },
6495
+ {
6496
+ "inputs": [],
6497
+ "name": "ZeroAddressNotAllowed",
6498
+ "type": "error"
6499
+ },
6500
+ {
6501
+ "inputs": [],
6502
+ "name": "ZeroValueNotAllowed",
6503
+ "type": "error"
6504
+ },
6505
+ {
6506
+ "anonymous": false,
6507
+ "inputs": [
6508
+ {
6509
+ "indexed": true,
6510
+ "internalType": "uint256",
6511
+ "name": "oldGrowthRatePerSecond",
6512
+ "type": "uint256"
6513
+ },
6514
+ {
6515
+ "indexed": true,
6516
+ "internalType": "uint256",
6517
+ "name": "newGrowthRatePerSecond",
6518
+ "type": "uint256"
6519
+ },
6520
+ {
6521
+ "indexed": true,
6522
+ "internalType": "uint256",
6523
+ "name": "oldSnapshotInterval",
6524
+ "type": "uint256"
6525
+ },
6526
+ {
6527
+ "indexed": false,
6528
+ "internalType": "uint256",
6529
+ "name": "newSnapshotInterval",
6530
+ "type": "uint256"
6531
+ }
6532
+ ],
6533
+ "name": "GrowthRateUpdated",
6534
+ "type": "event"
6535
+ },
6536
+ {
6537
+ "anonymous": false,
6538
+ "inputs": [
6539
+ {
6540
+ "indexed": true,
6541
+ "internalType": "uint256",
6542
+ "name": "oldSnapshotGap",
6543
+ "type": "uint256"
6544
+ },
6545
+ {
6546
+ "indexed": true,
6547
+ "internalType": "uint256",
6548
+ "name": "newSnapshotGap",
6549
+ "type": "uint256"
6550
+ }
6551
+ ],
6552
+ "name": "SnapshotGapUpdated",
6553
+ "type": "event"
6554
+ },
6555
+ {
6556
+ "anonymous": false,
6557
+ "inputs": [
6558
+ {
6559
+ "indexed": true,
6560
+ "internalType": "uint256",
6561
+ "name": "maxExchangeRate",
6562
+ "type": "uint256"
6563
+ },
6564
+ {
6565
+ "indexed": true,
6566
+ "internalType": "uint256",
6567
+ "name": "timestamp",
6568
+ "type": "uint256"
6569
+ }
6570
+ ],
6571
+ "name": "SnapshotUpdated",
6572
+ "type": "event"
6573
+ },
6574
+ {
6575
+ "inputs": [],
6576
+ "name": "ACCESS_CONTROL_MANAGER",
6577
+ "outputs": [
6578
+ {
6579
+ "internalType": "contract IAccessControlManagerV8",
6580
+ "name": "",
6581
+ "type": "address"
6582
+ }
6583
+ ],
6584
+ "stateMutability": "view",
6585
+ "type": "function"
6586
+ },
6587
+ {
6588
+ "inputs": [],
6589
+ "name": "CORRELATED_TOKEN",
6590
+ "outputs": [
6591
+ {
6592
+ "internalType": "address",
6593
+ "name": "",
6594
+ "type": "address"
6595
+ }
6596
+ ],
6597
+ "stateMutability": "view",
6598
+ "type": "function"
6599
+ },
6600
+ {
6601
+ "inputs": [],
6602
+ "name": "MARKET",
6603
+ "outputs": [
6604
+ {
6605
+ "internalType": "address",
6606
+ "name": "",
6607
+ "type": "address"
6608
+ }
6609
+ ],
6610
+ "stateMutability": "view",
6611
+ "type": "function"
6612
+ },
6613
+ {
6614
+ "inputs": [],
6615
+ "name": "PT_ORACLE",
6616
+ "outputs": [
6617
+ {
6618
+ "internalType": "contract IPendlePtOracle",
6619
+ "name": "",
6620
+ "type": "address"
6621
+ }
6622
+ ],
6623
+ "stateMutability": "view",
6624
+ "type": "function"
6625
+ },
6626
+ {
6627
+ "inputs": [],
6628
+ "name": "RATE_KIND",
6629
+ "outputs": [
6630
+ {
6631
+ "internalType": "enum PendleOracle.RateKind",
6632
+ "name": "",
6633
+ "type": "uint8"
6634
+ }
6635
+ ],
6636
+ "stateMutability": "view",
6637
+ "type": "function"
6638
+ },
6639
+ {
6640
+ "inputs": [],
6641
+ "name": "RESILIENT_ORACLE",
6642
+ "outputs": [
6643
+ {
6644
+ "internalType": "contract ResilientOracleInterface",
6645
+ "name": "",
6646
+ "type": "address"
6647
+ }
6648
+ ],
6649
+ "stateMutability": "view",
6650
+ "type": "function"
6651
+ },
6652
+ {
6653
+ "inputs": [],
6654
+ "name": "TWAP_DURATION",
6655
+ "outputs": [
6656
+ {
6657
+ "internalType": "uint32",
6658
+ "name": "",
6659
+ "type": "uint32"
6660
+ }
6661
+ ],
6662
+ "stateMutability": "view",
6663
+ "type": "function"
6664
+ },
6665
+ {
6666
+ "inputs": [],
6667
+ "name": "UNDERLYING_DECIMALS",
6668
+ "outputs": [
6669
+ {
6670
+ "internalType": "uint8",
6671
+ "name": "",
6672
+ "type": "uint8"
6673
+ }
6674
+ ],
6675
+ "stateMutability": "view",
6676
+ "type": "function"
6677
+ },
6678
+ {
6679
+ "inputs": [],
6680
+ "name": "UNDERLYING_TOKEN",
6681
+ "outputs": [
6682
+ {
6683
+ "internalType": "address",
6684
+ "name": "",
6685
+ "type": "address"
6686
+ }
6687
+ ],
6688
+ "stateMutability": "view",
6689
+ "type": "function"
6690
+ },
6691
+ {
6692
+ "inputs": [],
6693
+ "name": "getMaxAllowedExchangeRate",
6694
+ "outputs": [
6695
+ {
6696
+ "internalType": "uint256",
6697
+ "name": "",
6698
+ "type": "uint256"
6699
+ }
6700
+ ],
6701
+ "stateMutability": "view",
6702
+ "type": "function"
6703
+ },
6704
+ {
6705
+ "inputs": [
6706
+ {
6707
+ "internalType": "address",
6708
+ "name": "asset",
6709
+ "type": "address"
6710
+ }
6711
+ ],
6712
+ "name": "getPrice",
6713
+ "outputs": [
6714
+ {
6715
+ "internalType": "uint256",
6716
+ "name": "",
6717
+ "type": "uint256"
6718
+ }
6719
+ ],
6720
+ "stateMutability": "view",
6721
+ "type": "function"
6722
+ },
6723
+ {
6724
+ "inputs": [],
6725
+ "name": "getUnderlyingAmount",
6726
+ "outputs": [
6727
+ {
6728
+ "internalType": "uint256",
6729
+ "name": "",
6730
+ "type": "uint256"
6731
+ }
6732
+ ],
6733
+ "stateMutability": "view",
6734
+ "type": "function"
6735
+ },
6736
+ {
6737
+ "inputs": [],
6738
+ "name": "growthRatePerSecond",
6739
+ "outputs": [
6740
+ {
6741
+ "internalType": "uint256",
6742
+ "name": "",
6743
+ "type": "uint256"
6744
+ }
6745
+ ],
6746
+ "stateMutability": "view",
6747
+ "type": "function"
6748
+ },
6749
+ {
6750
+ "inputs": [],
6751
+ "name": "isCapped",
6752
+ "outputs": [
6753
+ {
6754
+ "internalType": "bool",
6755
+ "name": "",
6756
+ "type": "bool"
6757
+ }
6758
+ ],
6759
+ "stateMutability": "view",
6760
+ "type": "function"
6761
+ },
6762
+ {
6763
+ "inputs": [
6764
+ {
6765
+ "internalType": "uint256",
6766
+ "name": "_annualGrowthRate",
6767
+ "type": "uint256"
6768
+ },
6769
+ {
6770
+ "internalType": "uint256",
6771
+ "name": "_snapshotInterval",
6772
+ "type": "uint256"
6773
+ }
6774
+ ],
6775
+ "name": "setGrowthRate",
6776
+ "outputs": [],
6777
+ "stateMutability": "nonpayable",
6778
+ "type": "function"
6779
+ },
6780
+ {
6781
+ "inputs": [
6782
+ {
6783
+ "internalType": "uint256",
6784
+ "name": "_snapshotMaxExchangeRate",
6785
+ "type": "uint256"
6786
+ },
6787
+ {
6788
+ "internalType": "uint256",
6789
+ "name": "_snapshotTimestamp",
6790
+ "type": "uint256"
6791
+ }
6792
+ ],
6793
+ "name": "setSnapshot",
6794
+ "outputs": [],
6795
+ "stateMutability": "nonpayable",
6796
+ "type": "function"
6797
+ },
6798
+ {
6799
+ "inputs": [
6800
+ {
6801
+ "internalType": "uint256",
6802
+ "name": "_snapshotGap",
6803
+ "type": "uint256"
6804
+ }
6805
+ ],
6806
+ "name": "setSnapshotGap",
6807
+ "outputs": [],
6808
+ "stateMutability": "nonpayable",
6809
+ "type": "function"
6810
+ },
6811
+ {
6812
+ "inputs": [],
6813
+ "name": "snapshotGap",
6814
+ "outputs": [
6815
+ {
6816
+ "internalType": "uint256",
6817
+ "name": "",
6818
+ "type": "uint256"
6819
+ }
6820
+ ],
6821
+ "stateMutability": "view",
6822
+ "type": "function"
6823
+ },
6824
+ {
6825
+ "inputs": [],
6826
+ "name": "snapshotInterval",
6827
+ "outputs": [
6828
+ {
6829
+ "internalType": "uint256",
6830
+ "name": "",
6831
+ "type": "uint256"
6832
+ }
6833
+ ],
6834
+ "stateMutability": "view",
6835
+ "type": "function"
6836
+ },
6837
+ {
6838
+ "inputs": [],
6839
+ "name": "snapshotMaxExchangeRate",
6840
+ "outputs": [
6841
+ {
6842
+ "internalType": "uint256",
6843
+ "name": "",
6844
+ "type": "uint256"
6845
+ }
6846
+ ],
6847
+ "stateMutability": "view",
6848
+ "type": "function"
6849
+ },
6850
+ {
6851
+ "inputs": [],
6852
+ "name": "snapshotTimestamp",
6853
+ "outputs": [
6854
+ {
6855
+ "internalType": "uint256",
6856
+ "name": "",
6857
+ "type": "uint256"
6858
+ }
6859
+ ],
6860
+ "stateMutability": "view",
6861
+ "type": "function"
6862
+ },
6863
+ {
6864
+ "inputs": [],
6865
+ "name": "updateSnapshot",
6866
+ "outputs": [],
6867
+ "stateMutability": "nonpayable",
6868
+ "type": "function"
6869
+ }
6870
+ ]
6871
+ },
5864
6872
  "PendleOracle-PT-clisBNB-24APR2025": {
5865
6873
  "address": "0xEa7a92D12196A325C76ED26DBd36629d7EC46459",
5866
6874
  "abi": [