* Feat/537: Removed old contract and branching logic for collateral bridge * Feat/537: Renamed all 'new' name instances in functions, files and types. Regenerated types. * Feat/537: Added 'creation' field to withdraw-dialog.spec.tsx test
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const ERC20_APPROVAL_QUERY = gql`
|
|
query Erc20Approval($withdrawalId: ID!) {
|
|
erc20WithdrawalApproval(withdrawalId: $withdrawalId) {
|
|
assetSource
|
|
amount
|
|
nonce
|
|
signatures
|
|
targetAddress
|
|
expiry
|
|
creation
|
|
}
|
|
}
|
|
`;
|