@flarenetwork/flare-periphery-contract-artifacts 0.0.1

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.
Files changed (498) hide show
  1. package/dist/README.md +5 -0
  2. package/dist/coston/abis.coston.d.ts +4 -0
  3. package/dist/coston/abis.coston.d.ts.map +1 -0
  4. package/dist/coston/abis.coston.js +213 -0
  5. package/dist/coston/abis.coston.js.map +1 -0
  6. package/dist/coston/artifacts/contracts/addressUpdater/implementation/AddressUpdatable.sol/AddressUpdatable.json +42 -0
  7. package/dist/coston/artifacts/contracts/addressUpdater/implementation/AddressUpdater.sol/AddressUpdater.json +381 -0
  8. package/dist/coston/artifacts/contracts/addressUpdater/interface/IIAddressUpdatable.sol/IIAddressUpdatable.json +29 -0
  9. package/dist/coston/artifacts/contracts/addressUpdater/interface/IIAddressUpdater.sol/IIAddressUpdater.json +105 -0
  10. package/dist/coston/artifacts/contracts/claiming/implementation/ClaimSetupManager.sol/ClaimSetupManager.json +1151 -0
  11. package/dist/coston/artifacts/contracts/claiming/implementation/CloneFactory.sol/CloneFactory.json +10 -0
  12. package/dist/coston/artifacts/contracts/claiming/implementation/DelegationAccount.sol/DelegationAccount.json +346 -0
  13. package/dist/coston/artifacts/contracts/claiming/interface/IIClaimSetupManager.sol/IIClaimSetupManager.json +795 -0
  14. package/dist/coston/artifacts/contracts/claiming/interface/IIDelegationAccount.sol/IIDelegationAccount.json +316 -0
  15. package/dist/coston/artifacts/contracts/ftso/implementation/Ftso.sol/Ftso.json +1104 -0
  16. package/dist/coston/artifacts/contracts/ftso/implementation/FtsoManager.sol/FtsoManager.json +1723 -0
  17. package/dist/coston/artifacts/contracts/ftso/interface/IIFtso.sol/IIFtso.json +953 -0
  18. package/dist/coston/artifacts/contracts/ftso/interface/IIFtsoManager.sol/IIFtsoManager.json +878 -0
  19. package/dist/coston/artifacts/contracts/ftso/interface/IIFtsoManagerV1.sol/IIFtsoManagerV1.json +102 -0
  20. package/dist/coston/artifacts/contracts/ftso/lib/FtsoEpoch.sol/FtsoEpoch.json +10 -0
  21. package/dist/coston/artifacts/contracts/ftso/lib/FtsoManagement.sol/FtsoManagement.json +43 -0
  22. package/dist/coston/artifacts/contracts/ftso/lib/FtsoManagerSettings.sol/FtsoManagerSettings.json +10 -0
  23. package/dist/coston/artifacts/contracts/ftso/lib/FtsoMedian.sol/FtsoMedian.json +10 -0
  24. package/dist/coston/artifacts/contracts/ftso/lib/FtsoVote.sol/FtsoVote.json +10 -0
  25. package/dist/coston/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockFtsoRegistry.json +624 -0
  26. package/dist/coston/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockPriceSubmitter.json +241 -0
  27. package/dist/coston/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockVoterWhitelister.json +198 -0
  28. package/dist/coston/artifacts/contracts/ftso/priceProviderMockContracts/priceProviderMockFtso.sol/MockNpmFtso.json +1048 -0
  29. package/dist/coston/artifacts/contracts/genesis/implementation/FlareDaemon.sol/FlareDaemon.json +676 -0
  30. package/dist/coston/artifacts/contracts/genesis/implementation/GovernanceSettings.sol/GovernanceSettings.json +224 -0
  31. package/dist/coston/artifacts/contracts/genesis/implementation/PriceSubmitter.sol/PriceSubmitter.json +407 -0
  32. package/dist/coston/artifacts/contracts/genesis/implementation/StateConnector.sol/StateConnector.json +324 -0
  33. package/dist/coston/artifacts/contracts/genesis/interface/IFlareDaemonize.sol/IFlareDaemonize.json +37 -0
  34. package/dist/coston/artifacts/contracts/genesis/interface/IFtsoGenesis.sol/IFtsoGenesis.json +91 -0
  35. package/dist/coston/artifacts/contracts/genesis/interface/IFtsoManagerGenesis.sol/IFtsoManagerGenesis.json +24 -0
  36. package/dist/coston/artifacts/contracts/genesis/interface/IFtsoRegistryGenesis.sol/IFtsoRegistryGenesis.json +30 -0
  37. package/dist/coston/artifacts/contracts/genesis/interface/IIPriceSubmitter.sol/IIPriceSubmitter.json +285 -0
  38. package/dist/coston/artifacts/contracts/genesis/interface/IInflationGenesis.sol/IInflationGenesis.json +18 -0
  39. package/dist/coston/artifacts/contracts/governance/implementation/Governed.sol/Governed.json +126 -0
  40. package/dist/coston/artifacts/contracts/governance/implementation/GovernedAtGenesis.sol/GovernedAtGenesis.json +139 -0
  41. package/dist/coston/artifacts/contracts/governance/implementation/GovernedBase.sol/GovernedBase.json +115 -0
  42. package/dist/coston/artifacts/contracts/governance/implementation/GovernedBaseV2.sol/GovernedBaseV2.json +209 -0
  43. package/dist/coston/artifacts/contracts/governance/implementation/GovernedV2.sol/GovernedV2.json +220 -0
  44. package/dist/coston/artifacts/contracts/governance/implementation/Governor.sol/Governor.json +653 -0
  45. package/dist/coston/artifacts/contracts/governance/implementation/GovernorProposals.sol/GovernorProposals.json +24 -0
  46. package/dist/coston/artifacts/contracts/governance/implementation/GovernorProposer.sol/GovernorProposer.json +265 -0
  47. package/dist/coston/artifacts/contracts/governance/implementation/GovernorVotePower.sol/GovernorVotePower.json +24 -0
  48. package/dist/coston/artifacts/contracts/governance/implementation/GovernorVotes.sol/GovernorVotes.json +10 -0
  49. package/dist/coston/artifacts/contracts/governance/implementation/InflationAllocation.sol/InflationAllocation.json +351 -0
  50. package/dist/coston/artifacts/contracts/governance/implementation/PollingFoundation.sol/PollingFoundation.json +1065 -0
  51. package/dist/coston/artifacts/contracts/governance/interface/IIGovernorProposer.sol/IIGovernorProposer.json +30 -0
  52. package/dist/coston/artifacts/contracts/governance/interface/IIPollingFoundation.sol/IIPollingFoundation.json +640 -0
  53. package/dist/coston/artifacts/contracts/inflation/implementation/Inflation.sol/Inflation.json +879 -0
  54. package/dist/coston/artifacts/contracts/inflation/implementation/Supply.sol/Supply.json +403 -0
  55. package/dist/coston/artifacts/contracts/inflation/interface/IIInflationPercentageProvider.sol/IIInflationPercentageProvider.json +24 -0
  56. package/dist/coston/artifacts/contracts/inflation/interface/IIInflationReceiver.sol/IIInflationReceiver.json +44 -0
  57. package/dist/coston/artifacts/contracts/inflation/interface/IIInflationSharingPercentageProvider.sol/IIInflationSharingPercentageProvider.json +36 -0
  58. package/dist/coston/artifacts/contracts/inflation/interface/IISupply.sol/IISupply.json +88 -0
  59. package/dist/coston/artifacts/contracts/inflation/lib/InflationAnnum.sol/InflationAnnum.json +10 -0
  60. package/dist/coston/artifacts/contracts/inflation/lib/InflationAnnums.sol/InflationAnnums.json +10 -0
  61. package/dist/coston/artifacts/contracts/inflation/lib/RewardService.sol/RewardService.json +30 -0
  62. package/dist/coston/artifacts/contracts/inflation/lib/RewardServices.sol/RewardServices.json +49 -0
  63. package/dist/coston/artifacts/contracts/mockXAsset/interface/ICollateralizable.sol/ICollateralizable.json +234 -0
  64. package/dist/coston/artifacts/contracts/token/implementation/CheckPointable.sol/CheckPointable.json +129 -0
  65. package/dist/coston/artifacts/contracts/token/implementation/CleanupBlockNumberManager.sol/CleanupBlockNumberManager.json +254 -0
  66. package/dist/coston/artifacts/contracts/token/implementation/Delegatable.sol/Delegatable.json +222 -0
  67. package/dist/coston/artifacts/contracts/token/implementation/GovernanceVotePower.sol/GovernanceVotePower.json +324 -0
  68. package/dist/coston/artifacts/contracts/token/implementation/VPContract.sol/VPContract.json +774 -0
  69. package/dist/coston/artifacts/contracts/token/implementation/VPToken.sol/VPToken.json +1102 -0
  70. package/dist/coston/artifacts/contracts/token/implementation/WNat.sol/WNat.json +1195 -0
  71. package/dist/coston/artifacts/contracts/token/interface/IICleanable.sol/IICleanable.json +63 -0
  72. package/dist/coston/artifacts/contracts/token/interface/IIGovernanceVotePower.sol/IIGovernanceVotePower.json +252 -0
  73. package/dist/coston/artifacts/contracts/token/interface/IIVPContract.sol/IIVPContract.json +609 -0
  74. package/dist/coston/artifacts/contracts/token/interface/IIVPToken.sol/IIVPToken.json +790 -0
  75. package/dist/coston/artifacts/contracts/token/lib/CheckPointHistory.sol/CheckPointHistory.json +10 -0
  76. package/dist/coston/artifacts/contracts/token/lib/CheckPointHistoryCache.sol/CheckPointHistoryCache.json +10 -0
  77. package/dist/coston/artifacts/contracts/token/lib/CheckPointsByAddress.sol/CheckPointsByAddress.json +10 -0
  78. package/dist/coston/artifacts/contracts/token/lib/DelegateCheckPointHistory.sol/DelegateCheckPointHistory.json +10 -0
  79. package/dist/coston/artifacts/contracts/token/lib/DelegateCheckPointsByAddress.sol/DelegateCheckPointsByAddress.json +10 -0
  80. package/dist/coston/artifacts/contracts/token/lib/DelegationHistory.sol/DelegationHistory.json +24 -0
  81. package/dist/coston/artifacts/contracts/token/lib/ExplicitDelegation.sol/ExplicitDelegation.json +10 -0
  82. package/dist/coston/artifacts/contracts/token/lib/PercentageDelegation.sol/PercentageDelegation.json +24 -0
  83. package/dist/coston/artifacts/contracts/token/lib/VotePower.sol/VotePower.json +10 -0
  84. package/dist/coston/artifacts/contracts/token/lib/VotePowerCache.sol/VotePowerCache.json +10 -0
  85. package/dist/coston/artifacts/contracts/tokenPools/implementation/Distribution.sol/Distribution.json +414 -0
  86. package/dist/coston/artifacts/contracts/tokenPools/implementation/FtsoRewardManager.sol/FtsoRewardManager.json +1027 -0
  87. package/dist/coston/artifacts/contracts/tokenPools/interface/IIFtsoRewardManager.sol/IIFtsoRewardManager.json +627 -0
  88. package/dist/coston/artifacts/contracts/tokenPools/interface/IIFtsoRewardManagerV2.sol/IIFtsoRewardManagerV2.json +949 -0
  89. package/dist/coston/artifacts/contracts/tokenPools/interface/IITokenPool.sol/IITokenPool.json +34 -0
  90. package/dist/coston/artifacts/contracts/tokenPools/lib/DataProviderFee.sol/DataProviderFee.json +10 -0
  91. package/dist/coston/artifacts/contracts/utils/implementation/AddressSet.sol/AddressSet.json +10 -0
  92. package/dist/coston/artifacts/contracts/utils/implementation/DateTimeLibrary.sol/BokkyPooBahsDateTimeLibrary.json +154 -0
  93. package/dist/coston/artifacts/contracts/utils/implementation/FlareContractRegistry.sol/FlareContractRegistry.json +147 -0
  94. package/dist/coston/artifacts/contracts/utils/implementation/FtsoRegistry.sol/FtsoRegistry.json +769 -0
  95. package/dist/coston/artifacts/contracts/utils/implementation/FtsoRegistryProxy.sol/FtsoRegistryProxy.json +272 -0
  96. package/dist/coston/artifacts/contracts/utils/implementation/FtsoV2Upgrader.sol/FtsoV2Upgrader.json +440 -0
  97. package/dist/coston/artifacts/contracts/utils/implementation/GovernedAndFlareDaemonized.sol/GovernedAndFlareDaemonized.json +144 -0
  98. package/dist/coston/artifacts/contracts/utils/implementation/GovernedAndFlareDaemonizedV2.sol/GovernedAndFlareDaemonizedV2.json +238 -0
  99. package/dist/coston/artifacts/contracts/utils/implementation/ProxyGoverned.sol/ProxyGoverned.json +256 -0
  100. package/dist/coston/artifacts/contracts/utils/implementation/RevertErrorTracking.sol/RevertErrorTracking.json +131 -0
  101. package/dist/coston/artifacts/contracts/utils/implementation/SafePct.sol/SafePct.json +10 -0
  102. package/dist/coston/artifacts/contracts/utils/implementation/VoterWhitelister.sol/VoterWhitelister.json +418 -0
  103. package/dist/coston/artifacts/contracts/utils/interface/IIFtsoRegistry.sol/IIFtsoRegistry.json +477 -0
  104. package/dist/coston/artifacts/contracts/utils/interface/IIFtsoRegistryV1.sol/IIFtsoRegistryV1.json +120 -0
  105. package/dist/coston/artifacts/contracts/utils/interface/IIRandomProvider.sol/IIRandomProvider.json +60 -0
  106. package/dist/coston/artifacts/contracts/utils/interface/IIVoterWhitelister.sol/IIVoterWhitelister.json +236 -0
  107. package/dist/coston/artifacts/contracts/utils/interface/IUpdateValidators.sol/IUpdateValidators.json +18 -0
  108. package/dist/coston/deploys/contractAddresses.d.ts +31 -0
  109. package/dist/coston/deploys/contractAddresses.d.ts.map +1 -0
  110. package/dist/coston/deploys/contractAddresses.js +34 -0
  111. package/dist/coston/deploys/contractAddresses.js.map +1 -0
  112. package/dist/coston/deploys/coston.json +142 -0
  113. package/dist/coston/deploys/mapper.d.ts +7 -0
  114. package/dist/coston/deploys/mapper.d.ts.map +1 -0
  115. package/dist/coston/deploys/mapper.js +40 -0
  116. package/dist/coston/deploys/mapper.js.map +1 -0
  117. package/dist/coston/index.d.ts +3 -0
  118. package/dist/coston/index.d.ts.map +1 -0
  119. package/dist/coston/index.js +20 -0
  120. package/dist/coston/index.js.map +1 -0
  121. package/dist/coston2/abis.coston2.d.ts +4 -0
  122. package/dist/coston2/abis.coston2.d.ts.map +1 -0
  123. package/dist/coston2/abis.coston2.js +253 -0
  124. package/dist/coston2/abis.coston2.js.map +1 -0
  125. package/dist/coston2/artifacts/contracts/addressUpdater/implementation/AddressUpdatable.sol/AddressUpdatable.json +42 -0
  126. package/dist/coston2/artifacts/contracts/addressUpdater/implementation/AddressUpdater.sol/AddressUpdater.json +311 -0
  127. package/dist/coston2/artifacts/contracts/addressUpdater/interface/IIAddressUpdatable.sol/IIAddressUpdatable.json +29 -0
  128. package/dist/coston2/artifacts/contracts/assetRegistry/implementation/FlareAssetRegistry.sol/FlareAssetRegistry.json +525 -0
  129. package/dist/coston2/artifacts/contracts/assetRegistry/implementation/WNatRegistryProvider.sol/WNatRegistryProvider.json +113 -0
  130. package/dist/coston2/artifacts/contracts/assetRegistry/interface/IIERC20WithMetadata.sol/IIERC20WithMetadata.json +233 -0
  131. package/dist/coston2/artifacts/contracts/assetRegistry/interface/IIFlareAssetRegistry.sol/IIFlareAssetRegistry.json +316 -0
  132. package/dist/coston2/artifacts/contracts/assetRegistry/interface/IIFlareAssetRegistryProvider.sol/IIFlareAssetRegistryProvider.json +66 -0
  133. package/dist/coston2/artifacts/contracts/assetRegistry/lib/StandardAttributes.sol/StandardAttributes.json +10 -0
  134. package/dist/coston2/artifacts/contracts/claiming/implementation/ClaimSetupManager.sol/ClaimSetupManager.json +1151 -0
  135. package/dist/coston2/artifacts/contracts/claiming/implementation/CloneFactory.sol/CloneFactory.json +10 -0
  136. package/dist/coston2/artifacts/contracts/claiming/implementation/DelegationAccount.sol/DelegationAccount.json +346 -0
  137. package/dist/coston2/artifacts/contracts/claiming/interface/IIClaimSetupManager.sol/IIClaimSetupManager.json +795 -0
  138. package/dist/coston2/artifacts/contracts/claiming/interface/IIDelegationAccount.sol/IIDelegationAccount.json +316 -0
  139. package/dist/coston2/artifacts/contracts/ftso/implementation/Ftso.sol/Ftso.json +1007 -0
  140. package/dist/coston2/artifacts/contracts/ftso/implementation/FtsoManager.sol/FtsoManager.json +1647 -0
  141. package/dist/coston2/artifacts/contracts/ftso/interface/IIFtso.sol/IIFtso.json +856 -0
  142. package/dist/coston2/artifacts/contracts/ftso/interface/IIFtsoManager.sol/IIFtsoManager.json +837 -0
  143. package/dist/coston2/artifacts/contracts/ftso/interface/IIFtsoManagerV1.sol/IIFtsoManagerV1.json +102 -0
  144. package/dist/coston2/artifacts/contracts/ftso/lib/FtsoEpoch.sol/FtsoEpoch.json +10 -0
  145. package/dist/coston2/artifacts/contracts/ftso/lib/FtsoManagement.sol/FtsoManagement.json +43 -0
  146. package/dist/coston2/artifacts/contracts/ftso/lib/FtsoManagerSettings.sol/FtsoManagerSettings.json +10 -0
  147. package/dist/coston2/artifacts/contracts/ftso/lib/FtsoMedian.sol/FtsoMedian.json +10 -0
  148. package/dist/coston2/artifacts/contracts/ftso/lib/FtsoVote.sol/FtsoVote.json +10 -0
  149. package/dist/coston2/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockFtsoRegistry.json +718 -0
  150. package/dist/coston2/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockPriceSubmitter.json +338 -0
  151. package/dist/coston2/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockVoterWhitelister.json +198 -0
  152. package/dist/coston2/artifacts/contracts/ftso/priceProviderMockContracts/priceProviderMockFtso.sol/MockNpmFtso.json +951 -0
  153. package/dist/coston2/artifacts/contracts/genesis/implementation/DistributionTreasury.sol/DistributionTreasury.json +336 -0
  154. package/dist/coston2/artifacts/contracts/genesis/implementation/FlareDaemon.sol/FlareDaemon.json +794 -0
  155. package/dist/coston2/artifacts/contracts/genesis/implementation/GovernanceSettings.sol/GovernanceSettings.json +219 -0
  156. package/dist/coston2/artifacts/contracts/genesis/implementation/IncentivePoolTreasury.sol/IncentivePoolTreasury.json +292 -0
  157. package/dist/coston2/artifacts/contracts/genesis/implementation/InitialAirdrop.sol/InitialAirdrop.json +493 -0
  158. package/dist/coston2/artifacts/contracts/genesis/implementation/PriceSubmitter.sol/PriceSubmitter.json +569 -0
  159. package/dist/coston2/artifacts/contracts/genesis/implementation/StateConnector.sol/StateConnector.json +324 -0
  160. package/dist/coston2/artifacts/contracts/genesis/interface/IFlareDaemonize.sol/IFlareDaemonize.json +50 -0
  161. package/dist/coston2/artifacts/contracts/genesis/interface/IFtsoGenesis.sol/IFtsoGenesis.json +63 -0
  162. package/dist/coston2/artifacts/contracts/genesis/interface/IFtsoManagerGenesis.sol/IFtsoManagerGenesis.json +24 -0
  163. package/dist/coston2/artifacts/contracts/genesis/interface/IFtsoRegistryGenesis.sol/IFtsoRegistryGenesis.json +30 -0
  164. package/dist/coston2/artifacts/contracts/genesis/interface/IIPriceSubmitter.sol/IIPriceSubmitter.json +283 -0
  165. package/dist/coston2/artifacts/contracts/genesis/interface/IInflationGenesis.sol/IInflationGenesis.json +18 -0
  166. package/dist/coston2/artifacts/contracts/governance/implementation/Governed.sol/Governed.json +220 -0
  167. package/dist/coston2/artifacts/contracts/governance/implementation/GovernedAtGenesis.sol/GovernedAtGenesis.json +233 -0
  168. package/dist/coston2/artifacts/contracts/governance/implementation/GovernedBase.sol/GovernedBase.json +209 -0
  169. package/dist/coston2/artifacts/contracts/governance/implementation/Governor.sol/Governor.json +653 -0
  170. package/dist/coston2/artifacts/contracts/governance/implementation/GovernorProposals.sol/GovernorProposals.json +24 -0
  171. package/dist/coston2/artifacts/contracts/governance/implementation/GovernorProposer.sol/GovernorProposer.json +265 -0
  172. package/dist/coston2/artifacts/contracts/governance/implementation/GovernorVotePower.sol/GovernorVotePower.json +24 -0
  173. package/dist/coston2/artifacts/contracts/governance/implementation/GovernorVotes.sol/GovernorVotes.json +10 -0
  174. package/dist/coston2/artifacts/contracts/governance/implementation/PollingFoundation.sol/PollingFoundation.json +1070 -0
  175. package/dist/coston2/artifacts/contracts/governance/interface/IIGovernorProposer.sol/IIGovernorProposer.json +30 -0
  176. package/dist/coston2/artifacts/contracts/governance/interface/IIPollingFoundation.sol/IIPollingFoundation.json +640 -0
  177. package/dist/coston2/artifacts/contracts/inflation/implementation/Inflation.sol/Inflation.json +926 -0
  178. package/dist/coston2/artifacts/contracts/inflation/implementation/InflationAllocation.sol/InflationAllocation.json +463 -0
  179. package/dist/coston2/artifacts/contracts/inflation/implementation/Supply.sol/Supply.json +543 -0
  180. package/dist/coston2/artifacts/contracts/inflation/interface/IIInflationAllocation.sol/IIInflationAllocation.json +49 -0
  181. package/dist/coston2/artifacts/contracts/inflation/interface/IIInflationPercentageProvider.sol/IIInflationPercentageProvider.json +24 -0
  182. package/dist/coston2/artifacts/contracts/inflation/interface/IIInflationReceiver.sol/IIInflationReceiver.json +57 -0
  183. package/dist/coston2/artifacts/contracts/inflation/interface/IIInflationSharingPercentageProvider.sol/IIInflationSharingPercentageProvider.json +36 -0
  184. package/dist/coston2/artifacts/contracts/inflation/interface/IISupply.sol/IISupply.json +82 -0
  185. package/dist/coston2/artifacts/contracts/inflation/lib/InflationAnnum.sol/InflationAnnum.json +10 -0
  186. package/dist/coston2/artifacts/contracts/inflation/lib/InflationAnnums.sol/InflationAnnums.json +10 -0
  187. package/dist/coston2/artifacts/contracts/inflation/lib/RewardService.sol/RewardService.json +30 -0
  188. package/dist/coston2/artifacts/contracts/inflation/lib/RewardServices.sol/RewardServices.json +49 -0
  189. package/dist/coston2/artifacts/contracts/mockXAsset/interface/ICollateralizable.sol/ICollateralizable.json +234 -0
  190. package/dist/coston2/artifacts/contracts/token/implementation/CheckPointable.sol/CheckPointable.json +142 -0
  191. package/dist/coston2/artifacts/contracts/token/implementation/CleanupBlockNumberManager.sol/CleanupBlockNumberManager.json +389 -0
  192. package/dist/coston2/artifacts/contracts/token/implementation/Delegatable.sol/Delegatable.json +235 -0
  193. package/dist/coston2/artifacts/contracts/token/implementation/GovernanceVotePower.sol/GovernanceVotePower.json +324 -0
  194. package/dist/coston2/artifacts/contracts/token/implementation/VPContract.sol/VPContract.json +798 -0
  195. package/dist/coston2/artifacts/contracts/token/implementation/VPToken.sol/VPToken.json +1264 -0
  196. package/dist/coston2/artifacts/contracts/token/implementation/WNat.sol/WNat.json +1357 -0
  197. package/dist/coston2/artifacts/contracts/token/interface/IICleanable.sol/IICleanable.json +50 -0
  198. package/dist/coston2/artifacts/contracts/token/interface/IIGovernanceVotePower.sol/IIGovernanceVotePower.json +252 -0
  199. package/dist/coston2/artifacts/contracts/token/interface/IIVPContract.sol/IIVPContract.json +620 -0
  200. package/dist/coston2/artifacts/contracts/token/interface/IIVPToken.sol/IIVPToken.json +832 -0
  201. package/dist/coston2/artifacts/contracts/token/lib/CheckPointHistory.sol/CheckPointHistory.json +10 -0
  202. package/dist/coston2/artifacts/contracts/token/lib/CheckPointHistoryCache.sol/CheckPointHistoryCache.json +10 -0
  203. package/dist/coston2/artifacts/contracts/token/lib/CheckPointsByAddress.sol/CheckPointsByAddress.json +10 -0
  204. package/dist/coston2/artifacts/contracts/token/lib/DelegateCheckPointHistory.sol/DelegateCheckPointHistory.json +10 -0
  205. package/dist/coston2/artifacts/contracts/token/lib/DelegateCheckPointsByAddress.sol/DelegateCheckPointsByAddress.json +10 -0
  206. package/dist/coston2/artifacts/contracts/token/lib/DelegationHistory.sol/DelegationHistory.json +24 -0
  207. package/dist/coston2/artifacts/contracts/token/lib/ExplicitDelegation.sol/ExplicitDelegation.json +10 -0
  208. package/dist/coston2/artifacts/contracts/token/lib/PercentageDelegation.sol/PercentageDelegation.json +24 -0
  209. package/dist/coston2/artifacts/contracts/token/lib/VotePower.sol/VotePower.json +10 -0
  210. package/dist/coston2/artifacts/contracts/token/lib/VotePowerCache.sol/VotePowerCache.json +10 -0
  211. package/dist/coston2/artifacts/contracts/tokenPools/implementation/AttestationProviderRewardManager.sol/AttestationProviderRewardManager.json +741 -0
  212. package/dist/coston2/artifacts/contracts/tokenPools/implementation/Distribution.sol/Distribution.json +561 -0
  213. package/dist/coston2/artifacts/contracts/tokenPools/implementation/DistributionToDelegators.sol/DistributionToDelegators.json +1121 -0
  214. package/dist/coston2/artifacts/contracts/tokenPools/implementation/Escrow.sol/Escrow.json +769 -0
  215. package/dist/coston2/artifacts/contracts/tokenPools/implementation/FtsoRewardManager.sol/FtsoRewardManager.json +1412 -0
  216. package/dist/coston2/artifacts/contracts/tokenPools/implementation/GenericRewardManager.sol/GenericRewardManager.json +720 -0
  217. package/dist/coston2/artifacts/contracts/tokenPools/implementation/IncentivePool.sol/IncentivePool.json +927 -0
  218. package/dist/coston2/artifacts/contracts/tokenPools/implementation/IncentivePoolAllocation.sol/IncentivePoolAllocation.json +463 -0
  219. package/dist/coston2/artifacts/contracts/tokenPools/implementation/ValidatorRewardManager.sol/ValidatorRewardManager.json +741 -0
  220. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIFtsoRewardManager.sol/IIFtsoRewardManager.json +962 -0
  221. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIGenericRewardManager.sol/IIGenericRewardManager.json +413 -0
  222. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIIncentivePoolAllocation.sol/IIIncentivePoolAllocation.json +49 -0
  223. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIIncentivePoolPercentageProvider.sol/IIIncentivePoolPercentageProvider.json +24 -0
  224. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIIncentivePoolReceiver.sol/IIIncentivePoolReceiver.json +57 -0
  225. package/dist/coston2/artifacts/contracts/tokenPools/interface/IIIncentivePoolSharingPercentageProvider.sol/IIIncentivePoolSharingPercentageProvider.json +36 -0
  226. package/dist/coston2/artifacts/contracts/tokenPools/interface/IITokenPool.sol/IITokenPool.json +34 -0
  227. package/dist/coston2/artifacts/contracts/tokenPools/lib/DataProviderFee.sol/DataProviderFee.json +10 -0
  228. package/dist/coston2/artifacts/contracts/tokenPools/lib/IncentivePoolAnnum.sol/IncentivePoolAnnum.json +10 -0
  229. package/dist/coston2/artifacts/contracts/tokenPools/lib/IncentivePoolAnnums.sol/IncentivePoolAnnums.json +10 -0
  230. package/dist/coston2/artifacts/contracts/tokenPools/lib/IncentivePoolRewardService.sol/IncentivePoolRewardService.json +30 -0
  231. package/dist/coston2/artifacts/contracts/tokenPools/lib/IncentivePoolRewardServices.sol/IncentivePoolRewardServices.json +49 -0
  232. package/dist/coston2/artifacts/contracts/utils/implementation/AddressSet.sol/AddressSet.json +10 -0
  233. package/dist/coston2/artifacts/contracts/utils/implementation/DateTimeLibrary.sol/BokkyPooBahsDateTimeLibrary.json +154 -0
  234. package/dist/coston2/artifacts/contracts/utils/implementation/FtsoRegistry.sol/FtsoRegistry.json +769 -0
  235. package/dist/coston2/artifacts/contracts/utils/implementation/FtsoRegistryProxy.sol/FtsoRegistryProxy.json +272 -0
  236. package/dist/coston2/artifacts/contracts/utils/implementation/FundDistributor.sol/FundDistributor.json +71 -0
  237. package/dist/coston2/artifacts/contracts/utils/implementation/GovernedAndFlareDaemonized.sol/GovernedAndFlareDaemonized.json +238 -0
  238. package/dist/coston2/artifacts/contracts/utils/implementation/ProxyGoverned.sol/ProxyGoverned.json +256 -0
  239. package/dist/coston2/artifacts/contracts/utils/implementation/RevertErrorTracking.sol/RevertErrorTracking.json +131 -0
  240. package/dist/coston2/artifacts/contracts/utils/implementation/SafePct.sol/SafePct.json +10 -0
  241. package/dist/coston2/artifacts/contracts/utils/implementation/SelfdestructTransfer.sol/SelfdestructTransfer.json +91 -0
  242. package/dist/coston2/artifacts/contracts/utils/implementation/ValidatorRegistry.sol/ValidatorRegistry.json +149 -0
  243. package/dist/coston2/artifacts/contracts/utils/implementation/VoterWhitelister.sol/VoterWhitelister.json +530 -0
  244. package/dist/coston2/artifacts/contracts/utils/interface/IIFtsoRegistry.sol/IIFtsoRegistry.json +477 -0
  245. package/dist/coston2/artifacts/contracts/utils/interface/IIVoterWhitelister.sol/IIVoterWhitelister.json +236 -0
  246. package/dist/coston2/artifacts/contracts/utils/interface/IUpdateValidators.sol/IUpdateValidators.json +18 -0
  247. package/dist/coston2/deploys/contractAddresses.d.ts +45 -0
  248. package/dist/coston2/deploys/contractAddresses.d.ts.map +1 -0
  249. package/dist/coston2/deploys/contractAddresses.js +48 -0
  250. package/dist/coston2/deploys/contractAddresses.js.map +1 -0
  251. package/dist/coston2/deploys/coston2.json +212 -0
  252. package/dist/coston2/deploys/mapper.d.ts +7 -0
  253. package/dist/coston2/deploys/mapper.d.ts.map +1 -0
  254. package/dist/coston2/deploys/mapper.js +40 -0
  255. package/dist/coston2/deploys/mapper.js.map +1 -0
  256. package/dist/coston2/index.d.ts +3 -0
  257. package/dist/coston2/index.d.ts.map +1 -0
  258. package/dist/coston2/index.js +20 -0
  259. package/dist/coston2/index.js.map +1 -0
  260. package/dist/flare/abis.flare.d.ts +4 -0
  261. package/dist/flare/abis.flare.d.ts.map +1 -0
  262. package/dist/flare/abis.flare.js +251 -0
  263. package/dist/flare/abis.flare.js.map +1 -0
  264. package/dist/flare/artifacts/contracts/addressUpdater/implementation/AddressUpdatable.sol/AddressUpdatable.json +42 -0
  265. package/dist/flare/artifacts/contracts/addressUpdater/implementation/AddressUpdater.sol/AddressUpdater.json +311 -0
  266. package/dist/flare/artifacts/contracts/addressUpdater/interface/IIAddressUpdatable.sol/IIAddressUpdatable.json +29 -0
  267. package/dist/flare/artifacts/contracts/assetRegistry/implementation/FlareAssetRegistry.sol/FlareAssetRegistry.json +525 -0
  268. package/dist/flare/artifacts/contracts/assetRegistry/implementation/WNatRegistryProvider.sol/WNatRegistryProvider.json +113 -0
  269. package/dist/flare/artifacts/contracts/assetRegistry/interface/IIERC20WithMetadata.sol/IIERC20WithMetadata.json +233 -0
  270. package/dist/flare/artifacts/contracts/assetRegistry/interface/IIFlareAssetRegistry.sol/IIFlareAssetRegistry.json +316 -0
  271. package/dist/flare/artifacts/contracts/assetRegistry/interface/IIFlareAssetRegistryProvider.sol/IIFlareAssetRegistryProvider.json +66 -0
  272. package/dist/flare/artifacts/contracts/assetRegistry/lib/StandardAttributes.sol/StandardAttributes.json +10 -0
  273. package/dist/flare/artifacts/contracts/claiming/implementation/ClaimSetupManager.sol/ClaimSetupManager.json +1151 -0
  274. package/dist/flare/artifacts/contracts/claiming/implementation/CloneFactory.sol/CloneFactory.json +10 -0
  275. package/dist/flare/artifacts/contracts/claiming/implementation/DelegationAccount.sol/DelegationAccount.json +346 -0
  276. package/dist/flare/artifacts/contracts/claiming/interface/IIClaimSetupManager.sol/IIClaimSetupManager.json +795 -0
  277. package/dist/flare/artifacts/contracts/claiming/interface/IIDelegationAccount.sol/IIDelegationAccount.json +316 -0
  278. package/dist/flare/artifacts/contracts/ftso/implementation/Ftso.sol/Ftso.json +1007 -0
  279. package/dist/flare/artifacts/contracts/ftso/implementation/FtsoManager.sol/FtsoManager.json +1647 -0
  280. package/dist/flare/artifacts/contracts/ftso/interface/IIFtso.sol/IIFtso.json +856 -0
  281. package/dist/flare/artifacts/contracts/ftso/interface/IIFtsoManager.sol/IIFtsoManager.json +837 -0
  282. package/dist/flare/artifacts/contracts/ftso/interface/IIFtsoManagerV1.sol/IIFtsoManagerV1.json +102 -0
  283. package/dist/flare/artifacts/contracts/ftso/lib/FtsoEpoch.sol/FtsoEpoch.json +10 -0
  284. package/dist/flare/artifacts/contracts/ftso/lib/FtsoManagement.sol/FtsoManagement.json +43 -0
  285. package/dist/flare/artifacts/contracts/ftso/lib/FtsoManagerSettings.sol/FtsoManagerSettings.json +10 -0
  286. package/dist/flare/artifacts/contracts/ftso/lib/FtsoMedian.sol/FtsoMedian.json +10 -0
  287. package/dist/flare/artifacts/contracts/ftso/lib/FtsoVote.sol/FtsoVote.json +10 -0
  288. package/dist/flare/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockFtsoRegistry.json +718 -0
  289. package/dist/flare/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockPriceSubmitter.json +338 -0
  290. package/dist/flare/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockVoterWhitelister.json +198 -0
  291. package/dist/flare/artifacts/contracts/ftso/priceProviderMockContracts/priceProviderMockFtso.sol/MockNpmFtso.json +951 -0
  292. package/dist/flare/artifacts/contracts/genesis/implementation/DistributionTreasury.sol/DistributionTreasury.json +336 -0
  293. package/dist/flare/artifacts/contracts/genesis/implementation/FlareDaemon.sol/FlareDaemon.json +794 -0
  294. package/dist/flare/artifacts/contracts/genesis/implementation/GovernanceSettings.sol/GovernanceSettings.json +219 -0
  295. package/dist/flare/artifacts/contracts/genesis/implementation/IncentivePoolTreasury.sol/IncentivePoolTreasury.json +292 -0
  296. package/dist/flare/artifacts/contracts/genesis/implementation/InitialAirdrop.sol/InitialAirdrop.json +493 -0
  297. package/dist/flare/artifacts/contracts/genesis/implementation/PriceSubmitter.sol/PriceSubmitter.json +569 -0
  298. package/dist/flare/artifacts/contracts/genesis/implementation/StateConnector.sol/StateConnector.json +324 -0
  299. package/dist/flare/artifacts/contracts/genesis/interface/IFlareDaemonize.sol/IFlareDaemonize.json +50 -0
  300. package/dist/flare/artifacts/contracts/genesis/interface/IFtsoGenesis.sol/IFtsoGenesis.json +63 -0
  301. package/dist/flare/artifacts/contracts/genesis/interface/IFtsoManagerGenesis.sol/IFtsoManagerGenesis.json +24 -0
  302. package/dist/flare/artifacts/contracts/genesis/interface/IFtsoRegistryGenesis.sol/IFtsoRegistryGenesis.json +30 -0
  303. package/dist/flare/artifacts/contracts/genesis/interface/IIPriceSubmitter.sol/IIPriceSubmitter.json +283 -0
  304. package/dist/flare/artifacts/contracts/genesis/interface/IInflationGenesis.sol/IInflationGenesis.json +18 -0
  305. package/dist/flare/artifacts/contracts/governance/implementation/Governed.sol/Governed.json +220 -0
  306. package/dist/flare/artifacts/contracts/governance/implementation/GovernedAtGenesis.sol/GovernedAtGenesis.json +233 -0
  307. package/dist/flare/artifacts/contracts/governance/implementation/GovernedBase.sol/GovernedBase.json +209 -0
  308. package/dist/flare/artifacts/contracts/governance/implementation/Governor.sol/Governor.json +653 -0
  309. package/dist/flare/artifacts/contracts/governance/implementation/GovernorProposals.sol/GovernorProposals.json +24 -0
  310. package/dist/flare/artifacts/contracts/governance/implementation/GovernorProposer.sol/GovernorProposer.json +265 -0
  311. package/dist/flare/artifacts/contracts/governance/implementation/GovernorVotePower.sol/GovernorVotePower.json +24 -0
  312. package/dist/flare/artifacts/contracts/governance/implementation/GovernorVotes.sol/GovernorVotes.json +10 -0
  313. package/dist/flare/artifacts/contracts/governance/implementation/PollingFoundation.sol/PollingFoundation.json +1070 -0
  314. package/dist/flare/artifacts/contracts/governance/interface/IIGovernorProposer.sol/IIGovernorProposer.json +30 -0
  315. package/dist/flare/artifacts/contracts/governance/interface/IIPollingFoundation.sol/IIPollingFoundation.json +640 -0
  316. package/dist/flare/artifacts/contracts/inflation/implementation/Inflation.sol/Inflation.json +926 -0
  317. package/dist/flare/artifacts/contracts/inflation/implementation/InflationAllocation.sol/InflationAllocation.json +463 -0
  318. package/dist/flare/artifacts/contracts/inflation/implementation/Supply.sol/Supply.json +543 -0
  319. package/dist/flare/artifacts/contracts/inflation/interface/IIInflationAllocation.sol/IIInflationAllocation.json +49 -0
  320. package/dist/flare/artifacts/contracts/inflation/interface/IIInflationPercentageProvider.sol/IIInflationPercentageProvider.json +24 -0
  321. package/dist/flare/artifacts/contracts/inflation/interface/IIInflationReceiver.sol/IIInflationReceiver.json +57 -0
  322. package/dist/flare/artifacts/contracts/inflation/interface/IIInflationSharingPercentageProvider.sol/IIInflationSharingPercentageProvider.json +36 -0
  323. package/dist/flare/artifacts/contracts/inflation/interface/IISupply.sol/IISupply.json +82 -0
  324. package/dist/flare/artifacts/contracts/inflation/lib/InflationAnnum.sol/InflationAnnum.json +10 -0
  325. package/dist/flare/artifacts/contracts/inflation/lib/InflationAnnums.sol/InflationAnnums.json +10 -0
  326. package/dist/flare/artifacts/contracts/inflation/lib/RewardService.sol/RewardService.json +30 -0
  327. package/dist/flare/artifacts/contracts/inflation/lib/RewardServices.sol/RewardServices.json +49 -0
  328. package/dist/flare/artifacts/contracts/mockXAsset/interface/ICollateralizable.sol/ICollateralizable.json +234 -0
  329. package/dist/flare/artifacts/contracts/token/implementation/CheckPointable.sol/CheckPointable.json +142 -0
  330. package/dist/flare/artifacts/contracts/token/implementation/CleanupBlockNumberManager.sol/CleanupBlockNumberManager.json +389 -0
  331. package/dist/flare/artifacts/contracts/token/implementation/Delegatable.sol/Delegatable.json +235 -0
  332. package/dist/flare/artifacts/contracts/token/implementation/GovernanceVotePower.sol/GovernanceVotePower.json +324 -0
  333. package/dist/flare/artifacts/contracts/token/implementation/VPContract.sol/VPContract.json +798 -0
  334. package/dist/flare/artifacts/contracts/token/implementation/VPToken.sol/VPToken.json +1264 -0
  335. package/dist/flare/artifacts/contracts/token/implementation/WNat.sol/WNat.json +1357 -0
  336. package/dist/flare/artifacts/contracts/token/interface/IICleanable.sol/IICleanable.json +50 -0
  337. package/dist/flare/artifacts/contracts/token/interface/IIGovernanceVotePower.sol/IIGovernanceVotePower.json +252 -0
  338. package/dist/flare/artifacts/contracts/token/interface/IIVPContract.sol/IIVPContract.json +620 -0
  339. package/dist/flare/artifacts/contracts/token/interface/IIVPToken.sol/IIVPToken.json +832 -0
  340. package/dist/flare/artifacts/contracts/token/lib/CheckPointHistory.sol/CheckPointHistory.json +10 -0
  341. package/dist/flare/artifacts/contracts/token/lib/CheckPointHistoryCache.sol/CheckPointHistoryCache.json +10 -0
  342. package/dist/flare/artifacts/contracts/token/lib/CheckPointsByAddress.sol/CheckPointsByAddress.json +10 -0
  343. package/dist/flare/artifacts/contracts/token/lib/DelegateCheckPointHistory.sol/DelegateCheckPointHistory.json +10 -0
  344. package/dist/flare/artifacts/contracts/token/lib/DelegateCheckPointsByAddress.sol/DelegateCheckPointsByAddress.json +10 -0
  345. package/dist/flare/artifacts/contracts/token/lib/DelegationHistory.sol/DelegationHistory.json +24 -0
  346. package/dist/flare/artifacts/contracts/token/lib/ExplicitDelegation.sol/ExplicitDelegation.json +10 -0
  347. package/dist/flare/artifacts/contracts/token/lib/PercentageDelegation.sol/PercentageDelegation.json +24 -0
  348. package/dist/flare/artifacts/contracts/token/lib/VotePower.sol/VotePower.json +10 -0
  349. package/dist/flare/artifacts/contracts/token/lib/VotePowerCache.sol/VotePowerCache.json +10 -0
  350. package/dist/flare/artifacts/contracts/tokenPools/implementation/AttestationProviderRewardManager.sol/AttestationProviderRewardManager.json +741 -0
  351. package/dist/flare/artifacts/contracts/tokenPools/implementation/Distribution.sol/Distribution.json +561 -0
  352. package/dist/flare/artifacts/contracts/tokenPools/implementation/DistributionToDelegators.sol/DistributionToDelegators.json +1121 -0
  353. package/dist/flare/artifacts/contracts/tokenPools/implementation/Escrow.sol/Escrow.json +769 -0
  354. package/dist/flare/artifacts/contracts/tokenPools/implementation/FtsoRewardManager.sol/FtsoRewardManager.json +1412 -0
  355. package/dist/flare/artifacts/contracts/tokenPools/implementation/GenericRewardManager.sol/GenericRewardManager.json +720 -0
  356. package/dist/flare/artifacts/contracts/tokenPools/implementation/IncentivePool.sol/IncentivePool.json +927 -0
  357. package/dist/flare/artifacts/contracts/tokenPools/implementation/IncentivePoolAllocation.sol/IncentivePoolAllocation.json +463 -0
  358. package/dist/flare/artifacts/contracts/tokenPools/implementation/ValidatorRewardManager.sol/ValidatorRewardManager.json +741 -0
  359. package/dist/flare/artifacts/contracts/tokenPools/interface/IIFtsoRewardManager.sol/IIFtsoRewardManager.json +962 -0
  360. package/dist/flare/artifacts/contracts/tokenPools/interface/IIGenericRewardManager.sol/IIGenericRewardManager.json +413 -0
  361. package/dist/flare/artifacts/contracts/tokenPools/interface/IIIncentivePoolAllocation.sol/IIIncentivePoolAllocation.json +49 -0
  362. package/dist/flare/artifacts/contracts/tokenPools/interface/IIIncentivePoolPercentageProvider.sol/IIIncentivePoolPercentageProvider.json +24 -0
  363. package/dist/flare/artifacts/contracts/tokenPools/interface/IIIncentivePoolReceiver.sol/IIIncentivePoolReceiver.json +57 -0
  364. package/dist/flare/artifacts/contracts/tokenPools/interface/IIIncentivePoolSharingPercentageProvider.sol/IIIncentivePoolSharingPercentageProvider.json +36 -0
  365. package/dist/flare/artifacts/contracts/tokenPools/interface/IITokenPool.sol/IITokenPool.json +34 -0
  366. package/dist/flare/artifacts/contracts/tokenPools/lib/DataProviderFee.sol/DataProviderFee.json +10 -0
  367. package/dist/flare/artifacts/contracts/tokenPools/lib/IncentivePoolAnnum.sol/IncentivePoolAnnum.json +10 -0
  368. package/dist/flare/artifacts/contracts/tokenPools/lib/IncentivePoolAnnums.sol/IncentivePoolAnnums.json +10 -0
  369. package/dist/flare/artifacts/contracts/tokenPools/lib/IncentivePoolRewardService.sol/IncentivePoolRewardService.json +30 -0
  370. package/dist/flare/artifacts/contracts/tokenPools/lib/IncentivePoolRewardServices.sol/IncentivePoolRewardServices.json +49 -0
  371. package/dist/flare/artifacts/contracts/utils/implementation/AddressSet.sol/AddressSet.json +10 -0
  372. package/dist/flare/artifacts/contracts/utils/implementation/DateTimeLibrary.sol/BokkyPooBahsDateTimeLibrary.json +154 -0
  373. package/dist/flare/artifacts/contracts/utils/implementation/FtsoRegistry.sol/FtsoRegistry.json +769 -0
  374. package/dist/flare/artifacts/contracts/utils/implementation/FtsoRegistryProxy.sol/FtsoRegistryProxy.json +272 -0
  375. package/dist/flare/artifacts/contracts/utils/implementation/FundDistributor.sol/FundDistributor.json +71 -0
  376. package/dist/flare/artifacts/contracts/utils/implementation/GovernedAndFlareDaemonized.sol/GovernedAndFlareDaemonized.json +238 -0
  377. package/dist/flare/artifacts/contracts/utils/implementation/ProxyGoverned.sol/ProxyGoverned.json +256 -0
  378. package/dist/flare/artifacts/contracts/utils/implementation/RevertErrorTracking.sol/RevertErrorTracking.json +131 -0
  379. package/dist/flare/artifacts/contracts/utils/implementation/SafePct.sol/SafePct.json +10 -0
  380. package/dist/flare/artifacts/contracts/utils/implementation/ValidatorRegistry.sol/ValidatorRegistry.json +149 -0
  381. package/dist/flare/artifacts/contracts/utils/implementation/VoterWhitelister.sol/VoterWhitelister.json +530 -0
  382. package/dist/flare/artifacts/contracts/utils/interface/IIFtsoRegistry.sol/IIFtsoRegistry.json +477 -0
  383. package/dist/flare/artifacts/contracts/utils/interface/IIVoterWhitelister.sol/IIVoterWhitelister.json +236 -0
  384. package/dist/flare/artifacts/contracts/utils/interface/IUpdateValidators.sol/IUpdateValidators.json +18 -0
  385. package/dist/flare/deploys/contractAddresses.d.ts +44 -0
  386. package/dist/flare/deploys/contractAddresses.d.ts.map +1 -0
  387. package/dist/flare/deploys/contractAddresses.js +47 -0
  388. package/dist/flare/deploys/contractAddresses.js.map +1 -0
  389. package/dist/flare/deploys/flare.json +207 -0
  390. package/dist/flare/deploys/mapper.d.ts +7 -0
  391. package/dist/flare/deploys/mapper.d.ts.map +1 -0
  392. package/dist/flare/deploys/mapper.js +40 -0
  393. package/dist/flare/deploys/mapper.js.map +1 -0
  394. package/dist/flare/index.d.ts +3 -0
  395. package/dist/flare/index.d.ts.map +1 -0
  396. package/dist/flare/index.js +20 -0
  397. package/dist/flare/index.js.map +1 -0
  398. package/dist/index.d.ts +7 -0
  399. package/dist/index.d.ts.map +1 -0
  400. package/dist/index.js +48 -0
  401. package/dist/index.js.map +1 -0
  402. package/dist/package.json +28 -0
  403. package/dist/songbird/abis.songbird.d.ts +4 -0
  404. package/dist/songbird/abis.songbird.d.ts.map +1 -0
  405. package/dist/songbird/abis.songbird.js +165 -0
  406. package/dist/songbird/abis.songbird.js.map +1 -0
  407. package/dist/songbird/artifacts/contracts/ftso/implementation/Ftso.sol/Ftso.json +955 -0
  408. package/dist/songbird/artifacts/contracts/ftso/implementation/FtsoManager.sol/FtsoManager.json +1111 -0
  409. package/dist/songbird/artifacts/contracts/ftso/interface/IIFtso.sol/IIFtso.json +811 -0
  410. package/dist/songbird/artifacts/contracts/ftso/interface/IIFtsoManager.sol/IIFtsoManager.json +603 -0
  411. package/dist/songbird/artifacts/contracts/ftso/lib/FtsoEpoch.sol/FtsoEpoch.json +10 -0
  412. package/dist/songbird/artifacts/contracts/ftso/lib/FtsoManagerSettings.sol/FtsoManagerSettings.json +10 -0
  413. package/dist/songbird/artifacts/contracts/ftso/lib/FtsoMedian.sol/FtsoMedian.json +10 -0
  414. package/dist/songbird/artifacts/contracts/ftso/lib/FtsoVote.sol/FtsoVote.json +10 -0
  415. package/dist/songbird/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockFtsoRegistry.json +443 -0
  416. package/dist/songbird/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockPriceSubmitter.json +241 -0
  417. package/dist/songbird/artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockVoterWhitelister.json +198 -0
  418. package/dist/songbird/artifacts/contracts/ftso/priceProviderMockContracts/priceProviderMockFtso.sol/MockNpmFtso.json +906 -0
  419. package/dist/songbird/artifacts/contracts/genesis/implementation/FlareDaemon.sol/FlareDaemon.json +676 -0
  420. package/dist/songbird/artifacts/contracts/genesis/implementation/PriceSubmitter.sol/PriceSubmitter.json +407 -0
  421. package/dist/songbird/artifacts/contracts/genesis/implementation/StateConnector.sol/StateConnector.json +1003 -0
  422. package/dist/songbird/artifacts/contracts/genesis/interface/IFlareDaemonize.sol/IFlareDaemonize.json +37 -0
  423. package/dist/songbird/artifacts/contracts/genesis/interface/IFtsoGenesis.sol/IFtsoGenesis.json +91 -0
  424. package/dist/songbird/artifacts/contracts/genesis/interface/IFtsoRegistryGenesis.sol/IFtsoRegistryGenesis.json +30 -0
  425. package/dist/songbird/artifacts/contracts/genesis/interface/IIPriceSubmitter.sol/IIPriceSubmitter.json +285 -0
  426. package/dist/songbird/artifacts/contracts/genesis/interface/IInflationGenesis.sol/IInflationGenesis.json +18 -0
  427. package/dist/songbird/artifacts/contracts/governance/implementation/Governed.sol/Governed.json +126 -0
  428. package/dist/songbird/artifacts/contracts/governance/implementation/GovernedAtGenesis.sol/GovernedAtGenesis.json +139 -0
  429. package/dist/songbird/artifacts/contracts/governance/implementation/GovernedBase.sol/GovernedBase.json +115 -0
  430. package/dist/songbird/artifacts/contracts/governance/implementation/Governor.sol/Governor.json +785 -0
  431. package/dist/songbird/artifacts/contracts/governance/implementation/GovernorProposals.sol/GovernorProposals.json +24 -0
  432. package/dist/songbird/artifacts/contracts/governance/implementation/GovernorProposer.sol/GovernorProposer.json +171 -0
  433. package/dist/songbird/artifacts/contracts/governance/implementation/GovernorVotePower.sol/GovernorVotePower.json +24 -0
  434. package/dist/songbird/artifacts/contracts/governance/implementation/GovernorVotes.sol/GovernorVotes.json +10 -0
  435. package/dist/songbird/artifacts/contracts/governance/implementation/InflationAllocation.sol/InflationAllocation.json +351 -0
  436. package/dist/songbird/artifacts/contracts/governance/implementation/PollingFoundation.sol/PollingFoundation.json +994 -0
  437. package/dist/songbird/artifacts/contracts/governance/interface/IIGovernorProposer.sol/IIGovernorProposer.json +30 -0
  438. package/dist/songbird/artifacts/contracts/governance/interface/IIPollingFoundation.sol/IIPollingFoundation.json +671 -0
  439. package/dist/songbird/artifacts/contracts/inflation/implementation/Inflation.sol/Inflation.json +879 -0
  440. package/dist/songbird/artifacts/contracts/inflation/implementation/Supply.sol/Supply.json +403 -0
  441. package/dist/songbird/artifacts/contracts/inflation/interface/IIInflationPercentageProvider.sol/IIInflationPercentageProvider.json +24 -0
  442. package/dist/songbird/artifacts/contracts/inflation/interface/IIInflationReceiver.sol/IIInflationReceiver.json +44 -0
  443. package/dist/songbird/artifacts/contracts/inflation/interface/IIInflationSharingPercentageProvider.sol/IIInflationSharingPercentageProvider.json +36 -0
  444. package/dist/songbird/artifacts/contracts/inflation/interface/IISupply.sol/IISupply.json +88 -0
  445. package/dist/songbird/artifacts/contracts/inflation/lib/InflationAnnum.sol/InflationAnnum.json +10 -0
  446. package/dist/songbird/artifacts/contracts/inflation/lib/InflationAnnums.sol/InflationAnnums.json +10 -0
  447. package/dist/songbird/artifacts/contracts/inflation/lib/RewardService.sol/RewardService.json +30 -0
  448. package/dist/songbird/artifacts/contracts/inflation/lib/RewardServices.sol/RewardServices.json +49 -0
  449. package/dist/songbird/artifacts/contracts/mockXAsset/interface/ICollateralizable.sol/ICollateralizable.json +234 -0
  450. package/dist/songbird/artifacts/contracts/token/implementation/CheckPointable.sol/CheckPointable.json +129 -0
  451. package/dist/songbird/artifacts/contracts/token/implementation/CleanupBlockNumberManager.sol/CleanupBlockNumberManager.json +254 -0
  452. package/dist/songbird/artifacts/contracts/token/implementation/Delegatable.sol/Delegatable.json +222 -0
  453. package/dist/songbird/artifacts/contracts/token/implementation/GovernanceVotePower.sol/GovernanceVotePower.json +324 -0
  454. package/dist/songbird/artifacts/contracts/token/implementation/VPContract.sol/VPContract.json +774 -0
  455. package/dist/songbird/artifacts/contracts/token/implementation/VPToken.sol/VPToken.json +1102 -0
  456. package/dist/songbird/artifacts/contracts/token/implementation/WNat.sol/WNat.json +1195 -0
  457. package/dist/songbird/artifacts/contracts/token/interface/IICleanable.sol/IICleanable.json +63 -0
  458. package/dist/songbird/artifacts/contracts/token/interface/IIGovernanceVotePower.sol/IIGovernanceVotePower.json +252 -0
  459. package/dist/songbird/artifacts/contracts/token/interface/IIVPContract.sol/IIVPContract.json +609 -0
  460. package/dist/songbird/artifacts/contracts/token/interface/IIVPToken.sol/IIVPToken.json +790 -0
  461. package/dist/songbird/artifacts/contracts/token/lib/CheckPointHistory.sol/CheckPointHistory.json +10 -0
  462. package/dist/songbird/artifacts/contracts/token/lib/CheckPointHistoryCache.sol/CheckPointHistoryCache.json +10 -0
  463. package/dist/songbird/artifacts/contracts/token/lib/CheckPointsByAddress.sol/CheckPointsByAddress.json +10 -0
  464. package/dist/songbird/artifacts/contracts/token/lib/DelegateCheckPointHistory.sol/DelegateCheckPointHistory.json +10 -0
  465. package/dist/songbird/artifacts/contracts/token/lib/DelegateCheckPointsByAddress.sol/DelegateCheckPointsByAddress.json +10 -0
  466. package/dist/songbird/artifacts/contracts/token/lib/DelegationHistory.sol/DelegationHistory.json +24 -0
  467. package/dist/songbird/artifacts/contracts/token/lib/ExplicitDelegation.sol/ExplicitDelegation.json +10 -0
  468. package/dist/songbird/artifacts/contracts/token/lib/PercentageDelegation.sol/PercentageDelegation.json +24 -0
  469. package/dist/songbird/artifacts/contracts/token/lib/VotePower.sol/VotePower.json +10 -0
  470. package/dist/songbird/artifacts/contracts/token/lib/VotePowerCache.sol/VotePowerCache.json +10 -0
  471. package/dist/songbird/artifacts/contracts/tokenPools/implementation/DataAvailabilityRewardManager.sol/DataAvailabilityRewardManager.json +566 -0
  472. package/dist/songbird/artifacts/contracts/tokenPools/implementation/Distribution.sol/Distribution.json +391 -0
  473. package/dist/songbird/artifacts/contracts/tokenPools/implementation/FtsoRewardManager.sol/FtsoRewardManager.json +1027 -0
  474. package/dist/songbird/artifacts/contracts/tokenPools/interface/IIDataAvailabilityRewardManager.sol/IIDataAvailabilityRewardManager.json +203 -0
  475. package/dist/songbird/artifacts/contracts/tokenPools/interface/IIFtsoRewardManager.sol/IIFtsoRewardManager.json +558 -0
  476. package/dist/songbird/artifacts/contracts/tokenPools/interface/IITokenPool.sol/IITokenPool.json +34 -0
  477. package/dist/songbird/artifacts/contracts/utils/implementation/DateTimeLibrary.sol/BokkyPooBahsDateTimeLibrary.json +154 -0
  478. package/dist/songbird/artifacts/contracts/utils/implementation/FtsoRegistry.sol/FtsoRegistry.json +475 -0
  479. package/dist/songbird/artifacts/contracts/utils/implementation/GovernedAndFlareDaemonized.sol/GovernedAndFlareDaemonized.json +144 -0
  480. package/dist/songbird/artifacts/contracts/utils/implementation/RevertErrorTracking.sol/RevertErrorTracking.json +149 -0
  481. package/dist/songbird/artifacts/contracts/utils/implementation/SafePct.sol/SafePct.json +10 -0
  482. package/dist/songbird/artifacts/contracts/utils/implementation/VoterWhitelister.sol/VoterWhitelister.json +418 -0
  483. package/dist/songbird/artifacts/contracts/utils/interface/IIFtsoRegistry.sol/IIFtsoRegistry.json +315 -0
  484. package/dist/songbird/artifacts/contracts/utils/interface/IIVoterWhitelister.sol/IIVoterWhitelister.json +236 -0
  485. package/dist/songbird/deploys/contractAddresses.d.ts +29 -0
  486. package/dist/songbird/deploys/contractAddresses.d.ts.map +1 -0
  487. package/dist/songbird/deploys/contractAddresses.js +32 -0
  488. package/dist/songbird/deploys/contractAddresses.js.map +1 -0
  489. package/dist/songbird/deploys/mapper.d.ts +7 -0
  490. package/dist/songbird/deploys/mapper.d.ts.map +1 -0
  491. package/dist/songbird/deploys/mapper.js +40 -0
  492. package/dist/songbird/deploys/mapper.js.map +1 -0
  493. package/dist/songbird/deploys/songbird.json +132 -0
  494. package/dist/songbird/index.d.ts +3 -0
  495. package/dist/songbird/index.d.ts.map +1 -0
  496. package/dist/songbird/index.js +20 -0
  497. package/dist/songbird/index.js.map +1 -0
  498. package/package.json +28 -0
package/dist/index.js ADDED
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.nameToAbi = exports.addressToName = exports.nameToAddress = void 0;
4
+ const flare_1 = require("./flare");
5
+ const songbird_1 = require("./songbird");
6
+ const coston_1 = require("./coston");
7
+ const coston2_1 = require("./coston2");
8
+ const nameToAddress = (name, network) => {
9
+ if (network.toLowerCase() == "flare")
10
+ return (0, flare_1.nameToAddress)(name);
11
+ if (network.toLowerCase() == "songbird")
12
+ return (0, songbird_1.nameToAddress)(name);
13
+ if (network.toLowerCase() == "coston")
14
+ return (0, coston_1.nameToAddress)(name);
15
+ if (network.toLowerCase() == "coston2")
16
+ return (0, coston2_1.nameToAddress)(name);
17
+ return "";
18
+ };
19
+ exports.nameToAddress = nameToAddress;
20
+ const addressToName = (address, network) => {
21
+ if (network.toLowerCase() == "flare")
22
+ return (0, flare_1.addressToName)(address);
23
+ if (network.toLowerCase() == "songbird")
24
+ return (0, songbird_1.addressToName)(address);
25
+ if (network.toLowerCase() == "coston")
26
+ return (0, coston_1.addressToName)(address);
27
+ if (network.toLowerCase() == "coston2")
28
+ return (0, coston2_1.addressToName)(address);
29
+ return "";
30
+ };
31
+ exports.addressToName = addressToName;
32
+ const nameToAbi = (name, network) => {
33
+ if (network == "songbird") {
34
+ return (0, songbird_1.nameToAbi)(name);
35
+ }
36
+ else if (network == "flare") {
37
+ return (0, flare_1.nameToAbi)(name);
38
+ }
39
+ else if (network == "coston") {
40
+ return (0, coston_1.nameToAbi)(name);
41
+ }
42
+ else if (network == "coston2") {
43
+ return (0, coston2_1.nameToAbi)(name);
44
+ }
45
+ return { data: [], status: "Please select a network" };
46
+ };
47
+ exports.nameToAbi = nameToAbi;
48
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";;;AAAA,mCAIgB;AAChB,yCAIoB;AACpB,qCAIkB;AAClB,uCAImB;AAGZ,MAAM,aAAa,GAAG,CAAC,IAAY,EAAE,OAAe,EAAU,EAAE;IACrE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,OAAO;QAAE,OAAO,IAAA,qBAAgB,EAAC,IAAI,CAAC,CAAC;IACpE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,UAAU;QAAE,OAAO,IAAA,wBAAgB,EAAC,IAAI,CAAC,CAAC;IACvE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,QAAQ;QAAE,OAAO,IAAA,sBAAgB,EAAC,IAAI,CAAC,CAAC;IACrE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,SAAS;QAAE,OAAO,IAAA,uBAAiB,EAAC,IAAI,CAAC,CAAC;IACvE,OAAO,EAAE,CAAC;AACZ,CAAC,CAAC;AANW,QAAA,aAAa,iBAMxB;AAEK,MAAM,aAAa,GAAG,CAAC,OAAe,EAAE,OAAe,EAAU,EAAE;IACxE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,OAAO;QAAE,OAAO,IAAA,qBAAgB,EAAC,OAAO,CAAC,CAAC;IACvE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,UAAU;QAAE,OAAO,IAAA,wBAAgB,EAAC,OAAO,CAAC,CAAC;IAC1E,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,QAAQ;QAAE,OAAO,IAAA,sBAAgB,EAAC,OAAO,CAAC,CAAC;IACxE,IAAI,OAAO,CAAC,WAAW,EAAE,IAAI,SAAS;QAAE,OAAO,IAAA,uBAAiB,EAAC,OAAO,CAAC,CAAC;IAC1E,OAAO,EAAE,CAAC;AACZ,CAAC,CAAC;AANW,QAAA,aAAa,iBAMxB;AAEK,MAAM,SAAS,GAAG,CACvB,IAAY,EACZ,OAAe,EACgB,EAAE;IACjC,IAAI,OAAO,IAAI,UAAU,EAAE;QACzB,OAAO,IAAA,oBAAY,EAAC,IAAI,CAAC,CAAC;KAC3B;SAAM,IAAI,OAAO,IAAI,OAAO,EAAE;QAC7B,OAAO,IAAA,iBAAY,EAAC,IAAI,CAAC,CAAC;KAC3B;SAAM,IAAI,OAAO,IAAI,QAAQ,EAAE;QAC9B,OAAO,IAAA,kBAAY,EAAC,IAAI,CAAC,CAAC;KAC3B;SAAM,IAAI,OAAO,IAAI,SAAS,EAAE;QAC/B,OAAO,IAAA,mBAAa,EAAC,IAAI,CAAC,CAAC;KAC5B;IACD,OAAO,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,yBAAyB,EAAE,CAAC;AACzD,CAAC,CAAC;AAdW,QAAA,SAAS,aAcpB"}
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@flarenetwork/flare-periphery-contract-artifacts",
3
+ "version": "0.0.1",
4
+ "description": "smart contracts artifacts for all flare chains",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "dependencies": {},
8
+ "devDependencies": {
9
+ "@types/node": "^18.7.17",
10
+ "ethers": "^5.7.2",
11
+ "typescript": "^4.8.4",
12
+ "typechain": "^8.1.0"
13
+ },
14
+ "scripts": {
15
+ "prebuild": "rm -rf dist",
16
+ "build": "tsc"
17
+ },
18
+ "author": "Flare Network",
19
+ "license": "MIT",
20
+ "files": [
21
+ "--coston",
22
+ "--coston2",
23
+ "--songbird",
24
+ "--flare",
25
+ "dist/",
26
+ "--index.ts"
27
+ ]
28
+ }
@@ -0,0 +1,4 @@
1
+ export declare const songbirdABIs: {
2
+ [key: string]: any;
3
+ };
4
+ //# sourceMappingURL=abis.songbird.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abis.songbird.d.ts","sourceRoot":"","sources":["../../songbird/abis.songbird.ts"],"names":[],"mappings":"AA+EA,eAAO,MAAM,YAAY,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CA+E/C,CAAC"}
@@ -0,0 +1,165 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.songbirdABIs = void 0;
7
+ const IIVPToken_json_1 = __importDefault(require("./artifacts/contracts/token/interface/IIVPToken.sol/IIVPToken.json"));
8
+ const IIVPContract_json_1 = __importDefault(require("./artifacts/contracts/token/interface/IIVPContract.sol/IIVPContract.json"));
9
+ const IIGovernanceVotePower_json_1 = __importDefault(require("./artifacts/contracts/token/interface/IIGovernanceVotePower.sol/IIGovernanceVotePower.json"));
10
+ const IICleanable_json_1 = __importDefault(require("./artifacts/contracts/token/interface/IICleanable.sol/IICleanable.json"));
11
+ const VPToken_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/VPToken.sol/VPToken.json"));
12
+ const Delegatable_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/Delegatable.sol/Delegatable.json"));
13
+ const VPContract_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/VPContract.sol/VPContract.json"));
14
+ const GovernanceVotePower_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/GovernanceVotePower.sol/GovernanceVotePower.json"));
15
+ const CleanupBlockNumberManager_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/CleanupBlockNumberManager.sol/CleanupBlockNumberManager.json"));
16
+ const CheckPointable_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/CheckPointable.sol/CheckPointable.json"));
17
+ const WNat_json_1 = __importDefault(require("./artifacts/contracts/token/implementation/WNat.sol/WNat.json"));
18
+ const CheckPointHistoryCache_json_1 = __importDefault(require("./artifacts/contracts/token/lib/CheckPointHistoryCache.sol/CheckPointHistoryCache.json"));
19
+ const DelegateCheckPointHistory_json_1 = __importDefault(require("./artifacts/contracts/token/lib/DelegateCheckPointHistory.sol/DelegateCheckPointHistory.json"));
20
+ const PercentageDelegation_json_1 = __importDefault(require("./artifacts/contracts/token/lib/PercentageDelegation.sol/PercentageDelegation.json"));
21
+ const CheckPointsByAddress_json_1 = __importDefault(require("./artifacts/contracts/token/lib/CheckPointsByAddress.sol/CheckPointsByAddress.json"));
22
+ const VotePowerCache_json_1 = __importDefault(require("./artifacts/contracts/token/lib/VotePowerCache.sol/VotePowerCache.json"));
23
+ const DelegateCheckPointsByAddress_json_1 = __importDefault(require("./artifacts/contracts/token/lib/DelegateCheckPointsByAddress.sol/DelegateCheckPointsByAddress.json"));
24
+ const ExplicitDelegation_json_1 = __importDefault(require("./artifacts/contracts/token/lib/ExplicitDelegation.sol/ExplicitDelegation.json"));
25
+ const DelegationHistory_json_1 = __importDefault(require("./artifacts/contracts/token/lib/DelegationHistory.sol/DelegationHistory.json"));
26
+ const VotePower_json_1 = __importDefault(require("./artifacts/contracts/token/lib/VotePower.sol/VotePower.json"));
27
+ const CheckPointHistory_json_1 = __importDefault(require("./artifacts/contracts/token/lib/CheckPointHistory.sol/CheckPointHistory.json"));
28
+ const IIFtso_json_1 = __importDefault(require("./artifacts/contracts/ftso/interface/IIFtso.sol/IIFtso.json"));
29
+ const IIFtsoManager_json_1 = __importDefault(require("./artifacts/contracts/ftso/interface/IIFtsoManager.sol/IIFtsoManager.json"));
30
+ const FtsoManager_json_1 = __importDefault(require("./artifacts/contracts/ftso/implementation/FtsoManager.sol/FtsoManager.json"));
31
+ const Ftso_json_1 = __importDefault(require("./artifacts/contracts/ftso/implementation/Ftso.sol/Ftso.json"));
32
+ const FtsoVote_json_1 = __importDefault(require("./artifacts/contracts/ftso/lib/FtsoVote.sol/FtsoVote.json"));
33
+ const FtsoMedian_json_1 = __importDefault(require("./artifacts/contracts/ftso/lib/FtsoMedian.sol/FtsoMedian.json"));
34
+ const FtsoEpoch_json_1 = __importDefault(require("./artifacts/contracts/ftso/lib/FtsoEpoch.sol/FtsoEpoch.json"));
35
+ const FtsoManagerSettings_json_1 = __importDefault(require("./artifacts/contracts/ftso/lib/FtsoManagerSettings.sol/FtsoManagerSettings.json"));
36
+ const MockFtsoRegistry_json_1 = __importDefault(require("./artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockFtsoRegistry.json"));
37
+ const MockVoterWhitelister_json_1 = __importDefault(require("./artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockVoterWhitelister.json"));
38
+ const MockPriceSubmitter_json_1 = __importDefault(require("./artifacts/contracts/ftso/priceProviderMockContracts/PriceProviderMockContracts.sol/MockPriceSubmitter.json"));
39
+ const MockNpmFtso_json_1 = __importDefault(require("./artifacts/contracts/ftso/priceProviderMockContracts/priceProviderMockFtso.sol/MockNpmFtso.json"));
40
+ const IIFtsoRegistry_json_1 = __importDefault(require("./artifacts/contracts/utils/interface/IIFtsoRegistry.sol/IIFtsoRegistry.json"));
41
+ const IIVoterWhitelister_json_1 = __importDefault(require("./artifacts/contracts/utils/interface/IIVoterWhitelister.sol/IIVoterWhitelister.json"));
42
+ const GovernedAndFlareDaemonized_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/GovernedAndFlareDaemonized.sol/GovernedAndFlareDaemonized.json"));
43
+ const FtsoRegistry_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/FtsoRegistry.sol/FtsoRegistry.json"));
44
+ const SafePct_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/SafePct.sol/SafePct.json"));
45
+ const RevertErrorTracking_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/RevertErrorTracking.sol/RevertErrorTracking.json"));
46
+ const VoterWhitelister_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/VoterWhitelister.sol/VoterWhitelister.json"));
47
+ const BokkyPooBahsDateTimeLibrary_json_1 = __importDefault(require("./artifacts/contracts/utils/implementation/DateTimeLibrary.sol/BokkyPooBahsDateTimeLibrary.json"));
48
+ const IIGovernorProposer_json_1 = __importDefault(require("./artifacts/contracts/governance/interface/IIGovernorProposer.sol/IIGovernorProposer.json"));
49
+ const IIPollingFoundation_json_1 = __importDefault(require("./artifacts/contracts/governance/interface/IIPollingFoundation.sol/IIPollingFoundation.json"));
50
+ const Governed_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/Governed.sol/Governed.json"));
51
+ const GovernorProposer_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernorProposer.sol/GovernorProposer.json"));
52
+ const GovernorVotePower_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernorVotePower.sol/GovernorVotePower.json"));
53
+ const GovernedBase_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernedBase.sol/GovernedBase.json"));
54
+ const GovernorProposals_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernorProposals.sol/GovernorProposals.json"));
55
+ const GovernedAtGenesis_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernedAtGenesis.sol/GovernedAtGenesis.json"));
56
+ const Governor_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/Governor.sol/Governor.json"));
57
+ const InflationAllocation_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/InflationAllocation.sol/InflationAllocation.json"));
58
+ const GovernorVotes_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/GovernorVotes.sol/GovernorVotes.json"));
59
+ const PollingFoundation_json_1 = __importDefault(require("./artifacts/contracts/governance/implementation/PollingFoundation.sol/PollingFoundation.json"));
60
+ const IIInflationPercentageProvider_json_1 = __importDefault(require("./artifacts/contracts/inflation/interface/IIInflationPercentageProvider.sol/IIInflationPercentageProvider.json"));
61
+ const IIInflationSharingPercentageProvider_json_1 = __importDefault(require("./artifacts/contracts/inflation/interface/IIInflationSharingPercentageProvider.sol/IIInflationSharingPercentageProvider.json"));
62
+ const IIInflationReceiver_json_1 = __importDefault(require("./artifacts/contracts/inflation/interface/IIInflationReceiver.sol/IIInflationReceiver.json"));
63
+ const IISupply_json_1 = __importDefault(require("./artifacts/contracts/inflation/interface/IISupply.sol/IISupply.json"));
64
+ const Inflation_json_1 = __importDefault(require("./artifacts/contracts/inflation/implementation/Inflation.sol/Inflation.json"));
65
+ const Supply_json_1 = __importDefault(require("./artifacts/contracts/inflation/implementation/Supply.sol/Supply.json"));
66
+ const RewardService_json_1 = __importDefault(require("./artifacts/contracts/inflation/lib/RewardService.sol/RewardService.json"));
67
+ const InflationAnnum_json_1 = __importDefault(require("./artifacts/contracts/inflation/lib/InflationAnnum.sol/InflationAnnum.json"));
68
+ const RewardServices_json_1 = __importDefault(require("./artifacts/contracts/inflation/lib/RewardServices.sol/RewardServices.json"));
69
+ const InflationAnnums_json_1 = __importDefault(require("./artifacts/contracts/inflation/lib/InflationAnnums.sol/InflationAnnums.json"));
70
+ const ICollateralizable_json_1 = __importDefault(require("./artifacts/contracts/mockXAsset/interface/ICollateralizable.sol/ICollateralizable.json"));
71
+ const IIFtsoRewardManager_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/interface/IIFtsoRewardManager.sol/IIFtsoRewardManager.json"));
72
+ const IIDataAvailabilityRewardManager_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/interface/IIDataAvailabilityRewardManager.sol/IIDataAvailabilityRewardManager.json"));
73
+ const IITokenPool_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/interface/IITokenPool.sol/IITokenPool.json"));
74
+ const DataAvailabilityRewardManager_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/implementation/DataAvailabilityRewardManager.sol/DataAvailabilityRewardManager.json"));
75
+ const FtsoRewardManager_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/implementation/FtsoRewardManager.sol/FtsoRewardManager.json"));
76
+ const Distribution_json_1 = __importDefault(require("./artifacts/contracts/tokenPools/implementation/Distribution.sol/Distribution.json"));
77
+ const IIPriceSubmitter_json_1 = __importDefault(require("./artifacts/contracts/genesis/interface/IIPriceSubmitter.sol/IIPriceSubmitter.json"));
78
+ const IFtsoGenesis_json_1 = __importDefault(require("./artifacts/contracts/genesis/interface/IFtsoGenesis.sol/IFtsoGenesis.json"));
79
+ const IFtsoRegistryGenesis_json_1 = __importDefault(require("./artifacts/contracts/genesis/interface/IFtsoRegistryGenesis.sol/IFtsoRegistryGenesis.json"));
80
+ const IFlareDaemonize_json_1 = __importDefault(require("./artifacts/contracts/genesis/interface/IFlareDaemonize.sol/IFlareDaemonize.json"));
81
+ const IInflationGenesis_json_1 = __importDefault(require("./artifacts/contracts/genesis/interface/IInflationGenesis.sol/IInflationGenesis.json"));
82
+ const PriceSubmitter_json_1 = __importDefault(require("./artifacts/contracts/genesis/implementation/PriceSubmitter.sol/PriceSubmitter.json"));
83
+ const StateConnector_json_1 = __importDefault(require("./artifacts/contracts/genesis/implementation/StateConnector.sol/StateConnector.json"));
84
+ const FlareDaemon_json_1 = __importDefault(require("./artifacts/contracts/genesis/implementation/FlareDaemon.sol/FlareDaemon.json"));
85
+ exports.songbirdABIs = {
86
+ IIVPToken: IIVPToken_json_1.default.abi,
87
+ IIVPContract: IIVPContract_json_1.default.abi,
88
+ IIGovernanceVotePower: IIGovernanceVotePower_json_1.default.abi,
89
+ IICleanable: IICleanable_json_1.default.abi,
90
+ VPToken: VPToken_json_1.default.abi,
91
+ Delegatable: Delegatable_json_1.default.abi,
92
+ VPContract: VPContract_json_1.default.abi,
93
+ GovernanceVotePower: GovernanceVotePower_json_1.default.abi,
94
+ CleanupBlockNumberManager: CleanupBlockNumberManager_json_1.default.abi,
95
+ CheckPointable: CheckPointable_json_1.default.abi,
96
+ WNat: WNat_json_1.default.abi,
97
+ CheckPointHistoryCache: CheckPointHistoryCache_json_1.default.abi,
98
+ DelegateCheckPointHistory: DelegateCheckPointHistory_json_1.default.abi,
99
+ PercentageDelegation: PercentageDelegation_json_1.default.abi,
100
+ CheckPointsByAddress: CheckPointsByAddress_json_1.default.abi,
101
+ VotePowerCache: VotePowerCache_json_1.default.abi,
102
+ DelegateCheckPointsByAddress: DelegateCheckPointsByAddress_json_1.default.abi,
103
+ ExplicitDelegation: ExplicitDelegation_json_1.default.abi,
104
+ DelegationHistory: DelegationHistory_json_1.default.abi,
105
+ VotePower: VotePower_json_1.default.abi,
106
+ CheckPointHistory: CheckPointHistory_json_1.default.abi,
107
+ IIFtso: IIFtso_json_1.default.abi,
108
+ IIFtsoManager: IIFtsoManager_json_1.default.abi,
109
+ FtsoManager: FtsoManager_json_1.default.abi,
110
+ Ftso: Ftso_json_1.default.abi,
111
+ FtsoVote: FtsoVote_json_1.default.abi,
112
+ FtsoMedian: FtsoMedian_json_1.default.abi,
113
+ FtsoEpoch: FtsoEpoch_json_1.default.abi,
114
+ FtsoManagerSettings: FtsoManagerSettings_json_1.default.abi,
115
+ MockFtsoRegistry: MockFtsoRegistry_json_1.default.abi,
116
+ MockVoterWhitelister: MockVoterWhitelister_json_1.default.abi,
117
+ MockPriceSubmitter: MockPriceSubmitter_json_1.default.abi,
118
+ MockNpmFtso: MockNpmFtso_json_1.default.abi,
119
+ IIFtsoRegistry: IIFtsoRegistry_json_1.default.abi,
120
+ IIVoterWhitelister: IIVoterWhitelister_json_1.default.abi,
121
+ GovernedAndFlareDaemonized: GovernedAndFlareDaemonized_json_1.default.abi,
122
+ FtsoRegistry: FtsoRegistry_json_1.default.abi,
123
+ SafePct: SafePct_json_1.default.abi,
124
+ RevertErrorTracking: RevertErrorTracking_json_1.default.abi,
125
+ VoterWhitelister: VoterWhitelister_json_1.default.abi,
126
+ BokkyPooBahsDateTimeLibrary: BokkyPooBahsDateTimeLibrary_json_1.default.abi,
127
+ IIGovernorProposer: IIGovernorProposer_json_1.default.abi,
128
+ IIPollingFoundation: IIPollingFoundation_json_1.default.abi,
129
+ Governed: Governed_json_1.default.abi,
130
+ GovernorProposer: GovernorProposer_json_1.default.abi,
131
+ GovernorVotePower: GovernorVotePower_json_1.default.abi,
132
+ GovernedBase: GovernedBase_json_1.default.abi,
133
+ GovernorProposals: GovernorProposals_json_1.default.abi,
134
+ GovernedAtGenesis: GovernedAtGenesis_json_1.default.abi,
135
+ Governor: Governor_json_1.default.abi,
136
+ InflationAllocation: InflationAllocation_json_1.default.abi,
137
+ GovernorVotes: GovernorVotes_json_1.default.abi,
138
+ PollingFoundation: PollingFoundation_json_1.default.abi,
139
+ IIInflationPercentageProvider: IIInflationPercentageProvider_json_1.default.abi,
140
+ IIInflationSharingPercentageProvider: IIInflationSharingPercentageProvider_json_1.default.abi,
141
+ IIInflationReceiver: IIInflationReceiver_json_1.default.abi,
142
+ IISupply: IISupply_json_1.default.abi,
143
+ Inflation: Inflation_json_1.default.abi,
144
+ Supply: Supply_json_1.default.abi,
145
+ RewardService: RewardService_json_1.default.abi,
146
+ InflationAnnum: InflationAnnum_json_1.default.abi,
147
+ RewardServices: RewardServices_json_1.default.abi,
148
+ InflationAnnums: InflationAnnums_json_1.default.abi,
149
+ ICollateralizable: ICollateralizable_json_1.default.abi,
150
+ IIFtsoRewardManager: IIFtsoRewardManager_json_1.default.abi,
151
+ IIDataAvailabilityRewardManager: IIDataAvailabilityRewardManager_json_1.default.abi,
152
+ IITokenPool: IITokenPool_json_1.default.abi,
153
+ DataAvailabilityRewardManager: DataAvailabilityRewardManager_json_1.default.abi,
154
+ FtsoRewardManager: FtsoRewardManager_json_1.default.abi,
155
+ Distribution: Distribution_json_1.default.abi,
156
+ IIPriceSubmitter: IIPriceSubmitter_json_1.default.abi,
157
+ IFtsoGenesis: IFtsoGenesis_json_1.default.abi,
158
+ IFtsoRegistryGenesis: IFtsoRegistryGenesis_json_1.default.abi,
159
+ IFlareDaemonize: IFlareDaemonize_json_1.default.abi,
160
+ IInflationGenesis: IInflationGenesis_json_1.default.abi,
161
+ PriceSubmitter: PriceSubmitter_json_1.default.abi,
162
+ StateConnector: StateConnector_json_1.default.abi,
163
+ FlareDaemon: FlareDaemon_json_1.default.abi,
164
+ };
165
+ //# sourceMappingURL=abis.songbird.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"abis.songbird.js","sourceRoot":"","sources":["../../songbird/abis.songbird.ts"],"names":[],"mappings":"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"}