FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
bitcoin-php/src/Key/KeyToScript/ScriptDataFactory.php at 1.0 · Bit-Wasp/bitcoin-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Bit-Wasp
/
bitcoin-php
Public
Notifications
You must be signed in to change notification settings
Fork
446
Star
1.1k
Code
Issues
67
Pull requests
19
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
bitcoin-php
/
src
/
Key
/
KeyToScript
/
ScriptDataFactory.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (16 loc) · 431 Bytes
Breadcrumbs
bitcoin-php
/
src
/
Key
/
KeyToScript
/
ScriptDataFactory.php
Copy path
File metadata and controls
21 lines (16 loc) · 431 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
declare
(strict_types=
1
);
namespace
BitWasp
\
Bitcoin
\
Key
\
KeyToScript
;
use
BitWasp
\
Bitcoin
\
Crypto
\
EcAdapter
\
Key
\
KeyInterface
;
abstract
class
ScriptDataFactory
{
/**
* @param KeyInterface ...$keys
* @return ScriptAndSignData
*/
abstract
public
function
convertKey
(
KeyInterface
...
$
keys
):
ScriptAndSignData
;
/**
* @return string
*/
abstract
public
function
getScriptType
():
string
;
}
Back
|
FazBrowse Home
|
New Git URL