@nevermined-io/core-kit 1.18.1 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -15814,6 +15814,233 @@ export const errorsAbi = [
15814
15814
  }
15815
15815
  ];
15816
15816
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
15817
+ // EurcTokenMock
15818
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
15819
+ export const eurcTokenMockAbi = [
15820
+ {
15821
+ type: 'function',
15822
+ inputs: [
15823
+ {
15824
+ name: 'owner',
15825
+ internalType: 'address',
15826
+ type: 'address'
15827
+ },
15828
+ {
15829
+ name: 'spender',
15830
+ internalType: 'address',
15831
+ type: 'address'
15832
+ }
15833
+ ],
15834
+ name: 'allowance',
15835
+ outputs: [
15836
+ {
15837
+ name: '',
15838
+ internalType: 'uint256',
15839
+ type: 'uint256'
15840
+ }
15841
+ ],
15842
+ stateMutability: 'view'
15843
+ },
15844
+ {
15845
+ type: 'function',
15846
+ inputs: [
15847
+ {
15848
+ name: 'spender',
15849
+ internalType: 'address',
15850
+ type: 'address'
15851
+ },
15852
+ {
15853
+ name: 'value',
15854
+ internalType: 'uint256',
15855
+ type: 'uint256'
15856
+ }
15857
+ ],
15858
+ name: 'approve',
15859
+ outputs: [
15860
+ {
15861
+ name: '',
15862
+ internalType: 'bool',
15863
+ type: 'bool'
15864
+ }
15865
+ ],
15866
+ stateMutability: 'nonpayable'
15867
+ },
15868
+ {
15869
+ type: 'function',
15870
+ inputs: [
15871
+ {
15872
+ name: 'account',
15873
+ internalType: 'address',
15874
+ type: 'address'
15875
+ }
15876
+ ],
15877
+ name: 'balanceOf',
15878
+ outputs: [
15879
+ {
15880
+ name: '',
15881
+ internalType: 'uint256',
15882
+ type: 'uint256'
15883
+ }
15884
+ ],
15885
+ stateMutability: 'view'
15886
+ },
15887
+ {
15888
+ type: 'function',
15889
+ inputs: [],
15890
+ name: 'decimals',
15891
+ outputs: [
15892
+ {
15893
+ name: '',
15894
+ internalType: 'uint8',
15895
+ type: 'uint8'
15896
+ }
15897
+ ],
15898
+ stateMutability: 'pure'
15899
+ },
15900
+ {
15901
+ type: 'function',
15902
+ inputs: [],
15903
+ name: 'name',
15904
+ outputs: [
15905
+ {
15906
+ name: '',
15907
+ internalType: 'string',
15908
+ type: 'string'
15909
+ }
15910
+ ],
15911
+ stateMutability: 'pure'
15912
+ },
15913
+ {
15914
+ type: 'function',
15915
+ inputs: [],
15916
+ name: 'symbol',
15917
+ outputs: [
15918
+ {
15919
+ name: '',
15920
+ internalType: 'string',
15921
+ type: 'string'
15922
+ }
15923
+ ],
15924
+ stateMutability: 'pure'
15925
+ },
15926
+ {
15927
+ type: 'function',
15928
+ inputs: [],
15929
+ name: 'totalSupply',
15930
+ outputs: [
15931
+ {
15932
+ name: '',
15933
+ internalType: 'uint256',
15934
+ type: 'uint256'
15935
+ }
15936
+ ],
15937
+ stateMutability: 'view'
15938
+ },
15939
+ {
15940
+ type: 'function',
15941
+ inputs: [
15942
+ {
15943
+ name: 'to',
15944
+ internalType: 'address',
15945
+ type: 'address'
15946
+ },
15947
+ {
15948
+ name: 'value',
15949
+ internalType: 'uint256',
15950
+ type: 'uint256'
15951
+ }
15952
+ ],
15953
+ name: 'transfer',
15954
+ outputs: [
15955
+ {
15956
+ name: '',
15957
+ internalType: 'bool',
15958
+ type: 'bool'
15959
+ }
15960
+ ],
15961
+ stateMutability: 'nonpayable'
15962
+ },
15963
+ {
15964
+ type: 'function',
15965
+ inputs: [
15966
+ {
15967
+ name: 'from',
15968
+ internalType: 'address',
15969
+ type: 'address'
15970
+ },
15971
+ {
15972
+ name: 'to',
15973
+ internalType: 'address',
15974
+ type: 'address'
15975
+ },
15976
+ {
15977
+ name: 'value',
15978
+ internalType: 'uint256',
15979
+ type: 'uint256'
15980
+ }
15981
+ ],
15982
+ name: 'transferFrom',
15983
+ outputs: [
15984
+ {
15985
+ name: '',
15986
+ internalType: 'bool',
15987
+ type: 'bool'
15988
+ }
15989
+ ],
15990
+ stateMutability: 'nonpayable'
15991
+ },
15992
+ {
15993
+ type: 'event',
15994
+ anonymous: false,
15995
+ inputs: [
15996
+ {
15997
+ name: 'owner',
15998
+ internalType: 'address',
15999
+ type: 'address',
16000
+ indexed: true
16001
+ },
16002
+ {
16003
+ name: 'spender',
16004
+ internalType: 'address',
16005
+ type: 'address',
16006
+ indexed: true
16007
+ },
16008
+ {
16009
+ name: 'value',
16010
+ internalType: 'uint256',
16011
+ type: 'uint256',
16012
+ indexed: false
16013
+ }
16014
+ ],
16015
+ name: 'Approval'
16016
+ },
16017
+ {
16018
+ type: 'event',
16019
+ anonymous: false,
16020
+ inputs: [
16021
+ {
16022
+ name: 'from',
16023
+ internalType: 'address',
16024
+ type: 'address',
16025
+ indexed: true
16026
+ },
16027
+ {
16028
+ name: 'to',
16029
+ internalType: 'address',
16030
+ type: 'address',
16031
+ indexed: true
16032
+ },
16033
+ {
16034
+ name: 'value',
16035
+ internalType: 'uint256',
16036
+ type: 'uint256',
16037
+ indexed: false
16038
+ }
16039
+ ],
16040
+ name: 'Transfer'
16041
+ }
16042
+ ];
16043
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
15817
16044
  // FiatPaymentTemplate
15818
16045
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
15819
16046
  export const fiatPaymentTemplateAbi = [
@@ -16736,6 +16963,233 @@ export const fiatSettlementConditionConfig = {
16736
16963
  abi: fiatSettlementConditionAbi
16737
16964
  };
16738
16965
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
16966
+ // FiatTokenMock
16967
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
16968
+ export const fiatTokenMockAbi = [
16969
+ {
16970
+ type: 'function',
16971
+ inputs: [
16972
+ {
16973
+ name: 'owner',
16974
+ internalType: 'address',
16975
+ type: 'address'
16976
+ },
16977
+ {
16978
+ name: 'spender',
16979
+ internalType: 'address',
16980
+ type: 'address'
16981
+ }
16982
+ ],
16983
+ name: 'allowance',
16984
+ outputs: [
16985
+ {
16986
+ name: '',
16987
+ internalType: 'uint256',
16988
+ type: 'uint256'
16989
+ }
16990
+ ],
16991
+ stateMutability: 'view'
16992
+ },
16993
+ {
16994
+ type: 'function',
16995
+ inputs: [
16996
+ {
16997
+ name: 'spender',
16998
+ internalType: 'address',
16999
+ type: 'address'
17000
+ },
17001
+ {
17002
+ name: 'value',
17003
+ internalType: 'uint256',
17004
+ type: 'uint256'
17005
+ }
17006
+ ],
17007
+ name: 'approve',
17008
+ outputs: [
17009
+ {
17010
+ name: '',
17011
+ internalType: 'bool',
17012
+ type: 'bool'
17013
+ }
17014
+ ],
17015
+ stateMutability: 'nonpayable'
17016
+ },
17017
+ {
17018
+ type: 'function',
17019
+ inputs: [
17020
+ {
17021
+ name: 'account',
17022
+ internalType: 'address',
17023
+ type: 'address'
17024
+ }
17025
+ ],
17026
+ name: 'balanceOf',
17027
+ outputs: [
17028
+ {
17029
+ name: '',
17030
+ internalType: 'uint256',
17031
+ type: 'uint256'
17032
+ }
17033
+ ],
17034
+ stateMutability: 'view'
17035
+ },
17036
+ {
17037
+ type: 'function',
17038
+ inputs: [],
17039
+ name: 'decimals',
17040
+ outputs: [
17041
+ {
17042
+ name: '',
17043
+ internalType: 'uint8',
17044
+ type: 'uint8'
17045
+ }
17046
+ ],
17047
+ stateMutability: 'pure'
17048
+ },
17049
+ {
17050
+ type: 'function',
17051
+ inputs: [],
17052
+ name: 'name',
17053
+ outputs: [
17054
+ {
17055
+ name: '',
17056
+ internalType: 'string',
17057
+ type: 'string'
17058
+ }
17059
+ ],
17060
+ stateMutability: 'pure'
17061
+ },
17062
+ {
17063
+ type: 'function',
17064
+ inputs: [],
17065
+ name: 'symbol',
17066
+ outputs: [
17067
+ {
17068
+ name: '',
17069
+ internalType: 'string',
17070
+ type: 'string'
17071
+ }
17072
+ ],
17073
+ stateMutability: 'pure'
17074
+ },
17075
+ {
17076
+ type: 'function',
17077
+ inputs: [],
17078
+ name: 'totalSupply',
17079
+ outputs: [
17080
+ {
17081
+ name: '',
17082
+ internalType: 'uint256',
17083
+ type: 'uint256'
17084
+ }
17085
+ ],
17086
+ stateMutability: 'view'
17087
+ },
17088
+ {
17089
+ type: 'function',
17090
+ inputs: [
17091
+ {
17092
+ name: 'to',
17093
+ internalType: 'address',
17094
+ type: 'address'
17095
+ },
17096
+ {
17097
+ name: 'value',
17098
+ internalType: 'uint256',
17099
+ type: 'uint256'
17100
+ }
17101
+ ],
17102
+ name: 'transfer',
17103
+ outputs: [
17104
+ {
17105
+ name: '',
17106
+ internalType: 'bool',
17107
+ type: 'bool'
17108
+ }
17109
+ ],
17110
+ stateMutability: 'nonpayable'
17111
+ },
17112
+ {
17113
+ type: 'function',
17114
+ inputs: [
17115
+ {
17116
+ name: 'from',
17117
+ internalType: 'address',
17118
+ type: 'address'
17119
+ },
17120
+ {
17121
+ name: 'to',
17122
+ internalType: 'address',
17123
+ type: 'address'
17124
+ },
17125
+ {
17126
+ name: 'value',
17127
+ internalType: 'uint256',
17128
+ type: 'uint256'
17129
+ }
17130
+ ],
17131
+ name: 'transferFrom',
17132
+ outputs: [
17133
+ {
17134
+ name: '',
17135
+ internalType: 'bool',
17136
+ type: 'bool'
17137
+ }
17138
+ ],
17139
+ stateMutability: 'nonpayable'
17140
+ },
17141
+ {
17142
+ type: 'event',
17143
+ anonymous: false,
17144
+ inputs: [
17145
+ {
17146
+ name: 'owner',
17147
+ internalType: 'address',
17148
+ type: 'address',
17149
+ indexed: true
17150
+ },
17151
+ {
17152
+ name: 'spender',
17153
+ internalType: 'address',
17154
+ type: 'address',
17155
+ indexed: true
17156
+ },
17157
+ {
17158
+ name: 'value',
17159
+ internalType: 'uint256',
17160
+ type: 'uint256',
17161
+ indexed: false
17162
+ }
17163
+ ],
17164
+ name: 'Approval'
17165
+ },
17166
+ {
17167
+ type: 'event',
17168
+ anonymous: false,
17169
+ inputs: [
17170
+ {
17171
+ name: 'from',
17172
+ internalType: 'address',
17173
+ type: 'address',
17174
+ indexed: true
17175
+ },
17176
+ {
17177
+ name: 'to',
17178
+ internalType: 'address',
17179
+ type: 'address',
17180
+ indexed: true
17181
+ },
17182
+ {
17183
+ name: 'value',
17184
+ internalType: 'uint256',
17185
+ type: 'uint256',
17186
+ indexed: false
17187
+ }
17188
+ ],
17189
+ name: 'Transfer'
17190
+ }
17191
+ ];
17192
+ //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
16739
17193
  // FixedPaymentTemplate
16740
17194
  //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
16741
17195
  export const fixedPaymentTemplateAbi = [