Skip to content

Commit 35e820e

Browse files
authored
Remove draft- prefixes (#42)
1 parent 7ff2225 commit 35e820e

31 files changed

+53
-21
lines changed

contracts/account/draft-Account.sol renamed to contracts/account/Account.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pragma solidity ^0.8.20;
44

55
import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
66
import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
7-
import {ERC7739Signer} from "../utils/cryptography/draft-ERC7739Signer.sol";
8-
import {AccountCore} from "./draft-AccountCore.sol";
7+
import {ERC7739Signer} from "../utils/cryptography/ERC7739Signer.sol";
8+
import {AccountCore} from "./AccountCore.sol";
99

1010
/**
1111
* @dev Extension of {AccountCore} with recommended feature that most account abstraction implementation will want:

contracts/account/extensions/draft-AccountSignerERC7702.sol renamed to contracts/account/extensions/AccountSignerERC7702.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
pragma solidity ^0.8.20;
44

55
import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
6-
import {AccountCore} from "../draft-AccountCore.sol";
6+
import {AccountCore} from "../AccountCore.sol";
77

88
/**
99
* @dev {Account} implementation whose low-level signature validation is done by an EOA.

contracts/crosschain/axelar/AxelarGatewayDestination.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.27;
44

55
import {AxelarExecutable} from "@axelar-network/axelar-gmp-sdk-solidity/contracts/executable/AxelarExecutable.sol";
66
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
7-
import {IERC7786Receiver} from "../../interfaces/draft-IERC7786.sol";
7+
import {IERC7786Receiver} from "../../interfaces/IERC7786.sol";
88
import {AxelarGatewayBase} from "./AxelarGatewayBase.sol";
99

1010
/**

contracts/crosschain/axelar/AxelarGatewaySource.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {CAIP2} from "@openzeppelin/contracts/utils/CAIP2.sol";
66
import {CAIP10} from "@openzeppelin/contracts/utils/CAIP10.sol";
77
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
88
import {AxelarGatewayBase} from "./AxelarGatewayBase.sol";
9-
import {IERC7786GatewaySource} from "../../interfaces/draft-IERC7786.sol";
9+
import {IERC7786GatewaySource} from "../../interfaces/IERC7786.sol";
1010

1111
/**
1212
* @dev Implementation of an ERC-7786 gateway source adapter for the Axelar Network.

contracts/crosschain/utils/draft-ERC7786Receiver.sol renamed to contracts/crosschain/utils/ERC7786Receiver.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pragma solidity ^0.8.27;
44

5-
import {IERC7786Receiver} from "../../interfaces/draft-IERC7786.sol";
5+
import {IERC7786Receiver} from "../../interfaces/IERC7786.sol";
66

77
/**
88
* @dev Base implementation of an ERC-7786 compliant cross-chain message receiver.

contracts/mocks/account/AccountBaseMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
44

55
import {PackedUserOperation} from "@openzeppelin/contracts/interfaces/draft-IERC4337.sol";
66
import {ERC4337Utils} from "@openzeppelin/contracts/account/utils/draft-ERC4337Utils.sol";
7-
import {Account} from "../../account/draft-Account.sol";
7+
import {Account} from "../../account/Account.sol";
88

99
abstract contract AccountBaseMock is Account {
1010
/// Validates a user operation with a boolean signature.

contracts/mocks/account/AccountECDSAMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pragma solidity ^0.8.20;
44

5-
import {Account} from "../../account/draft-Account.sol";
5+
import {Account} from "../../account/Account.sol";
66
import {SignerECDSA} from "../../utils/cryptography/SignerECDSA.sol";
77

88
abstract contract AccountECDSAMock is Account, SignerECDSA {

0 commit comments

Comments
 (0)