-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
79 changed files
with
1,839 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
packages/api-client/src/generated/models/CallOptimismSmartContractMethod.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type CallOptimismSmartContractMethod = { | ||
/** | ||
* The address of the smart contract | ||
*/ | ||
contractAddress: string; | ||
/** | ||
* Amount of the assets to be sent. | ||
*/ | ||
amount?: string; | ||
/** | ||
* Name of the method to invoke on smart contract. | ||
*/ | ||
methodName: string; | ||
/** | ||
* ABI of the method to invoke. | ||
*/ | ||
methodABI: any; | ||
params: Array<string>; | ||
/** | ||
* Private key of sender address. Private key, or signature Id must be present. | ||
*/ | ||
fromPrivateKey: string; | ||
/** | ||
* Nonce to be set to Optimism transaction. If not present, last known nonce will be used. | ||
*/ | ||
nonce?: number; | ||
/** | ||
* Custom defined fee. If not present, it will be calculated automatically. | ||
*/ | ||
fee?: { | ||
/** | ||
* Gas limit for transaction in gas price. | ||
*/ | ||
gasLimit: string; | ||
/** | ||
* Gas price in Gwei. | ||
*/ | ||
gasPrice: string; | ||
}; | ||
} |
30 changes: 30 additions & 0 deletions
30
packages/api-client/src/generated/models/CallOptimismSmartContractMethodCaller.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
import type { CustomFee } from './CustomFee'; | ||
|
||
export type CallOptimismSmartContractMethodCaller = { | ||
/** | ||
* The address of the account, which will be sender and fee payer of this transaction | ||
*/ | ||
caller: string; | ||
/** | ||
* The address of the smart contract | ||
*/ | ||
contractAddress: string; | ||
/** | ||
* Amount of the assets to be sent. | ||
*/ | ||
amount?: string; | ||
/** | ||
* Name of the method to invoke on smart contract. | ||
*/ | ||
methodName: string; | ||
/** | ||
* ABI of the method to invoke. | ||
*/ | ||
methodABI: any; | ||
params: Array<string>; | ||
fee?: CustomFee; | ||
} |
47 changes: 47 additions & 0 deletions
47
packages/api-client/src/generated/models/CallOptimismSmartContractMethodKMS.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type CallOptimismSmartContractMethodKMS = { | ||
/** | ||
* The address of the smart contract | ||
*/ | ||
contractAddress: string; | ||
/** | ||
* Name of the method to invoke on smart contract. | ||
*/ | ||
methodName: string; | ||
/** | ||
* ABI of the method to invoke. | ||
*/ | ||
methodABI: any; | ||
/** | ||
* Parameters of the method to be invoked. | ||
*/ | ||
params: Array<string>; | ||
/** | ||
* If signatureId is mnemonic-based, this is the index to the specific address from that mnemonic. | ||
*/ | ||
index?: number; | ||
/** | ||
* Identifier of the private key associated in signing application. Private key, or signature Id must be present. | ||
*/ | ||
signatureId: string; | ||
/** | ||
* Nonce to be set to Optimism transaction. If not present, last known nonce will be used. | ||
*/ | ||
nonce?: number; | ||
/** | ||
* Custom defined fee. If not present, it will be calculated automatically. | ||
*/ | ||
fee?: { | ||
/** | ||
* Gas limit for transaction in gas price. | ||
*/ | ||
gasLimit: string; | ||
/** | ||
* Gas price in Gwei. | ||
*/ | ||
gasPrice: string; | ||
}; | ||
} |
19 changes: 19 additions & 0 deletions
19
packages/api-client/src/generated/models/CallOptimismSmartContractReadMethod.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type CallOptimismSmartContractReadMethod = { | ||
/** | ||
* The address of the smart contract | ||
*/ | ||
contractAddress: string; | ||
/** | ||
* Name of the method to invoke on smart contract. | ||
*/ | ||
methodName: string; | ||
/** | ||
* ABI of the method to invoke. | ||
*/ | ||
methodABI: any; | ||
params: Array<string>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/api-client/src/generated/models/Error403OptimismBep20NotFound.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Error403OptimismBep20NotFound = { | ||
/** | ||
* erc20.token.notFound | ||
*/ | ||
errorCode: string; | ||
/** | ||
* No such ERC20 currency ${name}. | ||
*/ | ||
message: string; | ||
/** | ||
* 403 | ||
*/ | ||
statusCode: number; | ||
} |
18 changes: 18 additions & 0 deletions
18
packages/api-client/src/generated/models/Error403OptimismBep20Set.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* istanbul ignore file */ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
|
||
export type Error403OptimismBep20Set = { | ||
/** | ||
* erc20.address.set | ||
*/ | ||
errorCode: string; | ||
/** | ||
* ERC20 address was already set. | ||
*/ | ||
message: string; | ||
/** | ||
* 403 | ||
*/ | ||
statusCode: number; | ||
} |
Oops, something went wrong.