@venusprotocol/oracle 2.15.0-dev.5 → 2.15.0-dev.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.
@@ -8077,6 +8077,1014 @@
8077
8077
  }
8078
8078
  ]
8079
8079
  },
8080
+ "PendleOracle-PT-clisBNB-25JUN2026": {
8081
+ "address": "0x0FfFBb55d51cD46cD10C7dc865Dc73BD76201310",
8082
+ "abi": [
8083
+ {
8084
+ "inputs": [
8085
+ {
8086
+ "components": [
8087
+ {
8088
+ "internalType": "address",
8089
+ "name": "market",
8090
+ "type": "address"
8091
+ },
8092
+ {
8093
+ "internalType": "address",
8094
+ "name": "ptOracle",
8095
+ "type": "address"
8096
+ },
8097
+ {
8098
+ "internalType": "enum PendleOracle.RateKind",
8099
+ "name": "rateKind",
8100
+ "type": "uint8"
8101
+ },
8102
+ {
8103
+ "internalType": "address",
8104
+ "name": "ptToken",
8105
+ "type": "address"
8106
+ },
8107
+ {
8108
+ "internalType": "address",
8109
+ "name": "underlyingToken",
8110
+ "type": "address"
8111
+ },
8112
+ {
8113
+ "internalType": "address",
8114
+ "name": "resilientOracle",
8115
+ "type": "address"
8116
+ },
8117
+ {
8118
+ "internalType": "uint32",
8119
+ "name": "twapDuration",
8120
+ "type": "uint32"
8121
+ },
8122
+ {
8123
+ "internalType": "uint256",
8124
+ "name": "annualGrowthRate",
8125
+ "type": "uint256"
8126
+ },
8127
+ {
8128
+ "internalType": "uint256",
8129
+ "name": "snapshotInterval",
8130
+ "type": "uint256"
8131
+ },
8132
+ {
8133
+ "internalType": "uint256",
8134
+ "name": "initialSnapshotMaxExchangeRate",
8135
+ "type": "uint256"
8136
+ },
8137
+ {
8138
+ "internalType": "uint256",
8139
+ "name": "initialSnapshotTimestamp",
8140
+ "type": "uint256"
8141
+ },
8142
+ {
8143
+ "internalType": "address",
8144
+ "name": "accessControlManager",
8145
+ "type": "address"
8146
+ },
8147
+ {
8148
+ "internalType": "uint256",
8149
+ "name": "snapshotGap",
8150
+ "type": "uint256"
8151
+ }
8152
+ ],
8153
+ "internalType": "struct PendleOracle.ConstructorParams",
8154
+ "name": "params",
8155
+ "type": "tuple"
8156
+ }
8157
+ ],
8158
+ "stateMutability": "nonpayable",
8159
+ "type": "constructor"
8160
+ },
8161
+ {
8162
+ "inputs": [],
8163
+ "name": "InvalidDuration",
8164
+ "type": "error"
8165
+ },
8166
+ {
8167
+ "inputs": [],
8168
+ "name": "InvalidGrowthRate",
8169
+ "type": "error"
8170
+ },
8171
+ {
8172
+ "inputs": [],
8173
+ "name": "InvalidInitialSnapshot",
8174
+ "type": "error"
8175
+ },
8176
+ {
8177
+ "inputs": [],
8178
+ "name": "InvalidSnapshotMaxExchangeRate",
8179
+ "type": "error"
8180
+ },
8181
+ {
8182
+ "inputs": [],
8183
+ "name": "InvalidTokenAddress",
8184
+ "type": "error"
8185
+ },
8186
+ {
8187
+ "inputs": [
8188
+ {
8189
+ "internalType": "address",
8190
+ "name": "sender",
8191
+ "type": "address"
8192
+ },
8193
+ {
8194
+ "internalType": "address",
8195
+ "name": "calledContract",
8196
+ "type": "address"
8197
+ },
8198
+ {
8199
+ "internalType": "string",
8200
+ "name": "methodSignature",
8201
+ "type": "string"
8202
+ }
8203
+ ],
8204
+ "name": "Unauthorized",
8205
+ "type": "error"
8206
+ },
8207
+ {
8208
+ "inputs": [],
8209
+ "name": "ZeroAddressNotAllowed",
8210
+ "type": "error"
8211
+ },
8212
+ {
8213
+ "inputs": [],
8214
+ "name": "ZeroValueNotAllowed",
8215
+ "type": "error"
8216
+ },
8217
+ {
8218
+ "anonymous": false,
8219
+ "inputs": [
8220
+ {
8221
+ "indexed": true,
8222
+ "internalType": "uint256",
8223
+ "name": "oldGrowthRatePerSecond",
8224
+ "type": "uint256"
8225
+ },
8226
+ {
8227
+ "indexed": true,
8228
+ "internalType": "uint256",
8229
+ "name": "newGrowthRatePerSecond",
8230
+ "type": "uint256"
8231
+ },
8232
+ {
8233
+ "indexed": true,
8234
+ "internalType": "uint256",
8235
+ "name": "oldSnapshotInterval",
8236
+ "type": "uint256"
8237
+ },
8238
+ {
8239
+ "indexed": false,
8240
+ "internalType": "uint256",
8241
+ "name": "newSnapshotInterval",
8242
+ "type": "uint256"
8243
+ }
8244
+ ],
8245
+ "name": "GrowthRateUpdated",
8246
+ "type": "event"
8247
+ },
8248
+ {
8249
+ "anonymous": false,
8250
+ "inputs": [
8251
+ {
8252
+ "indexed": true,
8253
+ "internalType": "uint256",
8254
+ "name": "oldSnapshotGap",
8255
+ "type": "uint256"
8256
+ },
8257
+ {
8258
+ "indexed": true,
8259
+ "internalType": "uint256",
8260
+ "name": "newSnapshotGap",
8261
+ "type": "uint256"
8262
+ }
8263
+ ],
8264
+ "name": "SnapshotGapUpdated",
8265
+ "type": "event"
8266
+ },
8267
+ {
8268
+ "anonymous": false,
8269
+ "inputs": [
8270
+ {
8271
+ "indexed": true,
8272
+ "internalType": "uint256",
8273
+ "name": "maxExchangeRate",
8274
+ "type": "uint256"
8275
+ },
8276
+ {
8277
+ "indexed": true,
8278
+ "internalType": "uint256",
8279
+ "name": "timestamp",
8280
+ "type": "uint256"
8281
+ }
8282
+ ],
8283
+ "name": "SnapshotUpdated",
8284
+ "type": "event"
8285
+ },
8286
+ {
8287
+ "inputs": [],
8288
+ "name": "ACCESS_CONTROL_MANAGER",
8289
+ "outputs": [
8290
+ {
8291
+ "internalType": "contract IAccessControlManagerV8",
8292
+ "name": "",
8293
+ "type": "address"
8294
+ }
8295
+ ],
8296
+ "stateMutability": "view",
8297
+ "type": "function"
8298
+ },
8299
+ {
8300
+ "inputs": [],
8301
+ "name": "CORRELATED_TOKEN",
8302
+ "outputs": [
8303
+ {
8304
+ "internalType": "address",
8305
+ "name": "",
8306
+ "type": "address"
8307
+ }
8308
+ ],
8309
+ "stateMutability": "view",
8310
+ "type": "function"
8311
+ },
8312
+ {
8313
+ "inputs": [],
8314
+ "name": "MARKET",
8315
+ "outputs": [
8316
+ {
8317
+ "internalType": "address",
8318
+ "name": "",
8319
+ "type": "address"
8320
+ }
8321
+ ],
8322
+ "stateMutability": "view",
8323
+ "type": "function"
8324
+ },
8325
+ {
8326
+ "inputs": [],
8327
+ "name": "PT_ORACLE",
8328
+ "outputs": [
8329
+ {
8330
+ "internalType": "contract IPendlePtOracle",
8331
+ "name": "",
8332
+ "type": "address"
8333
+ }
8334
+ ],
8335
+ "stateMutability": "view",
8336
+ "type": "function"
8337
+ },
8338
+ {
8339
+ "inputs": [],
8340
+ "name": "RATE_KIND",
8341
+ "outputs": [
8342
+ {
8343
+ "internalType": "enum PendleOracle.RateKind",
8344
+ "name": "",
8345
+ "type": "uint8"
8346
+ }
8347
+ ],
8348
+ "stateMutability": "view",
8349
+ "type": "function"
8350
+ },
8351
+ {
8352
+ "inputs": [],
8353
+ "name": "RESILIENT_ORACLE",
8354
+ "outputs": [
8355
+ {
8356
+ "internalType": "contract ResilientOracleInterface",
8357
+ "name": "",
8358
+ "type": "address"
8359
+ }
8360
+ ],
8361
+ "stateMutability": "view",
8362
+ "type": "function"
8363
+ },
8364
+ {
8365
+ "inputs": [],
8366
+ "name": "TWAP_DURATION",
8367
+ "outputs": [
8368
+ {
8369
+ "internalType": "uint32",
8370
+ "name": "",
8371
+ "type": "uint32"
8372
+ }
8373
+ ],
8374
+ "stateMutability": "view",
8375
+ "type": "function"
8376
+ },
8377
+ {
8378
+ "inputs": [],
8379
+ "name": "UNDERLYING_DECIMALS",
8380
+ "outputs": [
8381
+ {
8382
+ "internalType": "uint8",
8383
+ "name": "",
8384
+ "type": "uint8"
8385
+ }
8386
+ ],
8387
+ "stateMutability": "view",
8388
+ "type": "function"
8389
+ },
8390
+ {
8391
+ "inputs": [],
8392
+ "name": "UNDERLYING_TOKEN",
8393
+ "outputs": [
8394
+ {
8395
+ "internalType": "address",
8396
+ "name": "",
8397
+ "type": "address"
8398
+ }
8399
+ ],
8400
+ "stateMutability": "view",
8401
+ "type": "function"
8402
+ },
8403
+ {
8404
+ "inputs": [],
8405
+ "name": "getMaxAllowedExchangeRate",
8406
+ "outputs": [
8407
+ {
8408
+ "internalType": "uint256",
8409
+ "name": "",
8410
+ "type": "uint256"
8411
+ }
8412
+ ],
8413
+ "stateMutability": "view",
8414
+ "type": "function"
8415
+ },
8416
+ {
8417
+ "inputs": [
8418
+ {
8419
+ "internalType": "address",
8420
+ "name": "asset",
8421
+ "type": "address"
8422
+ }
8423
+ ],
8424
+ "name": "getPrice",
8425
+ "outputs": [
8426
+ {
8427
+ "internalType": "uint256",
8428
+ "name": "",
8429
+ "type": "uint256"
8430
+ }
8431
+ ],
8432
+ "stateMutability": "view",
8433
+ "type": "function"
8434
+ },
8435
+ {
8436
+ "inputs": [],
8437
+ "name": "getUnderlyingAmount",
8438
+ "outputs": [
8439
+ {
8440
+ "internalType": "uint256",
8441
+ "name": "",
8442
+ "type": "uint256"
8443
+ }
8444
+ ],
8445
+ "stateMutability": "view",
8446
+ "type": "function"
8447
+ },
8448
+ {
8449
+ "inputs": [],
8450
+ "name": "growthRatePerSecond",
8451
+ "outputs": [
8452
+ {
8453
+ "internalType": "uint256",
8454
+ "name": "",
8455
+ "type": "uint256"
8456
+ }
8457
+ ],
8458
+ "stateMutability": "view",
8459
+ "type": "function"
8460
+ },
8461
+ {
8462
+ "inputs": [],
8463
+ "name": "isCapped",
8464
+ "outputs": [
8465
+ {
8466
+ "internalType": "bool",
8467
+ "name": "",
8468
+ "type": "bool"
8469
+ }
8470
+ ],
8471
+ "stateMutability": "view",
8472
+ "type": "function"
8473
+ },
8474
+ {
8475
+ "inputs": [
8476
+ {
8477
+ "internalType": "uint256",
8478
+ "name": "_annualGrowthRate",
8479
+ "type": "uint256"
8480
+ },
8481
+ {
8482
+ "internalType": "uint256",
8483
+ "name": "_snapshotInterval",
8484
+ "type": "uint256"
8485
+ }
8486
+ ],
8487
+ "name": "setGrowthRate",
8488
+ "outputs": [],
8489
+ "stateMutability": "nonpayable",
8490
+ "type": "function"
8491
+ },
8492
+ {
8493
+ "inputs": [
8494
+ {
8495
+ "internalType": "uint256",
8496
+ "name": "_snapshotMaxExchangeRate",
8497
+ "type": "uint256"
8498
+ },
8499
+ {
8500
+ "internalType": "uint256",
8501
+ "name": "_snapshotTimestamp",
8502
+ "type": "uint256"
8503
+ }
8504
+ ],
8505
+ "name": "setSnapshot",
8506
+ "outputs": [],
8507
+ "stateMutability": "nonpayable",
8508
+ "type": "function"
8509
+ },
8510
+ {
8511
+ "inputs": [
8512
+ {
8513
+ "internalType": "uint256",
8514
+ "name": "_snapshotGap",
8515
+ "type": "uint256"
8516
+ }
8517
+ ],
8518
+ "name": "setSnapshotGap",
8519
+ "outputs": [],
8520
+ "stateMutability": "nonpayable",
8521
+ "type": "function"
8522
+ },
8523
+ {
8524
+ "inputs": [],
8525
+ "name": "snapshotGap",
8526
+ "outputs": [
8527
+ {
8528
+ "internalType": "uint256",
8529
+ "name": "",
8530
+ "type": "uint256"
8531
+ }
8532
+ ],
8533
+ "stateMutability": "view",
8534
+ "type": "function"
8535
+ },
8536
+ {
8537
+ "inputs": [],
8538
+ "name": "snapshotInterval",
8539
+ "outputs": [
8540
+ {
8541
+ "internalType": "uint256",
8542
+ "name": "",
8543
+ "type": "uint256"
8544
+ }
8545
+ ],
8546
+ "stateMutability": "view",
8547
+ "type": "function"
8548
+ },
8549
+ {
8550
+ "inputs": [],
8551
+ "name": "snapshotMaxExchangeRate",
8552
+ "outputs": [
8553
+ {
8554
+ "internalType": "uint256",
8555
+ "name": "",
8556
+ "type": "uint256"
8557
+ }
8558
+ ],
8559
+ "stateMutability": "view",
8560
+ "type": "function"
8561
+ },
8562
+ {
8563
+ "inputs": [],
8564
+ "name": "snapshotTimestamp",
8565
+ "outputs": [
8566
+ {
8567
+ "internalType": "uint256",
8568
+ "name": "",
8569
+ "type": "uint256"
8570
+ }
8571
+ ],
8572
+ "stateMutability": "view",
8573
+ "type": "function"
8574
+ },
8575
+ {
8576
+ "inputs": [],
8577
+ "name": "updateSnapshot",
8578
+ "outputs": [],
8579
+ "stateMutability": "nonpayable",
8580
+ "type": "function"
8581
+ }
8582
+ ]
8583
+ },
8584
+ "PendleOracle-PT-clisBNB-25JUN2026_Reference_PtToAsset": {
8585
+ "address": "0xc94866f155FEA46C398385665B08B813D20DF802",
8586
+ "abi": [
8587
+ {
8588
+ "inputs": [
8589
+ {
8590
+ "components": [
8591
+ {
8592
+ "internalType": "address",
8593
+ "name": "market",
8594
+ "type": "address"
8595
+ },
8596
+ {
8597
+ "internalType": "address",
8598
+ "name": "ptOracle",
8599
+ "type": "address"
8600
+ },
8601
+ {
8602
+ "internalType": "enum PendleOracle.RateKind",
8603
+ "name": "rateKind",
8604
+ "type": "uint8"
8605
+ },
8606
+ {
8607
+ "internalType": "address",
8608
+ "name": "ptToken",
8609
+ "type": "address"
8610
+ },
8611
+ {
8612
+ "internalType": "address",
8613
+ "name": "underlyingToken",
8614
+ "type": "address"
8615
+ },
8616
+ {
8617
+ "internalType": "address",
8618
+ "name": "resilientOracle",
8619
+ "type": "address"
8620
+ },
8621
+ {
8622
+ "internalType": "uint32",
8623
+ "name": "twapDuration",
8624
+ "type": "uint32"
8625
+ },
8626
+ {
8627
+ "internalType": "uint256",
8628
+ "name": "annualGrowthRate",
8629
+ "type": "uint256"
8630
+ },
8631
+ {
8632
+ "internalType": "uint256",
8633
+ "name": "snapshotInterval",
8634
+ "type": "uint256"
8635
+ },
8636
+ {
8637
+ "internalType": "uint256",
8638
+ "name": "initialSnapshotMaxExchangeRate",
8639
+ "type": "uint256"
8640
+ },
8641
+ {
8642
+ "internalType": "uint256",
8643
+ "name": "initialSnapshotTimestamp",
8644
+ "type": "uint256"
8645
+ },
8646
+ {
8647
+ "internalType": "address",
8648
+ "name": "accessControlManager",
8649
+ "type": "address"
8650
+ },
8651
+ {
8652
+ "internalType": "uint256",
8653
+ "name": "snapshotGap",
8654
+ "type": "uint256"
8655
+ }
8656
+ ],
8657
+ "internalType": "struct PendleOracle.ConstructorParams",
8658
+ "name": "params",
8659
+ "type": "tuple"
8660
+ }
8661
+ ],
8662
+ "stateMutability": "nonpayable",
8663
+ "type": "constructor"
8664
+ },
8665
+ {
8666
+ "inputs": [],
8667
+ "name": "InvalidDuration",
8668
+ "type": "error"
8669
+ },
8670
+ {
8671
+ "inputs": [],
8672
+ "name": "InvalidGrowthRate",
8673
+ "type": "error"
8674
+ },
8675
+ {
8676
+ "inputs": [],
8677
+ "name": "InvalidInitialSnapshot",
8678
+ "type": "error"
8679
+ },
8680
+ {
8681
+ "inputs": [],
8682
+ "name": "InvalidSnapshotMaxExchangeRate",
8683
+ "type": "error"
8684
+ },
8685
+ {
8686
+ "inputs": [],
8687
+ "name": "InvalidTokenAddress",
8688
+ "type": "error"
8689
+ },
8690
+ {
8691
+ "inputs": [
8692
+ {
8693
+ "internalType": "address",
8694
+ "name": "sender",
8695
+ "type": "address"
8696
+ },
8697
+ {
8698
+ "internalType": "address",
8699
+ "name": "calledContract",
8700
+ "type": "address"
8701
+ },
8702
+ {
8703
+ "internalType": "string",
8704
+ "name": "methodSignature",
8705
+ "type": "string"
8706
+ }
8707
+ ],
8708
+ "name": "Unauthorized",
8709
+ "type": "error"
8710
+ },
8711
+ {
8712
+ "inputs": [],
8713
+ "name": "ZeroAddressNotAllowed",
8714
+ "type": "error"
8715
+ },
8716
+ {
8717
+ "inputs": [],
8718
+ "name": "ZeroValueNotAllowed",
8719
+ "type": "error"
8720
+ },
8721
+ {
8722
+ "anonymous": false,
8723
+ "inputs": [
8724
+ {
8725
+ "indexed": true,
8726
+ "internalType": "uint256",
8727
+ "name": "oldGrowthRatePerSecond",
8728
+ "type": "uint256"
8729
+ },
8730
+ {
8731
+ "indexed": true,
8732
+ "internalType": "uint256",
8733
+ "name": "newGrowthRatePerSecond",
8734
+ "type": "uint256"
8735
+ },
8736
+ {
8737
+ "indexed": true,
8738
+ "internalType": "uint256",
8739
+ "name": "oldSnapshotInterval",
8740
+ "type": "uint256"
8741
+ },
8742
+ {
8743
+ "indexed": false,
8744
+ "internalType": "uint256",
8745
+ "name": "newSnapshotInterval",
8746
+ "type": "uint256"
8747
+ }
8748
+ ],
8749
+ "name": "GrowthRateUpdated",
8750
+ "type": "event"
8751
+ },
8752
+ {
8753
+ "anonymous": false,
8754
+ "inputs": [
8755
+ {
8756
+ "indexed": true,
8757
+ "internalType": "uint256",
8758
+ "name": "oldSnapshotGap",
8759
+ "type": "uint256"
8760
+ },
8761
+ {
8762
+ "indexed": true,
8763
+ "internalType": "uint256",
8764
+ "name": "newSnapshotGap",
8765
+ "type": "uint256"
8766
+ }
8767
+ ],
8768
+ "name": "SnapshotGapUpdated",
8769
+ "type": "event"
8770
+ },
8771
+ {
8772
+ "anonymous": false,
8773
+ "inputs": [
8774
+ {
8775
+ "indexed": true,
8776
+ "internalType": "uint256",
8777
+ "name": "maxExchangeRate",
8778
+ "type": "uint256"
8779
+ },
8780
+ {
8781
+ "indexed": true,
8782
+ "internalType": "uint256",
8783
+ "name": "timestamp",
8784
+ "type": "uint256"
8785
+ }
8786
+ ],
8787
+ "name": "SnapshotUpdated",
8788
+ "type": "event"
8789
+ },
8790
+ {
8791
+ "inputs": [],
8792
+ "name": "ACCESS_CONTROL_MANAGER",
8793
+ "outputs": [
8794
+ {
8795
+ "internalType": "contract IAccessControlManagerV8",
8796
+ "name": "",
8797
+ "type": "address"
8798
+ }
8799
+ ],
8800
+ "stateMutability": "view",
8801
+ "type": "function"
8802
+ },
8803
+ {
8804
+ "inputs": [],
8805
+ "name": "CORRELATED_TOKEN",
8806
+ "outputs": [
8807
+ {
8808
+ "internalType": "address",
8809
+ "name": "",
8810
+ "type": "address"
8811
+ }
8812
+ ],
8813
+ "stateMutability": "view",
8814
+ "type": "function"
8815
+ },
8816
+ {
8817
+ "inputs": [],
8818
+ "name": "MARKET",
8819
+ "outputs": [
8820
+ {
8821
+ "internalType": "address",
8822
+ "name": "",
8823
+ "type": "address"
8824
+ }
8825
+ ],
8826
+ "stateMutability": "view",
8827
+ "type": "function"
8828
+ },
8829
+ {
8830
+ "inputs": [],
8831
+ "name": "PT_ORACLE",
8832
+ "outputs": [
8833
+ {
8834
+ "internalType": "contract IPendlePtOracle",
8835
+ "name": "",
8836
+ "type": "address"
8837
+ }
8838
+ ],
8839
+ "stateMutability": "view",
8840
+ "type": "function"
8841
+ },
8842
+ {
8843
+ "inputs": [],
8844
+ "name": "RATE_KIND",
8845
+ "outputs": [
8846
+ {
8847
+ "internalType": "enum PendleOracle.RateKind",
8848
+ "name": "",
8849
+ "type": "uint8"
8850
+ }
8851
+ ],
8852
+ "stateMutability": "view",
8853
+ "type": "function"
8854
+ },
8855
+ {
8856
+ "inputs": [],
8857
+ "name": "RESILIENT_ORACLE",
8858
+ "outputs": [
8859
+ {
8860
+ "internalType": "contract ResilientOracleInterface",
8861
+ "name": "",
8862
+ "type": "address"
8863
+ }
8864
+ ],
8865
+ "stateMutability": "view",
8866
+ "type": "function"
8867
+ },
8868
+ {
8869
+ "inputs": [],
8870
+ "name": "TWAP_DURATION",
8871
+ "outputs": [
8872
+ {
8873
+ "internalType": "uint32",
8874
+ "name": "",
8875
+ "type": "uint32"
8876
+ }
8877
+ ],
8878
+ "stateMutability": "view",
8879
+ "type": "function"
8880
+ },
8881
+ {
8882
+ "inputs": [],
8883
+ "name": "UNDERLYING_DECIMALS",
8884
+ "outputs": [
8885
+ {
8886
+ "internalType": "uint8",
8887
+ "name": "",
8888
+ "type": "uint8"
8889
+ }
8890
+ ],
8891
+ "stateMutability": "view",
8892
+ "type": "function"
8893
+ },
8894
+ {
8895
+ "inputs": [],
8896
+ "name": "UNDERLYING_TOKEN",
8897
+ "outputs": [
8898
+ {
8899
+ "internalType": "address",
8900
+ "name": "",
8901
+ "type": "address"
8902
+ }
8903
+ ],
8904
+ "stateMutability": "view",
8905
+ "type": "function"
8906
+ },
8907
+ {
8908
+ "inputs": [],
8909
+ "name": "getMaxAllowedExchangeRate",
8910
+ "outputs": [
8911
+ {
8912
+ "internalType": "uint256",
8913
+ "name": "",
8914
+ "type": "uint256"
8915
+ }
8916
+ ],
8917
+ "stateMutability": "view",
8918
+ "type": "function"
8919
+ },
8920
+ {
8921
+ "inputs": [
8922
+ {
8923
+ "internalType": "address",
8924
+ "name": "asset",
8925
+ "type": "address"
8926
+ }
8927
+ ],
8928
+ "name": "getPrice",
8929
+ "outputs": [
8930
+ {
8931
+ "internalType": "uint256",
8932
+ "name": "",
8933
+ "type": "uint256"
8934
+ }
8935
+ ],
8936
+ "stateMutability": "view",
8937
+ "type": "function"
8938
+ },
8939
+ {
8940
+ "inputs": [],
8941
+ "name": "getUnderlyingAmount",
8942
+ "outputs": [
8943
+ {
8944
+ "internalType": "uint256",
8945
+ "name": "",
8946
+ "type": "uint256"
8947
+ }
8948
+ ],
8949
+ "stateMutability": "view",
8950
+ "type": "function"
8951
+ },
8952
+ {
8953
+ "inputs": [],
8954
+ "name": "growthRatePerSecond",
8955
+ "outputs": [
8956
+ {
8957
+ "internalType": "uint256",
8958
+ "name": "",
8959
+ "type": "uint256"
8960
+ }
8961
+ ],
8962
+ "stateMutability": "view",
8963
+ "type": "function"
8964
+ },
8965
+ {
8966
+ "inputs": [],
8967
+ "name": "isCapped",
8968
+ "outputs": [
8969
+ {
8970
+ "internalType": "bool",
8971
+ "name": "",
8972
+ "type": "bool"
8973
+ }
8974
+ ],
8975
+ "stateMutability": "view",
8976
+ "type": "function"
8977
+ },
8978
+ {
8979
+ "inputs": [
8980
+ {
8981
+ "internalType": "uint256",
8982
+ "name": "_annualGrowthRate",
8983
+ "type": "uint256"
8984
+ },
8985
+ {
8986
+ "internalType": "uint256",
8987
+ "name": "_snapshotInterval",
8988
+ "type": "uint256"
8989
+ }
8990
+ ],
8991
+ "name": "setGrowthRate",
8992
+ "outputs": [],
8993
+ "stateMutability": "nonpayable",
8994
+ "type": "function"
8995
+ },
8996
+ {
8997
+ "inputs": [
8998
+ {
8999
+ "internalType": "uint256",
9000
+ "name": "_snapshotMaxExchangeRate",
9001
+ "type": "uint256"
9002
+ },
9003
+ {
9004
+ "internalType": "uint256",
9005
+ "name": "_snapshotTimestamp",
9006
+ "type": "uint256"
9007
+ }
9008
+ ],
9009
+ "name": "setSnapshot",
9010
+ "outputs": [],
9011
+ "stateMutability": "nonpayable",
9012
+ "type": "function"
9013
+ },
9014
+ {
9015
+ "inputs": [
9016
+ {
9017
+ "internalType": "uint256",
9018
+ "name": "_snapshotGap",
9019
+ "type": "uint256"
9020
+ }
9021
+ ],
9022
+ "name": "setSnapshotGap",
9023
+ "outputs": [],
9024
+ "stateMutability": "nonpayable",
9025
+ "type": "function"
9026
+ },
9027
+ {
9028
+ "inputs": [],
9029
+ "name": "snapshotGap",
9030
+ "outputs": [
9031
+ {
9032
+ "internalType": "uint256",
9033
+ "name": "",
9034
+ "type": "uint256"
9035
+ }
9036
+ ],
9037
+ "stateMutability": "view",
9038
+ "type": "function"
9039
+ },
9040
+ {
9041
+ "inputs": [],
9042
+ "name": "snapshotInterval",
9043
+ "outputs": [
9044
+ {
9045
+ "internalType": "uint256",
9046
+ "name": "",
9047
+ "type": "uint256"
9048
+ }
9049
+ ],
9050
+ "stateMutability": "view",
9051
+ "type": "function"
9052
+ },
9053
+ {
9054
+ "inputs": [],
9055
+ "name": "snapshotMaxExchangeRate",
9056
+ "outputs": [
9057
+ {
9058
+ "internalType": "uint256",
9059
+ "name": "",
9060
+ "type": "uint256"
9061
+ }
9062
+ ],
9063
+ "stateMutability": "view",
9064
+ "type": "function"
9065
+ },
9066
+ {
9067
+ "inputs": [],
9068
+ "name": "snapshotTimestamp",
9069
+ "outputs": [
9070
+ {
9071
+ "internalType": "uint256",
9072
+ "name": "",
9073
+ "type": "uint256"
9074
+ }
9075
+ ],
9076
+ "stateMutability": "view",
9077
+ "type": "function"
9078
+ },
9079
+ {
9080
+ "inputs": [],
9081
+ "name": "updateSnapshot",
9082
+ "outputs": [],
9083
+ "stateMutability": "nonpayable",
9084
+ "type": "function"
9085
+ }
9086
+ ]
9087
+ },
8080
9088
  "PendleOracle-PT-sUSDe-26JUN2025": {
8081
9089
  "address": "0xC407403fa78Bce509821D776b6Be7f91cC04474f",
8082
9090
  "abi": [