@relay-protocol/settlement-abis 2.0.2 → 2.0.4
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 +65 -15
- package/dist/index.d.mts +490 -7
- package/dist/index.d.ts +490 -7
- package/dist/index.js +483 -8
- package/dist/index.mjs +483 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6531,6 +6531,20 @@ var RelayOracleV2 = [
|
|
|
6531
6531
|
];
|
|
6532
6532
|
|
|
6533
6533
|
var IPriceFeedAdapter = [
|
|
6534
|
+
{
|
|
6535
|
+
type: "function",
|
|
6536
|
+
name: "ORACLE",
|
|
6537
|
+
inputs: [
|
|
6538
|
+
],
|
|
6539
|
+
outputs: [
|
|
6540
|
+
{
|
|
6541
|
+
name: "",
|
|
6542
|
+
type: "address",
|
|
6543
|
+
internalType: "address"
|
|
6544
|
+
}
|
|
6545
|
+
],
|
|
6546
|
+
stateMutability: "view"
|
|
6547
|
+
},
|
|
6534
6548
|
{
|
|
6535
6549
|
type: "function",
|
|
6536
6550
|
name: "decodeAndVerify",
|
|
@@ -6574,6 +6588,28 @@ var IPriceFeedAdapter = [
|
|
|
6574
6588
|
}
|
|
6575
6589
|
],
|
|
6576
6590
|
stateMutability: "nonpayable"
|
|
6591
|
+
},
|
|
6592
|
+
{
|
|
6593
|
+
type: "error",
|
|
6594
|
+
name: "InvalidOracle",
|
|
6595
|
+
inputs: [
|
|
6596
|
+
{
|
|
6597
|
+
name: "oracle",
|
|
6598
|
+
type: "address",
|
|
6599
|
+
internalType: "address"
|
|
6600
|
+
}
|
|
6601
|
+
]
|
|
6602
|
+
},
|
|
6603
|
+
{
|
|
6604
|
+
type: "error",
|
|
6605
|
+
name: "UnauthorizedCaller",
|
|
6606
|
+
inputs: [
|
|
6607
|
+
{
|
|
6608
|
+
name: "caller",
|
|
6609
|
+
type: "address",
|
|
6610
|
+
internalType: "address"
|
|
6611
|
+
}
|
|
6612
|
+
]
|
|
6577
6613
|
}
|
|
6578
6614
|
];
|
|
6579
6615
|
|
|
@@ -6589,6 +6625,34 @@ var RelayPriceOracle = [
|
|
|
6589
6625
|
],
|
|
6590
6626
|
stateMutability: "nonpayable"
|
|
6591
6627
|
},
|
|
6628
|
+
{
|
|
6629
|
+
type: "function",
|
|
6630
|
+
name: "MAX_AGE_SECONDS_UPPER_BOUND",
|
|
6631
|
+
inputs: [
|
|
6632
|
+
],
|
|
6633
|
+
outputs: [
|
|
6634
|
+
{
|
|
6635
|
+
name: "",
|
|
6636
|
+
type: "uint32",
|
|
6637
|
+
internalType: "uint32"
|
|
6638
|
+
}
|
|
6639
|
+
],
|
|
6640
|
+
stateMutability: "view"
|
|
6641
|
+
},
|
|
6642
|
+
{
|
|
6643
|
+
type: "function",
|
|
6644
|
+
name: "MAX_FUTURE_SECONDS_UPPER_BOUND",
|
|
6645
|
+
inputs: [
|
|
6646
|
+
],
|
|
6647
|
+
outputs: [
|
|
6648
|
+
{
|
|
6649
|
+
name: "",
|
|
6650
|
+
type: "uint32",
|
|
6651
|
+
internalType: "uint32"
|
|
6652
|
+
}
|
|
6653
|
+
],
|
|
6654
|
+
stateMutability: "view"
|
|
6655
|
+
},
|
|
6592
6656
|
{
|
|
6593
6657
|
type: "function",
|
|
6594
6658
|
name: "MAX_PRICE_BATCH_SIZE",
|
|
@@ -6603,6 +6667,30 @@ var RelayPriceOracle = [
|
|
|
6603
6667
|
],
|
|
6604
6668
|
stateMutability: "view"
|
|
6605
6669
|
},
|
|
6670
|
+
{
|
|
6671
|
+
type: "function",
|
|
6672
|
+
name: "cachedPublishTimes",
|
|
6673
|
+
inputs: [
|
|
6674
|
+
{
|
|
6675
|
+
name: "providerId",
|
|
6676
|
+
type: "bytes32",
|
|
6677
|
+
internalType: "bytes32"
|
|
6678
|
+
},
|
|
6679
|
+
{
|
|
6680
|
+
name: "feedId",
|
|
6681
|
+
type: "bytes32",
|
|
6682
|
+
internalType: "bytes32"
|
|
6683
|
+
}
|
|
6684
|
+
],
|
|
6685
|
+
outputs: [
|
|
6686
|
+
{
|
|
6687
|
+
name: "publishTime",
|
|
6688
|
+
type: "uint256",
|
|
6689
|
+
internalType: "uint256"
|
|
6690
|
+
}
|
|
6691
|
+
],
|
|
6692
|
+
stateMutability: "view"
|
|
6693
|
+
},
|
|
6606
6694
|
{
|
|
6607
6695
|
type: "function",
|
|
6608
6696
|
name: "currencyToTokenId",
|
|
@@ -6732,6 +6820,25 @@ var RelayPriceOracle = [
|
|
|
6732
6820
|
],
|
|
6733
6821
|
stateMutability: "view"
|
|
6734
6822
|
},
|
|
6823
|
+
{
|
|
6824
|
+
type: "function",
|
|
6825
|
+
name: "providerMaxFutureSeconds",
|
|
6826
|
+
inputs: [
|
|
6827
|
+
{
|
|
6828
|
+
name: "providerId",
|
|
6829
|
+
type: "bytes32",
|
|
6830
|
+
internalType: "bytes32"
|
|
6831
|
+
}
|
|
6832
|
+
],
|
|
6833
|
+
outputs: [
|
|
6834
|
+
{
|
|
6835
|
+
name: "maxFutureSeconds",
|
|
6836
|
+
type: "uint32",
|
|
6837
|
+
internalType: "uint32"
|
|
6838
|
+
}
|
|
6839
|
+
],
|
|
6840
|
+
stateMutability: "view"
|
|
6841
|
+
},
|
|
6735
6842
|
{
|
|
6736
6843
|
type: "function",
|
|
6737
6844
|
name: "renounceOwnership",
|
|
@@ -7572,6 +7679,11 @@ var RelayPriceOracle = [
|
|
|
7572
7679
|
name: "adapter",
|
|
7573
7680
|
type: "address",
|
|
7574
7681
|
internalType: "address"
|
|
7682
|
+
},
|
|
7683
|
+
{
|
|
7684
|
+
name: "maxFutureSeconds",
|
|
7685
|
+
type: "uint32",
|
|
7686
|
+
internalType: "uint32"
|
|
7575
7687
|
}
|
|
7576
7688
|
],
|
|
7577
7689
|
outputs: [
|
|
@@ -7700,6 +7812,12 @@ var RelayPriceOracle = [
|
|
|
7700
7812
|
type: "address",
|
|
7701
7813
|
indexed: true,
|
|
7702
7814
|
internalType: "address"
|
|
7815
|
+
},
|
|
7816
|
+
{
|
|
7817
|
+
name: "maxFutureSeconds",
|
|
7818
|
+
type: "uint32",
|
|
7819
|
+
indexed: false,
|
|
7820
|
+
internalType: "uint32"
|
|
7703
7821
|
}
|
|
7704
7822
|
],
|
|
7705
7823
|
anonymous: false
|
|
@@ -7752,6 +7870,38 @@ var RelayPriceOracle = [
|
|
|
7752
7870
|
inputs: [
|
|
7753
7871
|
]
|
|
7754
7872
|
},
|
|
7873
|
+
{
|
|
7874
|
+
type: "error",
|
|
7875
|
+
name: "InvalidMaxAgeSeconds",
|
|
7876
|
+
inputs: [
|
|
7877
|
+
{
|
|
7878
|
+
name: "maxAgeSeconds",
|
|
7879
|
+
type: "uint32",
|
|
7880
|
+
internalType: "uint32"
|
|
7881
|
+
},
|
|
7882
|
+
{
|
|
7883
|
+
name: "maxAgeSecondsUpperBound",
|
|
7884
|
+
type: "uint32",
|
|
7885
|
+
internalType: "uint32"
|
|
7886
|
+
}
|
|
7887
|
+
]
|
|
7888
|
+
},
|
|
7889
|
+
{
|
|
7890
|
+
type: "error",
|
|
7891
|
+
name: "InvalidMaxFutureSeconds",
|
|
7892
|
+
inputs: [
|
|
7893
|
+
{
|
|
7894
|
+
name: "maxFutureSeconds",
|
|
7895
|
+
type: "uint32",
|
|
7896
|
+
internalType: "uint32"
|
|
7897
|
+
},
|
|
7898
|
+
{
|
|
7899
|
+
name: "maxFutureSecondsUpperBound",
|
|
7900
|
+
type: "uint32",
|
|
7901
|
+
internalType: "uint32"
|
|
7902
|
+
}
|
|
7903
|
+
]
|
|
7904
|
+
},
|
|
7755
7905
|
{
|
|
7756
7906
|
type: "error",
|
|
7757
7907
|
name: "InvalidPriceFeedAdapter",
|
|
@@ -7763,12 +7913,39 @@ var RelayPriceOracle = [
|
|
|
7763
7913
|
}
|
|
7764
7914
|
]
|
|
7765
7915
|
},
|
|
7916
|
+
{
|
|
7917
|
+
type: "error",
|
|
7918
|
+
name: "InvalidPriceFeedAdapterOracle",
|
|
7919
|
+
inputs: [
|
|
7920
|
+
{
|
|
7921
|
+
name: "adapter",
|
|
7922
|
+
type: "address",
|
|
7923
|
+
internalType: "address"
|
|
7924
|
+
},
|
|
7925
|
+
{
|
|
7926
|
+
name: "expectedOracle",
|
|
7927
|
+
type: "address",
|
|
7928
|
+
internalType: "address"
|
|
7929
|
+
},
|
|
7930
|
+
{
|
|
7931
|
+
name: "actualOracle",
|
|
7932
|
+
type: "address",
|
|
7933
|
+
internalType: "address"
|
|
7934
|
+
}
|
|
7935
|
+
]
|
|
7936
|
+
},
|
|
7766
7937
|
{
|
|
7767
7938
|
type: "error",
|
|
7768
7939
|
name: "InvalidProviderId",
|
|
7769
7940
|
inputs: [
|
|
7770
7941
|
]
|
|
7771
7942
|
},
|
|
7943
|
+
{
|
|
7944
|
+
type: "error",
|
|
7945
|
+
name: "InvalidPublishTime",
|
|
7946
|
+
inputs: [
|
|
7947
|
+
]
|
|
7948
|
+
},
|
|
7772
7949
|
{
|
|
7773
7950
|
type: "error",
|
|
7774
7951
|
name: "OwnableInvalidOwner",
|
|
@@ -7839,6 +8016,48 @@ var RelayPriceOracle = [
|
|
|
7839
8016
|
name: "PriceFeedCallFailed",
|
|
7840
8017
|
inputs: [
|
|
7841
8018
|
]
|
|
8019
|
+
},
|
|
8020
|
+
{
|
|
8021
|
+
type: "error",
|
|
8022
|
+
name: "PriceTimestampRollback",
|
|
8023
|
+
inputs: [
|
|
8024
|
+
{
|
|
8025
|
+
name: "providerId",
|
|
8026
|
+
type: "bytes32",
|
|
8027
|
+
internalType: "bytes32"
|
|
8028
|
+
},
|
|
8029
|
+
{
|
|
8030
|
+
name: "feedId",
|
|
8031
|
+
type: "bytes32",
|
|
8032
|
+
internalType: "bytes32"
|
|
8033
|
+
},
|
|
8034
|
+
{
|
|
8035
|
+
name: "publishTime",
|
|
8036
|
+
type: "uint256",
|
|
8037
|
+
internalType: "uint256"
|
|
8038
|
+
},
|
|
8039
|
+
{
|
|
8040
|
+
name: "cachedPublishTime",
|
|
8041
|
+
type: "uint256",
|
|
8042
|
+
internalType: "uint256"
|
|
8043
|
+
}
|
|
8044
|
+
]
|
|
8045
|
+
},
|
|
8046
|
+
{
|
|
8047
|
+
type: "error",
|
|
8048
|
+
name: "PriceTimestampTooFarInFuture",
|
|
8049
|
+
inputs: [
|
|
8050
|
+
{
|
|
8051
|
+
name: "publishTime",
|
|
8052
|
+
type: "uint256",
|
|
8053
|
+
internalType: "uint256"
|
|
8054
|
+
},
|
|
8055
|
+
{
|
|
8056
|
+
name: "maxPublishTime",
|
|
8057
|
+
type: "uint256",
|
|
8058
|
+
internalType: "uint256"
|
|
8059
|
+
}
|
|
8060
|
+
]
|
|
7842
8061
|
}
|
|
7843
8062
|
];
|
|
7844
8063
|
|
|
@@ -14945,6 +15164,31 @@ var EmptyPayloadBuilder = [
|
|
|
14945
15164
|
];
|
|
14946
15165
|
|
|
14947
15166
|
var MockPriceFeedAdapter = [
|
|
15167
|
+
{
|
|
15168
|
+
type: "constructor",
|
|
15169
|
+
inputs: [
|
|
15170
|
+
{
|
|
15171
|
+
name: "_oracle",
|
|
15172
|
+
type: "address",
|
|
15173
|
+
internalType: "address"
|
|
15174
|
+
}
|
|
15175
|
+
],
|
|
15176
|
+
stateMutability: "nonpayable"
|
|
15177
|
+
},
|
|
15178
|
+
{
|
|
15179
|
+
type: "function",
|
|
15180
|
+
name: "ORACLE",
|
|
15181
|
+
inputs: [
|
|
15182
|
+
],
|
|
15183
|
+
outputs: [
|
|
15184
|
+
{
|
|
15185
|
+
name: "",
|
|
15186
|
+
type: "address",
|
|
15187
|
+
internalType: "address"
|
|
15188
|
+
}
|
|
15189
|
+
],
|
|
15190
|
+
stateMutability: "view"
|
|
15191
|
+
},
|
|
14948
15192
|
{
|
|
14949
15193
|
type: "function",
|
|
14950
15194
|
name: "decodeAndVerify",
|
|
@@ -14987,7 +15231,7 @@ var MockPriceFeedAdapter = [
|
|
|
14987
15231
|
internalType: "uint256"
|
|
14988
15232
|
}
|
|
14989
15233
|
],
|
|
14990
|
-
stateMutability: "
|
|
15234
|
+
stateMutability: "view"
|
|
14991
15235
|
},
|
|
14992
15236
|
{
|
|
14993
15237
|
type: "error",
|
|
@@ -15004,6 +15248,28 @@ var MockPriceFeedAdapter = [
|
|
|
15004
15248
|
internalType: "bytes32"
|
|
15005
15249
|
}
|
|
15006
15250
|
]
|
|
15251
|
+
},
|
|
15252
|
+
{
|
|
15253
|
+
type: "error",
|
|
15254
|
+
name: "InvalidOracle",
|
|
15255
|
+
inputs: [
|
|
15256
|
+
{
|
|
15257
|
+
name: "oracle",
|
|
15258
|
+
type: "address",
|
|
15259
|
+
internalType: "address"
|
|
15260
|
+
}
|
|
15261
|
+
]
|
|
15262
|
+
},
|
|
15263
|
+
{
|
|
15264
|
+
type: "error",
|
|
15265
|
+
name: "UnauthorizedCaller",
|
|
15266
|
+
inputs: [
|
|
15267
|
+
{
|
|
15268
|
+
name: "caller",
|
|
15269
|
+
type: "address",
|
|
15270
|
+
internalType: "address"
|
|
15271
|
+
}
|
|
15272
|
+
]
|
|
15007
15273
|
}
|
|
15008
15274
|
];
|
|
15009
15275
|
|
|
@@ -20544,6 +20810,11 @@ var ChainlinkDataStreamsAdapter = [
|
|
|
20544
20810
|
{
|
|
20545
20811
|
type: "constructor",
|
|
20546
20812
|
inputs: [
|
|
20813
|
+
{
|
|
20814
|
+
name: "_oracle",
|
|
20815
|
+
type: "address",
|
|
20816
|
+
internalType: "address"
|
|
20817
|
+
},
|
|
20547
20818
|
{
|
|
20548
20819
|
name: "verifierProxy",
|
|
20549
20820
|
type: "address",
|
|
@@ -20571,6 +20842,20 @@ var ChainlinkDataStreamsAdapter = [
|
|
|
20571
20842
|
],
|
|
20572
20843
|
stateMutability: "view"
|
|
20573
20844
|
},
|
|
20845
|
+
{
|
|
20846
|
+
type: "function",
|
|
20847
|
+
name: "ORACLE",
|
|
20848
|
+
inputs: [
|
|
20849
|
+
],
|
|
20850
|
+
outputs: [
|
|
20851
|
+
{
|
|
20852
|
+
name: "",
|
|
20853
|
+
type: "address",
|
|
20854
|
+
internalType: "address"
|
|
20855
|
+
}
|
|
20856
|
+
],
|
|
20857
|
+
stateMutability: "view"
|
|
20858
|
+
},
|
|
20574
20859
|
{
|
|
20575
20860
|
type: "function",
|
|
20576
20861
|
name: "REPORT_V3_SCHEMA",
|
|
@@ -20634,6 +20919,11 @@ var ChainlinkDataStreamsAdapter = [
|
|
|
20634
20919
|
type: "int192",
|
|
20635
20920
|
internalType: "int192"
|
|
20636
20921
|
},
|
|
20922
|
+
{
|
|
20923
|
+
name: "validFromTimestamp",
|
|
20924
|
+
type: "uint32",
|
|
20925
|
+
internalType: "uint32"
|
|
20926
|
+
},
|
|
20637
20927
|
{
|
|
20638
20928
|
name: "observationsTimestamp",
|
|
20639
20929
|
type: "uint32",
|
|
@@ -20717,6 +21007,59 @@ var ChainlinkDataStreamsAdapter = [
|
|
|
20717
21007
|
}
|
|
20718
21008
|
]
|
|
20719
21009
|
},
|
|
21010
|
+
{
|
|
21011
|
+
type: "error",
|
|
21012
|
+
name: "InvalidBidAsk",
|
|
21013
|
+
inputs: [
|
|
21014
|
+
{
|
|
21015
|
+
name: "benchmarkPrice",
|
|
21016
|
+
type: "int192",
|
|
21017
|
+
internalType: "int192"
|
|
21018
|
+
},
|
|
21019
|
+
{
|
|
21020
|
+
name: "bid",
|
|
21021
|
+
type: "int192",
|
|
21022
|
+
internalType: "int192"
|
|
21023
|
+
},
|
|
21024
|
+
{
|
|
21025
|
+
name: "ask",
|
|
21026
|
+
type: "int192",
|
|
21027
|
+
internalType: "int192"
|
|
21028
|
+
}
|
|
21029
|
+
]
|
|
21030
|
+
},
|
|
21031
|
+
{
|
|
21032
|
+
type: "error",
|
|
21033
|
+
name: "InvalidOracle",
|
|
21034
|
+
inputs: [
|
|
21035
|
+
{
|
|
21036
|
+
name: "oracle",
|
|
21037
|
+
type: "address",
|
|
21038
|
+
internalType: "address"
|
|
21039
|
+
}
|
|
21040
|
+
]
|
|
21041
|
+
},
|
|
21042
|
+
{
|
|
21043
|
+
type: "error",
|
|
21044
|
+
name: "InvalidReportTimeRange",
|
|
21045
|
+
inputs: [
|
|
21046
|
+
{
|
|
21047
|
+
name: "validFromTimestamp",
|
|
21048
|
+
type: "uint32",
|
|
21049
|
+
internalType: "uint32"
|
|
21050
|
+
},
|
|
21051
|
+
{
|
|
21052
|
+
name: "observationsTimestamp",
|
|
21053
|
+
type: "uint32",
|
|
21054
|
+
internalType: "uint32"
|
|
21055
|
+
},
|
|
21056
|
+
{
|
|
21057
|
+
name: "expiresAt",
|
|
21058
|
+
type: "uint32",
|
|
21059
|
+
internalType: "uint32"
|
|
21060
|
+
}
|
|
21061
|
+
]
|
|
21062
|
+
},
|
|
20720
21063
|
{
|
|
20721
21064
|
type: "error",
|
|
20722
21065
|
name: "InvalidVerifierProxy",
|
|
@@ -20750,6 +21093,38 @@ var ChainlinkDataStreamsAdapter = [
|
|
|
20750
21093
|
}
|
|
20751
21094
|
]
|
|
20752
21095
|
},
|
|
21096
|
+
{
|
|
21097
|
+
type: "error",
|
|
21098
|
+
name: "TimestampRollback",
|
|
21099
|
+
inputs: [
|
|
21100
|
+
{
|
|
21101
|
+
name: "feedId",
|
|
21102
|
+
type: "bytes32",
|
|
21103
|
+
internalType: "bytes32"
|
|
21104
|
+
},
|
|
21105
|
+
{
|
|
21106
|
+
name: "observationsTimestamp",
|
|
21107
|
+
type: "uint32",
|
|
21108
|
+
internalType: "uint32"
|
|
21109
|
+
},
|
|
21110
|
+
{
|
|
21111
|
+
name: "latestObservationsTimestamp",
|
|
21112
|
+
type: "uint32",
|
|
21113
|
+
internalType: "uint32"
|
|
21114
|
+
}
|
|
21115
|
+
]
|
|
21116
|
+
},
|
|
21117
|
+
{
|
|
21118
|
+
type: "error",
|
|
21119
|
+
name: "UnauthorizedCaller",
|
|
21120
|
+
inputs: [
|
|
21121
|
+
{
|
|
21122
|
+
name: "caller",
|
|
21123
|
+
type: "address",
|
|
21124
|
+
internalType: "address"
|
|
21125
|
+
}
|
|
21126
|
+
]
|
|
21127
|
+
},
|
|
20753
21128
|
{
|
|
20754
21129
|
type: "error",
|
|
20755
21130
|
name: "UnsupportedReportSchema",
|
|
@@ -20840,6 +21215,11 @@ var StorkFastAdapter = [
|
|
|
20840
21215
|
{
|
|
20841
21216
|
type: "constructor",
|
|
20842
21217
|
inputs: [
|
|
21218
|
+
{
|
|
21219
|
+
name: "_oracle",
|
|
21220
|
+
type: "address",
|
|
21221
|
+
internalType: "address"
|
|
21222
|
+
},
|
|
20843
21223
|
{
|
|
20844
21224
|
name: "storkFastVerifier",
|
|
20845
21225
|
type: "address",
|
|
@@ -20848,6 +21228,20 @@ var StorkFastAdapter = [
|
|
|
20848
21228
|
],
|
|
20849
21229
|
stateMutability: "nonpayable"
|
|
20850
21230
|
},
|
|
21231
|
+
{
|
|
21232
|
+
type: "function",
|
|
21233
|
+
name: "ORACLE",
|
|
21234
|
+
inputs: [
|
|
21235
|
+
],
|
|
21236
|
+
outputs: [
|
|
21237
|
+
{
|
|
21238
|
+
name: "",
|
|
21239
|
+
type: "address",
|
|
21240
|
+
internalType: "address"
|
|
21241
|
+
}
|
|
21242
|
+
],
|
|
21243
|
+
stateMutability: "view"
|
|
21244
|
+
},
|
|
20851
21245
|
{
|
|
20852
21246
|
type: "function",
|
|
20853
21247
|
name: "STORK_FAST_VERIFIER",
|
|
@@ -20878,27 +21272,36 @@ var StorkFastAdapter = [
|
|
|
20878
21272
|
},
|
|
20879
21273
|
{
|
|
20880
21274
|
type: "function",
|
|
20881
|
-
name: "
|
|
21275
|
+
name: "cachedReportHash",
|
|
20882
21276
|
inputs: [
|
|
21277
|
+
],
|
|
21278
|
+
outputs: [
|
|
20883
21279
|
{
|
|
20884
|
-
name: "
|
|
21280
|
+
name: "",
|
|
20885
21281
|
type: "bytes32",
|
|
20886
21282
|
internalType: "bytes32"
|
|
20887
21283
|
}
|
|
20888
21284
|
],
|
|
20889
|
-
|
|
21285
|
+
stateMutability: "view"
|
|
21286
|
+
},
|
|
21287
|
+
{
|
|
21288
|
+
type: "function",
|
|
21289
|
+
name: "cachedReportValues",
|
|
21290
|
+
inputs: [
|
|
20890
21291
|
{
|
|
20891
|
-
name: "
|
|
21292
|
+
name: "feedId",
|
|
20892
21293
|
type: "bytes32",
|
|
20893
21294
|
internalType: "bytes32"
|
|
20894
|
-
}
|
|
21295
|
+
}
|
|
21296
|
+
],
|
|
21297
|
+
outputs: [
|
|
20895
21298
|
{
|
|
20896
21299
|
name: "quantizedValue",
|
|
20897
21300
|
type: "int192",
|
|
20898
21301
|
internalType: "int192"
|
|
20899
21302
|
},
|
|
20900
21303
|
{
|
|
20901
|
-
name: "
|
|
21304
|
+
name: "timestampNs",
|
|
20902
21305
|
type: "uint64",
|
|
20903
21306
|
internalType: "uint64"
|
|
20904
21307
|
}
|
|
@@ -20973,6 +21376,43 @@ var StorkFastAdapter = [
|
|
|
20973
21376
|
],
|
|
20974
21377
|
stateMutability: "nonpayable"
|
|
20975
21378
|
},
|
|
21379
|
+
{
|
|
21380
|
+
type: "error",
|
|
21381
|
+
name: "ConflictingPriceAtTimestamp",
|
|
21382
|
+
inputs: [
|
|
21383
|
+
{
|
|
21384
|
+
name: "feedId",
|
|
21385
|
+
type: "bytes32",
|
|
21386
|
+
internalType: "bytes32"
|
|
21387
|
+
},
|
|
21388
|
+
{
|
|
21389
|
+
name: "timestampNs",
|
|
21390
|
+
type: "uint64",
|
|
21391
|
+
internalType: "uint64"
|
|
21392
|
+
},
|
|
21393
|
+
{
|
|
21394
|
+
name: "latestValue",
|
|
21395
|
+
type: "int192",
|
|
21396
|
+
internalType: "int192"
|
|
21397
|
+
},
|
|
21398
|
+
{
|
|
21399
|
+
name: "newValue",
|
|
21400
|
+
type: "int192",
|
|
21401
|
+
internalType: "int192"
|
|
21402
|
+
}
|
|
21403
|
+
]
|
|
21404
|
+
},
|
|
21405
|
+
{
|
|
21406
|
+
type: "error",
|
|
21407
|
+
name: "DuplicateAssetId",
|
|
21408
|
+
inputs: [
|
|
21409
|
+
{
|
|
21410
|
+
name: "assetId",
|
|
21411
|
+
type: "uint16",
|
|
21412
|
+
internalType: "uint16"
|
|
21413
|
+
}
|
|
21414
|
+
]
|
|
21415
|
+
},
|
|
20976
21416
|
{
|
|
20977
21417
|
type: "error",
|
|
20978
21418
|
name: "FeedNotInPayload",
|
|
@@ -20984,6 +21424,17 @@ var StorkFastAdapter = [
|
|
|
20984
21424
|
}
|
|
20985
21425
|
]
|
|
20986
21426
|
},
|
|
21427
|
+
{
|
|
21428
|
+
type: "error",
|
|
21429
|
+
name: "InvalidOracle",
|
|
21430
|
+
inputs: [
|
|
21431
|
+
{
|
|
21432
|
+
name: "oracle",
|
|
21433
|
+
type: "address",
|
|
21434
|
+
internalType: "address"
|
|
21435
|
+
}
|
|
21436
|
+
]
|
|
21437
|
+
},
|
|
20987
21438
|
{
|
|
20988
21439
|
type: "error",
|
|
20989
21440
|
name: "InvalidStorkFastVerifier",
|
|
@@ -21000,6 +21451,38 @@ var StorkFastAdapter = [
|
|
|
21000
21451
|
internalType: "int192"
|
|
21001
21452
|
}
|
|
21002
21453
|
]
|
|
21454
|
+
},
|
|
21455
|
+
{
|
|
21456
|
+
type: "error",
|
|
21457
|
+
name: "TimestampRollback",
|
|
21458
|
+
inputs: [
|
|
21459
|
+
{
|
|
21460
|
+
name: "feedId",
|
|
21461
|
+
type: "bytes32",
|
|
21462
|
+
internalType: "bytes32"
|
|
21463
|
+
},
|
|
21464
|
+
{
|
|
21465
|
+
name: "timestampNs",
|
|
21466
|
+
type: "uint64",
|
|
21467
|
+
internalType: "uint64"
|
|
21468
|
+
},
|
|
21469
|
+
{
|
|
21470
|
+
name: "latestTimestampNs",
|
|
21471
|
+
type: "uint64",
|
|
21472
|
+
internalType: "uint64"
|
|
21473
|
+
}
|
|
21474
|
+
]
|
|
21475
|
+
},
|
|
21476
|
+
{
|
|
21477
|
+
type: "error",
|
|
21478
|
+
name: "UnauthorizedCaller",
|
|
21479
|
+
inputs: [
|
|
21480
|
+
{
|
|
21481
|
+
name: "caller",
|
|
21482
|
+
type: "address",
|
|
21483
|
+
internalType: "address"
|
|
21484
|
+
}
|
|
21485
|
+
]
|
|
21003
21486
|
}
|
|
21004
21487
|
];
|
|
21005
21488
|
|