opnet 1.3.2 → 1.3.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.
Files changed (99) hide show
  1. package/browser/_version.d.ts +1 -1
  2. package/browser/abi/shared/interfaces/motoswap/{IAdministeredOP20.d.ts → IMoto.d.ts} +2 -2
  3. package/browser/abi/shared/interfaces/motoswap/IMotoChef.d.ts +208 -0
  4. package/browser/abi/shared/interfaces/motoswap/IMotoswapPoolContract.d.ts +0 -4
  5. package/browser/abi/shared/interfaces/motoswap/IMotoswapStakingContract.d.ts +19 -3
  6. package/browser/abi/shared/interfaces/motoswap/INativeSwapContract.d.ts +13 -5
  7. package/browser/abi/shared/json/generic/STAKING_ABI.d.ts +0 -1
  8. package/{build/abi/shared/json/motoswap/REENTRANCY_GUARD_ABI.d.ts → browser/abi/shared/json/motoswap/MOTOCHEF_ABI.d.ts} +1 -1
  9. package/browser/abi/shared/json/motoswap/MOTOSWAP_STAKING_ABI.d.ts +0 -1
  10. package/browser/abi/shared/json/motoswap/MOTO_ABI.d.ts +2 -0
  11. package/browser/abi/shared/json/motoswap/NATIVE_SWAP_ABI.d.ts +0 -1
  12. package/browser/fetch/fetch-browser.d.ts +4 -0
  13. package/browser/fetch/fetch.d.ts +2 -0
  14. package/browser/index.js +1 -1
  15. package/browser/opnet.d.ts +10 -12
  16. package/build/_version.d.ts +1 -1
  17. package/build/_version.js +1 -1
  18. package/build/abi/shared/interfaces/motoswap/{IAdministeredOP20.d.ts → IMoto.d.ts} +2 -2
  19. package/build/abi/shared/interfaces/motoswap/IMotoChef.d.ts +208 -0
  20. package/build/abi/shared/interfaces/motoswap/IMotoswapPoolContract.d.ts +0 -4
  21. package/build/abi/shared/interfaces/motoswap/IMotoswapStakingContract.d.ts +19 -3
  22. package/build/abi/shared/interfaces/motoswap/INativeSwapContract.d.ts +13 -5
  23. package/build/abi/shared/json/generic/STAKING_ABI.d.ts +0 -1
  24. package/build/abi/shared/json/generic/STAKING_ABI.js +1 -1
  25. package/{browser/abi/shared/json/motoswap/REENTRANCY_GUARD_ABI.d.ts → build/abi/shared/json/motoswap/MOTOCHEF_ABI.d.ts} +1 -1
  26. package/build/abi/shared/json/motoswap/MOTOCHEF_ABI.js +820 -0
  27. package/build/abi/shared/json/motoswap/MOTOSWAP_STAKING_ABI.d.ts +0 -1
  28. package/build/abi/shared/json/motoswap/MOTOSWAP_STAKING_ABI.js +45 -5
  29. package/build/abi/shared/json/motoswap/MOTO_ABI.d.ts +2 -0
  30. package/build/abi/shared/json/motoswap/{ADMINISTERD_OP_20_ABI.js → MOTO_ABI.js} +5 -13
  31. package/build/abi/shared/json/motoswap/NATIVE_SWAP_ABI.d.ts +0 -1
  32. package/build/abi/shared/json/motoswap/NATIVE_SWAP_ABI.js +15 -1
  33. package/build/abi/shared/json/opnet/OP_NET_ABI.js +7 -18
  34. package/build/contracts/Contract.js +2 -2
  35. package/build/fetch/fetch.d.ts +2 -0
  36. package/build/fetch/fetch.js +2 -0
  37. package/build/opnet.d.ts +10 -12
  38. package/build/opnet.js +10 -12
  39. package/build/providers/JSONRpcProvider.js +7 -1
  40. package/package.json +6 -4
  41. package/src/_version.ts +1 -1
  42. package/src/abi/shared/interfaces/motoswap/{IAdministeredOP20.ts → IMoto.ts} +4 -4
  43. package/src/abi/shared/interfaces/motoswap/IMotoChef.ts +485 -0
  44. package/src/abi/shared/interfaces/motoswap/IMotoswapPoolContract.ts +0 -5
  45. package/src/abi/shared/interfaces/motoswap/IMotoswapStakingContract.ts +50 -4
  46. package/src/abi/shared/interfaces/motoswap/INativeSwapContract.ts +19 -5
  47. package/src/abi/shared/json/generic/STAKING_ABI.ts +1 -7
  48. package/src/abi/shared/json/motoswap/MOTOCHEF_ABI.ts +831 -0
  49. package/src/abi/shared/json/motoswap/MOTOSWAP_FACTORY_ABI.ts +0 -6
  50. package/src/abi/shared/json/motoswap/MOTOSWAP_POOL_ABI.ts +0 -6
  51. package/src/abi/shared/json/motoswap/MOTOSWAP_ROUTER_ABI.ts +0 -3
  52. package/src/abi/shared/json/motoswap/MOTOSWAP_STAKING_ABI.ts +51 -9
  53. package/src/abi/shared/json/motoswap/{ADMINISTERD_OP_20_ABI.ts → MOTO_ABI.ts} +7 -15
  54. package/src/abi/shared/json/motoswap/NATIVE_SWAP_ABI.ts +15 -7
  55. package/src/abi/shared/json/opnet/OP_NET_ABI.ts +7 -24
  56. package/src/contracts/CallResult.ts +1 -0
  57. package/src/contracts/Contract.ts +3 -3
  58. package/src/fetch/fetch-browser.js +5 -0
  59. package/src/fetch/fetch.ts +3 -0
  60. package/src/opnet.ts +10 -12
  61. package/src/providers/JSONRpcProvider.ts +9 -4
  62. package/webpack.config.js +1 -0
  63. package/browser/abi/shared/interfaces/motoswap/IMotoChefContract.d.ts +0 -229
  64. package/browser/abi/shared/interfaces/motoswap/IOwnableContract.d.ts +0 -12
  65. package/browser/abi/shared/interfaces/motoswap/IOwnableReentrancyGuardContract.d.ts +0 -13
  66. package/browser/abi/shared/interfaces/motoswap/IReentrancyGuardContract.d.ts +0 -7
  67. package/browser/abi/shared/interfaces/tests/IWBTCContract.d.ts +0 -13
  68. package/browser/abi/shared/json/motoswap/ADMINISTERD_OP_20_ABI.d.ts +0 -3
  69. package/browser/abi/shared/json/motoswap/MOTOSWAP_MOTOCHEF_ABI.d.ts +0 -4
  70. package/browser/abi/shared/json/motoswap/OWNABLE_ABI.d.ts +0 -3
  71. package/browser/abi/shared/json/tests/WBTC_ABI.d.ts +0 -3
  72. package/build/abi/shared/interfaces/motoswap/IMotoChefContract.d.ts +0 -229
  73. package/build/abi/shared/interfaces/motoswap/IOwnableContract.d.ts +0 -12
  74. package/build/abi/shared/interfaces/motoswap/IOwnableContract.js +0 -1
  75. package/build/abi/shared/interfaces/motoswap/IOwnableReentrancyGuardContract.d.ts +0 -13
  76. package/build/abi/shared/interfaces/motoswap/IOwnableReentrancyGuardContract.js +0 -1
  77. package/build/abi/shared/interfaces/motoswap/IReentrancyGuardContract.d.ts +0 -7
  78. package/build/abi/shared/interfaces/motoswap/IReentrancyGuardContract.js +0 -1
  79. package/build/abi/shared/interfaces/tests/IWBTCContract.d.ts +0 -13
  80. package/build/abi/shared/interfaces/tests/IWBTCContract.js +0 -1
  81. package/build/abi/shared/json/motoswap/ADMINISTERD_OP_20_ABI.d.ts +0 -3
  82. package/build/abi/shared/json/motoswap/MOTOSWAP_MOTOCHEF_ABI.d.ts +0 -4
  83. package/build/abi/shared/json/motoswap/MOTOSWAP_MOTOCHEF_ABI.js +0 -508
  84. package/build/abi/shared/json/motoswap/OWNABLE_ABI.d.ts +0 -3
  85. package/build/abi/shared/json/motoswap/OWNABLE_ABI.js +0 -35
  86. package/build/abi/shared/json/motoswap/REENTRANCY_GUARD_ABI.js +0 -15
  87. package/build/abi/shared/json/tests/WBTC_ABI.d.ts +0 -3
  88. package/build/abi/shared/json/tests/WBTC_ABI.js +0 -57
  89. package/src/abi/shared/interfaces/motoswap/IMotoChefContract.ts +0 -484
  90. package/src/abi/shared/interfaces/motoswap/IOwnableContract.ts +0 -32
  91. package/src/abi/shared/interfaces/motoswap/IOwnableReentrancyGuardContract.ts +0 -33
  92. package/src/abi/shared/interfaces/motoswap/IReentrancyGuardContract.ts +0 -18
  93. package/src/abi/shared/interfaces/tests/IWBTCContract.ts +0 -35
  94. package/src/abi/shared/json/motoswap/MOTOSWAP_MOTOCHEF_ABI.ts +0 -520
  95. package/src/abi/shared/json/motoswap/OWNABLE_ABI.ts +0 -38
  96. package/src/abi/shared/json/motoswap/REENTRANCY_GUARD_ABI.ts +0 -20
  97. package/src/abi/shared/json/tests/WBTC_ABI.ts +0 -73
  98. /package/build/abi/shared/interfaces/motoswap/{IAdministeredOP20.js → IMoto.js} +0 -0
  99. /package/build/abi/shared/interfaces/motoswap/{IMotoChefContract.js → IMotoChef.js} +0 -0
@@ -1,13 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult } from '../../../../opnet.js';
3
- import { IReentrancyGuard } from './IReentrancyGuardContract.js';
4
- export type Admin = CallResult<{
5
- adminAddress: Address;
6
- }>;
7
- export type ChangeAdmin = CallResult<{
8
- success: boolean;
9
- }>;
10
- export interface IOwnableReentrancyGuardContract extends IReentrancyGuard {
11
- admin(): Promise<Admin>;
12
- changeAdmin(newAdmin: Address): Promise<ChangeAdmin>;
13
- }
@@ -1,7 +0,0 @@
1
- import { CallResult, IOP_NETContract } from '../../../../opnet';
2
- export type Status = CallResult<{
3
- status: bigint;
4
- }>;
5
- export interface IReentrancyGuard extends IOP_NETContract {
6
- status(): Promise<Status>;
7
- }
@@ -1,13 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult } from '../../../../contracts/CallResult.js';
3
- import { IOP_20Contract } from '../opnet/IOP_20Contract.js';
4
- import { IStackingContract } from '../generic/IStackingContract.js';
5
- export type MergedOP_20AndStackingContract = IOP_20Contract & IStackingContract;
6
- export interface IWBTCContract extends MergedOP_20AndStackingContract {
7
- requestWithdrawal(amount: bigint): Promise<CallResult<{
8
- success: boolean;
9
- }>>;
10
- withdrawableBalanceOf(address: Address): Promise<CallResult<{
11
- balance: bigint;
12
- }>>;
13
- }
@@ -1,3 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- declare const ADMINISTERED_OP_20_ABI: BitcoinInterfaceAbi;
3
- export default ADMINISTERED_OP_20_ABI;
@@ -1,4 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- export declare const MotoChefEvents: BitcoinInterfaceAbi;
3
- declare const MOTOCHEF_ABI: BitcoinInterfaceAbi;
4
- export default MOTOCHEF_ABI;
@@ -1,3 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- declare const OWNABLE_ABI: BitcoinInterfaceAbi;
3
- export default OWNABLE_ABI;
@@ -1,3 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- export declare const WBTCEvents: BitcoinInterfaceAbi;
3
- export declare const WBTC_ABI: BitcoinInterfaceAbi;
@@ -1,229 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult, OPNetEvent } from '../../../../opnet.js';
3
- import { IOwnableReentrancyGuardContract } from './IOwnableReentrancyGuardContract.js';
4
- export type PoolInfo = {
5
- allocPoint: number;
6
- lastRewardBlock: number;
7
- accMotoPerShare: bigint;
8
- };
9
- export type UserInfo = {
10
- amount: bigint;
11
- rewardDebt: bigint;
12
- };
13
- export type Initialize = CallResult<{
14
- success: boolean;
15
- }, [
16
- OPNetEvent<LogPoolAdditionEvent>,
17
- OPNetEvent<LogInitEvent>
18
- ]>;
19
- export type GetLpToken = CallResult<{
20
- lpTokenAddress: Address;
21
- }>;
22
- export type GetLpTokens = CallResult<{
23
- lpTokens: Address[];
24
- }>;
25
- export type GetRewarder = CallResult<{
26
- rewarderAddress: Address;
27
- }>;
28
- export type GetPoolInfo = CallResult<PoolInfo>;
29
- export type GetPoolsLength = CallResult<{
30
- poolLength: bigint;
31
- }>;
32
- export type GetUserInfo = CallResult<UserInfo>;
33
- export type Pools = CallResult<{
34
- poolLength: number;
35
- poolsData: Uint8Array;
36
- }>;
37
- export type TotalAllocPoint = CallResult<{
38
- totalAllocPoint: bigint;
39
- }>;
40
- export type Devaddr = CallResult<{
41
- devaddr: Address;
42
- }>;
43
- export type MotoPerBlock = CallResult<{
44
- motoPerBlock: bigint;
45
- }>;
46
- export type BonusEndBlock = CallResult<{
47
- bonusEndBlock: bigint;
48
- }>;
49
- export type BonusMultiplier = CallResult<{
50
- bonusMultiplier: bigint;
51
- }>;
52
- export type TotalBtcStaked = CallResult<{
53
- totalBtcStaked: bigint;
54
- }>;
55
- export type TreasuryAddress = CallResult<{
56
- TreasuryAddress: string;
57
- }>;
58
- export type GetStakingTxId = CallResult<{
59
- stakingTxId: bigint;
60
- }>;
61
- export type GetStakingIndex = CallResult<{
62
- stakingIndex: bigint;
63
- }>;
64
- export type Add = CallResult<{
65
- success: boolean;
66
- }, [
67
- OPNetEvent<LogPoolAdditionEvent>
68
- ]>;
69
- export type Set = CallResult<{
70
- success: boolean;
71
- }, [
72
- OPNetEvent<LogSetPoolEvent>
73
- ]>;
74
- export type SetMigrator = CallResult<{
75
- success: boolean;
76
- }>;
77
- export type Migrate = CallResult<{
78
- success: boolean;
79
- }>;
80
- export type GetMultiplier = CallResult<{
81
- multiplier: bigint;
82
- }>;
83
- export type PendingMoto = CallResult<{
84
- pendingMoto: number;
85
- }>;
86
- export type MassUpdatePools = CallResult<{
87
- success: boolean;
88
- }>;
89
- export type UpdatePool = CallResult<PoolInfo, [OPNetEvent<LogUpdatePoolEvent>]>;
90
- export type Deposit = CallResult<{
91
- success: boolean;
92
- }, [
93
- OPNetEvent<DepositEvent>
94
- ]>;
95
- export type Withdraw = CallResult<{
96
- success: boolean;
97
- }, [
98
- OPNetEvent<WithdrawEvent>
99
- ]>;
100
- export type Harvest = CallResult<{
101
- success: boolean;
102
- }, [
103
- OPNetEvent<HarvestEvent>
104
- ]>;
105
- export type WithdrawAndHarvest = CallResult<{
106
- success: boolean;
107
- }, [
108
- OPNetEvent<WithdrawEvent>,
109
- OPNetEvent<HarvestEvent>
110
- ]>;
111
- export type SetDev = CallResult<{
112
- success: boolean;
113
- }>;
114
- export type SetMotoPerBlock = CallResult<{
115
- success: boolean;
116
- }>;
117
- export type SetBonusEndBlock = CallResult<{
118
- success: boolean;
119
- }>;
120
- export type SetBonusMultiplier = CallResult<{
121
- success: boolean;
122
- }>;
123
- export type EmergencyWithdraw = CallResult<{
124
- success: boolean;
125
- }, [
126
- OPNetEvent<EmergencyWithdrawEvent>
127
- ]>;
128
- export type StakeBtc = CallResult<{
129
- success: boolean;
130
- }, [
131
- OPNetEvent<StakeBTCEvent>
132
- ]>;
133
- export type UnstakeBtc = CallResult<{
134
- success: boolean;
135
- }, [
136
- OPNetEvent<UnstakeBTCEvent>
137
- ]>;
138
- export type LogInitEvent = {
139
- success: boolean;
140
- };
141
- export type LogPoolAdditionEvent = {
142
- readonly pid: bigint;
143
- readonly allocPoint: bigint;
144
- readonly lpToken: Address;
145
- readonly rewarder: Address;
146
- };
147
- export type LogSetPoolEvent = {
148
- readonly pid: bigint;
149
- readonly allocPoint: bigint;
150
- readonly rewarder: Address;
151
- readonly overwrite: boolean;
152
- };
153
- export type LogUpdatePoolEvent = {
154
- readonly pid: bigint;
155
- readonly lastRewardBlock: bigint;
156
- readonly lpSupply: bigint;
157
- readonly accMotoPerShare: bigint;
158
- };
159
- export type DepositEvent = {
160
- readonly user: Address;
161
- readonly pid: bigint;
162
- readonly amount: bigint;
163
- readonly to: Address;
164
- };
165
- export type WithdrawEvent = {
166
- readonly user: Address;
167
- readonly pid: bigint;
168
- readonly amount: bigint;
169
- readonly to: Address;
170
- };
171
- export type HarvestEvent = {
172
- readonly user: Address;
173
- readonly pid: bigint;
174
- readonly amount: bigint;
175
- };
176
- export type EmergencyWithdrawEvent = {
177
- readonly user: Address;
178
- readonly pid: bigint;
179
- readonly amount: bigint;
180
- readonly to: Address;
181
- };
182
- export type StakeBTCEvent = {
183
- readonly user: Address;
184
- readonly amount: bigint;
185
- readonly stakingTxId: bigint;
186
- readonly stakingIndex: bigint;
187
- };
188
- export type UnstakeBTCEvent = {
189
- readonly user: Address;
190
- readonly amount: bigint;
191
- readonly stakingTxId: bigint;
192
- readonly stakingIndex: bigint;
193
- };
194
- export interface IMotoChefContract extends IOwnableReentrancyGuardContract {
195
- initialize(MOTO: Address, premineAmount: bigint, devaddr: Address, motoPerBlock: bigint, bonusEndBlock: bigint, bonusMultiplier: bigint, treasuryAddress: string, btcAllocPoint: bigint): Promise<Initialize>;
196
- getLpToken(pid: bigint): Promise<GetLpToken>;
197
- getLpTokens(): Promise<GetLpTokens>;
198
- getPoolInfo(pid: bigint): Promise<GetPoolInfo>;
199
- getPoolsLength(): Promise<GetPoolsLength>;
200
- getUserInfo(pid: bigint, user: Address): Promise<GetUserInfo>;
201
- totalAllocPoint(): Promise<TotalAllocPoint>;
202
- devaddr(): Promise<Devaddr>;
203
- getMotoPerBlock(): Promise<MotoPerBlock>;
204
- getBonusEndBlock(): Promise<BonusEndBlock>;
205
- getBonusMultiplier(): Promise<BonusMultiplier>;
206
- totalBtcStaked(): Promise<TotalBtcStaked>;
207
- treasuryAddress(): Promise<TreasuryAddress>;
208
- getStakingTxId(): Promise<GetStakingTxId>;
209
- getStakingIndex(): Promise<GetStakingIndex>;
210
- setMotoPerBlock(motoPerBlock: bigint): Promise<SetMotoPerBlock>;
211
- setBonusEndBlock(bonusEndBlock: bigint): Promise<SetBonusEndBlock>;
212
- setBonusMultiplier(bonusMultiplier: bigint): Promise<SetBonusMultiplier>;
213
- add(allocPoint: bigint, lpToken: Address): Promise<Add>;
214
- set(pid: bigint, allocPoint: bigint): Promise<Set>;
215
- setMigrator(migrator: Address): Promise<SetMigrator>;
216
- migrate(pid: bigint): Promise<Migrate>;
217
- getMultiplier(from: bigint, to: bigint): Promise<GetMultiplier>;
218
- pendingMoto(pid: bigint, user: Address): Promise<PendingMoto>;
219
- massUpdatePools(length: number, pids: bigint[]): Promise<MassUpdatePools>;
220
- updatePool(pid: bigint): Promise<UpdatePool>;
221
- deposit(pid: bigint, amount: bigint, to: Address): Promise<Deposit>;
222
- withdraw(pid: bigint, amount: bigint, to: Address): Promise<Withdraw>;
223
- harvest(pid: bigint, to: Address): Promise<Harvest>;
224
- withdrawAndHarvest(pid: bigint, amount: bigint, to: Address): Promise<WithdrawAndHarvest>;
225
- emergencyWithdraw(pid: bigint, to: Address): Promise<EmergencyWithdraw>;
226
- setDev(devaddr: Address): Promise<SetDev>;
227
- stakeBtc(stakeAmount: bigint): Promise<StakeBtc>;
228
- unstakeBtc(): Promise<UnstakeBtc>;
229
- }
@@ -1,12 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult, IOP_NETContract } from '../../../../opnet';
3
- export type Admin = CallResult<{
4
- adminAddress: Address;
5
- }>;
6
- export type ChangeAdmin = CallResult<{
7
- success: boolean;
8
- }>;
9
- export interface IOwnableContract extends IOP_NETContract {
10
- admin(): Promise<Admin>;
11
- changeAdmin(newAdmin: Address): Promise<ChangeAdmin>;
12
- }
@@ -1,13 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult } from '../../../../opnet.js';
3
- import { IReentrancyGuard } from './IReentrancyGuardContract.js';
4
- export type Admin = CallResult<{
5
- adminAddress: Address;
6
- }>;
7
- export type ChangeAdmin = CallResult<{
8
- success: boolean;
9
- }>;
10
- export interface IOwnableReentrancyGuardContract extends IReentrancyGuard {
11
- admin(): Promise<Admin>;
12
- changeAdmin(newAdmin: Address): Promise<ChangeAdmin>;
13
- }
@@ -1,7 +0,0 @@
1
- import { CallResult, IOP_NETContract } from '../../../../opnet';
2
- export type Status = CallResult<{
3
- status: bigint;
4
- }>;
5
- export interface IReentrancyGuard extends IOP_NETContract {
6
- status(): Promise<Status>;
7
- }
@@ -1,13 +0,0 @@
1
- import { Address } from '@btc-vision/transaction';
2
- import { CallResult } from '../../../../contracts/CallResult.js';
3
- import { IOP_20Contract } from '../opnet/IOP_20Contract.js';
4
- import { IStackingContract } from '../generic/IStackingContract.js';
5
- export type MergedOP_20AndStackingContract = IOP_20Contract & IStackingContract;
6
- export interface IWBTCContract extends MergedOP_20AndStackingContract {
7
- requestWithdrawal(amount: bigint): Promise<CallResult<{
8
- success: boolean;
9
- }>>;
10
- withdrawableBalanceOf(address: Address): Promise<CallResult<{
11
- balance: bigint;
12
- }>>;
13
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,3 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- declare const ADMINISTERED_OP_20_ABI: BitcoinInterfaceAbi;
3
- export default ADMINISTERED_OP_20_ABI;
@@ -1,4 +0,0 @@
1
- import { BitcoinInterfaceAbi } from '../../../interfaces/BitcoinInterfaceAbi.js';
2
- export declare const MotoChefEvents: BitcoinInterfaceAbi;
3
- declare const MOTOCHEF_ABI: BitcoinInterfaceAbi;
4
- export default MOTOCHEF_ABI;